-
Notifications
You must be signed in to change notification settings - Fork 4
/
civo.gemspec
30 lines (25 loc) · 1012 Bytes
/
civo.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "civo/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "civo"
s.version = Civo::VERSION
s.authors = ["Andy Jeffries"]
s.email = ["[email protected]"]
s.homepage = "https://www.civo.com"
s.summary = "Civo CLI AND API"
s.description = "A command-line client and API access classes for civo.com"
s.license = "MIT"
s.metadata = {
"source_code_uri" => "https://github.com/absolutedevops/civo-ruby",
'bug_tracker_uri' => 'https://github.com/absolutedevops/civo-ruby/issues',
'documentation_uri' => 'https://github.com/absolutedevops/civo-ruby'
}
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.add_dependency "flexirest", ">= 1.10.8"
s.add_dependency "toml"
s.add_dependency "commander"
s.add_development_dependency "rake"
end