forked from openshift/rhc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rhc.gemspec
48 lines (41 loc) · 1.99 KB
/
rhc.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
Gem::Specification.new do |s|
spec_file = IO.read(File.expand_path("../client.spec", __FILE__))
s.name = %q{rhc}
s.version = spec_file.match(/^Version:\s*(.*?)$/mi)[1].chomp
s.authors = %q{Red Hat}
s.email = %q{dev@lists.openshift.redhat.com}
s.summary = %q{OpenShift Client Tools}
s.homepage = %q{https://github.com/openshift/rhc}
s.description = %q{The client tools for the OpenShift platform that allow for application management.}
s.files = Dir['lib/**/*.rb', 'lib/**/*.erb', 'lib/rhc bin/*', 'conf/*', 'autocomplete/*'] + %w(LICENSE COPYRIGHT README.md Rakefile)
s.test_files = Dir['{test,spec,features}/**/*']
s.executables = Dir['bin/*'].map{ |f| File.basename(f) }
s.require_path = 'lib'
s.post_install_message = %q{If this is your first time installing the RHC tools, please run 'rhc setup'}
# Format the post install message with some nice separators
sep = "=" * s.post_install_message.lines.to_a.map(&:chomp).map(&:length).max
s.post_install_message = [
sep,
nil,
s.post_install_message,
nil,
sep
].join("\n")
s.add_dependency 'net-ssh', '>= 2.0.11'
s.add_dependency 'net-scp', '>= 1.1.2'
s.add_dependency 'net-ssh-multi','>= 1.2.0'
s.add_dependency 'archive-tar-minitar'
s.add_runtime_dependency 'commander', '>= 4.0'
s.add_runtime_dependency 'highline', '~> 1.6.11'
s.add_runtime_dependency 'httpclient', '>= 2.2'
s.add_runtime_dependency 'open4'
s.add_development_dependency 'rake', '>= 0.8.7'
s.add_development_dependency 'webmock', '< 1.12'
s.add_development_dependency 'rspec', '>= 2.8.0', '< 2.99'
s.add_development_dependency 'fakefs', '>= 0.4'
s.add_development_dependency 'thor'
s.add_development_dependency 'cucumber'
s.add_development_dependency 'activesupport', '~> 3.0'
end