-
Notifications
You must be signed in to change notification settings - Fork 3
/
awscli.gemspec
31 lines (27 loc) · 1.14 KB
/
awscli.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
require File.join([File.dirname(__FILE__),'lib','awscli','version.rb'])
spec = Gem::Specification.new do |s|
s.name = 'awscli'
s.version = Awscli::VERSION
s.author = 'Ashrith'
s.email = '[email protected]'
s.homepage = 'http://github.com/ashrithr/awscli'
s.platform = Gem::Platform::RUBY
s.summary = 'Command Line Interface for Amazon Web Services built in Ruby, using Fog and Thor'
s.description = "#{s.summary}"
#Files
s.files = Dir['Rakefile', '{bin,lib,man,test,spec}/**/*', 'README*', 'LICENSE'] & `git ls-files -z`.split("\0")
s.test_files = `git ls-files -- {test,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_paths << 'lib'
s.bindir = 'bin'
#Dependencies
s.add_development_dependency('rake')
s.add_development_dependency('rdoc')
s.add_development_dependency('aruba')
s.add_runtime_dependency('thor', '>=0.17.0')
s.add_runtime_dependency('fog', '>=1.16.0')
s.add_runtime_dependency('multi_json')
s.add_runtime_dependency('highline')
s.license = 'MIT'
#s.post_install_message = "Thanks for installing!, This gem is still in development."
end