Skip to content

Commit

Permalink
Fixing some gem issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jferris committed Jan 2, 2009
1 parent 24f565b commit b2eb349
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 466 deletions.
12 changes: 10 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,20 @@ end
desc "Run the test suite"
task :default => 'test:all'

Gem::Specification.new do |s|
spec = Gem::Specification.new do |s|
s.name = "clearance"
s.version = '0.3.7'
s.summary = "Simple, complete Rails authentication."
s.email = "support@thoughtbot.com"
s.homepage = "http://github.com/thoughtbot/clearance"
s.description = "Simple, complete Rails authentication scheme."
s.authors = ["thoughtbot, inc.", "Josh Nichols", "Mike Breen"]
s.files = FileList["[A-Z]*", "{generators,lib,test}/**/*"]
s.files = FileList["[A-Z]*", "{generators,lib}/**/*"]
end

desc "Generate a gemspec file"
task :gemspec do
File.open("#{spec.name}.gemspec", 'w') do |f|
f.write spec.to_ruby
end
end
Loading

0 comments on commit b2eb349

Please sign in to comment.