Skip to content

Commit

Permalink
Update Rakefile with description and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdurtschi committed Aug 30, 2010
1 parent 8467e80 commit 8f4b045
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,16 @@ begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "rack-sanitize"
gem.summary = %Q{TODO: one-line summary of your gem}
gem.description = %Q{TODO: longer description of your gem}
gem.summary = %Q{Rack middleware to sanitize GET and POST parameters}
gem.description = %Q{Remove all malicious HTML from your request before it reaches your application}
gem.email = "[email protected]"
gem.homepage = "http://github.com/robotapocalypse/rack-sanitize"
gem.authors = ["robotapocalypse"]
gem.add_development_dependency "rspec"
gem.add_dependency "sanitize", "~>1.2.0"
gem.add_development_dependency "rspec", "~>1.3.0"
gem.add_development_dependency "rack-test", "~>0.5.4"
gem.add_development_dependency "sinatra", "~>1.0"
gem.add_development_dependency "activesupport", "~>3.0.0.rc2"
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
rescue LoadError
Expand Down

0 comments on commit 8f4b045

Please sign in to comment.