-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathchimp.gemspec
31 lines (25 loc) · 1.08 KB
/
chimp.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'right_chimp/version'
Gem::Specification.new do |s|
s.name = 'right_chimp'
s.license = 'MIT'
s.version = Chimp::VERSION
s.authors = ['RightScale Operations']
s.email = ['ops@rightscale.com']
s.homepage = 'https://github.com/rightscale/right_chimp'
s.summary = 'RightScale platform command-line tool'
s.description = 'The Chimp is a tool for managing servers using the RightScale platform.'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ['lib']
s.add_dependency 'rake', '~> 10.4.2'
s.add_dependency 'nokogiri', '~> 1.6.7.1'
s.add_dependency 'progressbar', '~> 0.11.0'
s.add_dependency 'right_api_client', '> 1.5'
s.add_dependency 'highline', '~> 1.7.2'
s.add_development_dependency 'rspec'
s.add_development_dependency 'pry'
s.add_development_dependency 'pry-stack_explorer'
end