Skip to content

Commit

Permalink
Change gemspec to avoid subshells and remove unneeded files
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelfranca committed Jan 10, 2012
1 parent e954254 commit cfdabf8
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions devise.gemspec
Expand Up @@ -14,13 +14,12 @@ Gem::Specification.new do |s|

s.rubyforge_project = "devise"

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.files = Dir["CHANGELOG.rdoc", "MIT-LICENSE", "README.rdoc", "app/**/*", "config/**/*", "lib/**/*"]
s.test_files = Dir["test/**/*"]
s.require_paths = ["lib"]

s.add_dependency("warden", "~> 1.1")
s.add_dependency("orm_adapter", "~> 0.0.3")
s.add_dependency("bcrypt-ruby", "~> 3.0")
s.add_dependency("railties", "~> 3.1")
end
end

0 comments on commit cfdabf8

Please sign in to comment.