forked from theforeman/smart_proxy_pulp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
smart_proxy_pulp.gemspec
30 lines (25 loc) · 1.08 KB
/
smart_proxy_pulp.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'smart_proxy_pulp_plugin/version'
Gem::Specification.new do |gem|
gem.name = "smart_proxy_pulp"
gem.version = PulpProxy::VERSION
gem.authors = ['Dmitri Dolguikh']
gem.email = ['dmitri@redhat.com']
gem.homepage = "https://github.com/theforeman/smart-proxy-pulp-plugin"
gem.summary = %q{Basic Pulp support for Foreman Smart-Proxy}
gem.description = <<-EOS
Basic Pulp support for Foreman Smart-Proxy
EOS
gem.files = Dir['{bundler.d,lib,settings.d}/**/*', 'LICENSE', 'Gemfile']
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.license = 'GPLv3'
# todo: add a runtime dependency on smart-proxy
gem.add_development_dependency('test-unit', '~> 2')
gem.add_development_dependency('mocha', '~> 1')
gem.add_development_dependency('webmock', '~> 1')
gem.add_development_dependency('rack-test')
gem.add_development_dependency('rake', '~> 10')
end