awskeyring.gemspec in awskeyring-0.10.0 vs awskeyring.gemspec in awskeyring-1.0.0

- old
+ new

@@ -1,5 +1,7 @@ +# frozen_string_literal: true + lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'awskeyring/version' Gem::Specification.new do |spec| @@ -8,13 +10,13 @@ spec.authors = ['Tristan Morgan'] spec.email = ['tristan@vibrato.com.au'] spec.summary = 'Manages AWS credentials in the macOS keychain' spec.description = 'Manages AWS credentials in the macOS keychain' - spec.homepage = 'https://github.com/vibrato/awskeyring' + spec.homepage = Awskeyring::HOMEPAGE spec.license = 'MIT' - spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^spec/|^\..*}) } + spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^spec/|^\..*|^.*\.png}) } spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_dependency('aws-sdk-iam')