forked from brightbox/brightbox-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbbcloud.gemspec
More file actions
31 lines (25 loc) · 1.08 KB
/
bbcloud.gemspec
File metadata and controls
31 lines (25 loc) · 1.08 KB
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 -*-
require File.join(File.dirname(__FILE__), "lib/bbcloud/version")
Gem::Specification.new do |s|
s.name = "bbcloud"
s.version = Brightbox::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["John Leach"]
s.email = ["john@brightbox.co.uk"]
s.homepage = "http://docs.brightbox.com/cli"
s.summary = %q{The Brightbox cloud management system}
s.description = %q{Scripts to interact with the Brightbox cloud API}
s.rubyforge_project = "bbcloud"
s.files = `git ls-files`.split("\n") + `find lib/bbcloud/vendor`.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"]
# To work around a bug with json using the wrong json_pure
s.add_dependency 'json', '=1.4.6'
s.add_dependency 'json_pure', '=1.4.6'
s.add_dependency 'gli', '1.2.5'
s.add_dependency 'hirb', '0.3.5'
s.add_dependency 'formatador', '=0.0.16'
s.add_dependency 'excon', '=0.5.6'
s.add_dependency 'ini', '0.1.1'
end