-
Notifications
You must be signed in to change notification settings - Fork 9
/
collins-cli.gemspec
26 lines (22 loc) · 971 Bytes
/
collins-cli.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
# encoding: utf-8
Gem::Specification.new do |s|
s.name = 'collins-cli'
s.version = '0.3.0'
s.authors = ['Gabe Conradi']
s.email = ['[email protected]','[email protected]']
s.homepage = 'http://github.com/byxorna/collins-cli'
s.summary = %q{CLI utilities to interact with the Collins API}
s.description = %q{An easier to use CLI for the Collins asset management system, written by Tumblr}
s.license = 'Apache-2.0'
s.files = Dir['lib/**/*.rb', 'bin/*', 'README.md']
s.test_files = Dir['spec/**/*.rb']
s.require_paths = %w(lib)
s.bindir = 'bin'
s.executables = Dir.glob('bin/*').map{|x| File.basename x}
s.add_dependency "colorize", '~> 0.7.3'
s.add_dependency "collins_auth", '~> 0.2.0'
s.add_development_dependency "rake", '~> 10.4'
s.add_development_dependency "rspec", '~> 3.1'
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 2.0.0'
end