-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathipecache.gemspec
25 lines (22 loc) · 1.06 KB
/
ipecache.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
$:.push File.expand_path('../lib', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'ipecache'
gem.version = '0.0.16'
gem.authors = ["Jon Cowie"]
gem.email = '[email protected]'
gem.homepage = 'https://github.com/jonlives/ipecache'
gem.summary = "An extensible tool for purging urls from caches and CDNs"
gem.description = "An extensible tool for purging urls from caches and CDNs"
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.name = "ipecache"
gem.require_paths = ["lib"]
gem.add_runtime_dependency 'app_conf', '>= 0.4.0'
gem.add_runtime_dependency 'choice', '>= 0.1.6'
gem.add_runtime_dependency 'faraday_middleware', '>= 0.9.0'
gem.add_runtime_dependency 'public_suffix', '>= 1.4.2'
gem.add_runtime_dependency 'aws-sdk-v1', '>= 1.0'
gem.add_runtime_dependency 'maxcdn', '>= 0.2.1'
gem.add_runtime_dependency 'akamai-edgegrid', '>= 1.0.7'
end