-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcloudstack_client.gemspec
27 lines (24 loc) · 1.07 KB
/
cloudstack_client.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'cloudstack_client/version'
Gem::Specification.new do |gem|
gem.name = "cloudstack_client"
gem.version = CloudstackClient::VERSION
gem.authors = ["Nik Wolfgramm"]
gem.email = ["[email protected]"]
gem.description = %q{CloudStack API client written in Ruby}
gem.summary = %q{CloudStack API client written in Ruby}
gem.homepage = "https://github.com/niwo/cloudstack_client"
gem.license = 'MIT'
gem.required_ruby_version = '>= 1.9.3'
gem.files = `git ls-files`.split($/)
gem.executables = %w(cloudstack_client)
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.rdoc_options = %w[--line-numbers --inline-source]
gem.add_development_dependency('rake', '~> 13.0')
gem.add_development_dependency('thor', '~> 1.1')
gem.add_development_dependency('ripl', '~> 0.7')
gem.add_development_dependency('minitest', '~> 5.14')
end