-
Notifications
You must be signed in to change notification settings - Fork 23
/
oneops.gemspec
28 lines (23 loc) · 988 Bytes
/
oneops.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
$:.unshift File.expand_path("../lib", __FILE__)
require 'oneops/version'
Gem::Specification.new do |s|
s.name = 'oneops'
s.version = OO::VERSION
s.author = 'OneOps'
s.email = 'support@oneops.com'
s.homepage = 'http://www.oneops.com'
s.summary = 'OneOps API library and CLI'
s.license = 'Apache-2.0'
s.description = 'Client library and CLI that provides access to the OneOps Cloud Application Management Platform.'
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.platform = Gem::Platform::RUBY
s.extra_rdoc_files = %w(README.md)
s.add_dependency 'activesupport', '4.1.10'
s.add_dependency 'rest-client', '~> 1.6'
s.add_dependency 'netrc', '~> 0.7'
s.add_dependency 'thor', '~> 0.19'
s.add_dependency 'launchy', '~> 2.4'
s.bindir = 'bin'
s.require_path = 'lib'
s.files = %w(README.md Rakefile) + `git ls-files lib`.split("\n")
end