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:
commit
2a3fe7ae0e
1 changed files with 1 additions and 2 deletions
|
@ -14,11 +14,10 @@ Gem::Specification.new do |spec|
|
||||||
spec.homepage = "https://github.com/fog/fog-aws"
|
spec.homepage = "https://github.com/fog/fog-aws"
|
||||||
spec.license = "MIT"
|
spec.license = "MIT"
|
||||||
|
|
||||||
spec.files = Dir['lib/**/*.rb', 'lib/**/*.json', 'tests/**/*',
|
spec.files = Dir['lib/**/*.{rb,json}',
|
||||||
'CHANGELOG.md', 'CONTRIBUTING.md', 'CONTRIBUTORS.md',
|
'CHANGELOG.md', 'CONTRIBUTING.md', 'CONTRIBUTORS.md',
|
||||||
'LICENSE.md', 'README.md', 'fog-aws.gemspec',]
|
'LICENSE.md', 'README.md', 'fog-aws.gemspec',]
|
||||||
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
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.require_paths = ["lib"]
|
||||||
|
|
||||||
spec.required_ruby_version = '>= 2.0.0'
|
spec.required_ruby_version = '>= 2.0.0'
|
||||||
|
|
Loading…
Reference in a new issue