forked from mikamai/akamai_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
akamai_api.gemspec
25 lines (22 loc) · 1.09 KB
/
akamai_api.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'akamai_api/version'
Gem::Specification.new do |gem|
gem.name = "akamai_api"
gem.version = AkamaiApi::VERSION
gem.authors = ["Nicola Racco"]
gem.email = ["nicola@nicolaracco.com"]
gem.description = %q{Ruby toolkit to work with Akamai Content Control Utility API}
gem.summary = %q{Ruby toolkit to work with Akamai Content Control Utility API}
gem.homepage = 'https://github.com/nicolaracco/akamai_api'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.required_ruby_version = Gem::Requirement.new(">= 1.9.2")
gem.add_dependency 'httparty', '~> 0.13.1'
gem.add_dependency 'activesupport', '>= 2.3.9', '< 5.0'
gem.add_dependency 'thor', '>= 0.14.0', '< 2.0'
gem.add_dependency 'savon', '~> 2.5.0'
gem.add_dependency 'builder', '~> 3.0'
end