Skip to content

Commit

Permalink
Fix gemspec to not include tmp or log files, closes heartcombo#1632.
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Feb 9, 2012
1 parent dc37b82 commit 86c8e54
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
**/*/log/*
**/*/tmp/*
test/rails_app/log/*
test/rails_app/tmp/*
*~
coverage/*
*.sqlite3
Expand Down
4 changes: 2 additions & 2 deletions devise.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ Gem::Specification.new do |s|

s.rubyforge_project = "devise"

s.files = Dir["CHANGELOG.rdoc", "MIT-LICENSE", "README.rdoc", "app/**/*", "config/**/*", "lib/**/*"]
s.test_files = Dir["test/**/*"]
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- test/*`.split("\n")
s.require_paths = ["lib"]

s.add_dependency("warden", "~> 1.1")
Expand Down

0 comments on commit 86c8e54

Please sign in to comment.