Skip to content

Commit

Permalink
fix(gemspec): add .sqlite3 to exclude pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
booleanbetrayal committed Oct 21, 2015
1 parent 087df7e commit a3c886a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devise_token_auth.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |s|

s.files = Dir["{app,config,db,lib}/**/*", "LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["test/**/*"]
s.test_files.reject! { |file| file.ends_with?(".log") }
s.test_files.reject! { |file| file.match(/[.log|.sqlite3]$/) }

s.add_dependency "rails", "~> 4.2"
s.add_dependency "devise", "~> 3.5.2"
Expand Down

0 comments on commit a3c886a

Please sign in to comment.