-
Notifications
You must be signed in to change notification settings - Fork 19
/
akamai_api.gemspec
26 lines (23 loc) · 1.13 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
26
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 = ["[email protected]"]
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(">= 2.2.2")
gem.add_dependency 'httparty', '~> 0.13.1'
gem.add_dependency 'activesupport', '>= 2.3.9'
gem.add_dependency 'thor', '>= 0.14.0', '< 2.0'
gem.add_dependency 'savon', '~> 2.5'
gem.add_dependency 'builder', '~> 3.0'
gem.add_dependency 'akamai-edgegrid','~> 1.0'
end