Skip to content

Commit

Permalink
Change gemspec to remove test and rake files from gem release
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrmurach committed Mar 30, 2021
1 parent 1d78f5e commit d245f20
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions equatable.gemspec
Expand Up @@ -21,9 +21,8 @@ Gem::Specification.new do |spec|
"source_code_uri" => spec.homepage
}
end
spec.files = Dir['{lib,spec,examples}/**/*.rb']
spec.files += Dir['tasks/*', 'equatable.gemspec']
spec.files += Dir['README.md', 'CHANGELOG.md', 'LICENSE.txt', 'Rakefile']
spec.files = Dir["lib/**/*"]
spec.extra_rdoc_files = ["README.md", "CHANGELOG.md", "LICENSE.txt"]
spec.require_paths = ["lib"]

spec.required_ruby_version = '>= 1.8.7'
Expand Down

0 comments on commit d245f20

Please sign in to comment.