1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00

Merge pull request #629 from ursm/exclude-tests

Exclude test files from gem
This commit is contained in:
Wesley Beary 2021-11-18 21:01:36 -06:00 committed by GitHub
commit 2a3fe7ae0e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,11 +14,10 @@ Gem::Specification.new do |spec|
spec.homepage = "https://github.com/fog/fog-aws"
spec.license = "MIT"
spec.files = Dir['lib/**/*.rb', 'lib/**/*.json', 'tests/**/*',
spec.files = Dir['lib/**/*.{rb,json}',
'CHANGELOG.md', 'CONTRIBUTING.md', 'CONTRIBUTORS.md',
'LICENSE.md', 'README.md', 'fog-aws.gemspec',]
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.required_ruby_version = '>= 2.0.0'