path53.gemspec in path53-0.4.8 vs path53.gemspec in path53-0.4.14
- old
+ new
@@ -1,20 +1,24 @@
Gem::Specification.new do |gem|
- gem.name = 'path53'
- gem.version = `git describe --tags --abbrev=0`.chomp
- gem.licenses = 'MIT'
- gem.authors = ['Chris Olstrom']
- gem.email = 'chris@olstrom.com'
- gem.homepage = 'https://github.com/colstrom/path53'
- gem.summary = 'Simplified Changes for Route53'
+ tag = `git describe --tags --abbrev=0`.chomp
- gem.cert_chain = %w(certs/colstrom.cert.pem)
- gem.signing_key = File.expand_path ENV.fetch 'GEM_SIGNING_KEY'
+ gem.name = 'path53'
+ gem.homepage = 'https://github.com/colstrom/path53'
+ gem.summary = 'Simplified Changes for Route53'
- gem.files = `git ls-files`.split("\n")
- gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
- gem.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
+ gem.version = "#{tag}"
+ gem.licenses = ['MIT']
+ gem.authors = ['Chris Olstrom']
+ gem.email = 'chris@olstrom.com'
+
+ gem.cert_chain = ['trust/certificates/colstrom.pem']
+ gem.signing_key = File.expand_path ENV.fetch 'GEM_SIGNING_KEY'
+
+ gem.files = `git ls-files -z`.split("\x0")
+ gem.test_files = `git ls-files -z -- {test,spec,features}/*`.split("\x0")
+ gem.executables = `git ls-files -z -- bin/*`.split("\x0").map { |f| File.basename(f) }
+
gem.require_paths = ['lib']
- gem.add_runtime_dependency 'aws-sdk', '~> 2.6', '>= 2.6.0'
+ gem.add_runtime_dependency 'aws-sdk', '~> 2.6', '>= 2.6.0'
gem.add_runtime_dependency 'contracts', '~> 0.14', '>= 0.14.0'
end