Skip to content

Commit

Permalink
Excluding test.log from test_files
Browse files Browse the repository at this point in the history
Since the test.log generated by the dummy_app isn't necessary to run the tests (and in `0.4.9` and `0.5.0` it makes the gem a whopping 60MB big), excluding it form the list of test files.
  • Loading branch information
pjaspers committed Jul 5, 2013
1 parent fef978f commit ef644ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rails_admin.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ Gem::Specification.new do |spec|
spec.required_rubygems_version = '>= 1.3.5'
spec.signing_key = File.expand_path("~/.gem/private_key.pem") if $0 =~ /gem\z/
spec.summary = %q{Admin for Rails}
spec.test_files = Dir['spec/**/*']
spec.test_files = Dir['spec/**/*'].reject {|f| f.end_with? "log"}
spec.version = RailsAdmin::Version
end

0 comments on commit ef644ba

Please sign in to comment.