Rakefile in aeonscope-rest-1.0.0 vs Rakefile in aeonscope-rest-1.1.0
- old
+ new
@@ -3,17 +3,17 @@
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "rest"
- gem.summary = "Enables default REST functionality, more than what you get with Rails out-of-the-box, and keeps your code DRY."
+ gem.summary = "Enables default REST functionality, UJS support (jQuery), and keeps your code DRY."
gem.description = "Ruby on Rails supports RESTful routing out-of-the-box. However, as you move along, you will often find yourself repeating the code for the seven REST actions: index, show, new, create, edit, update, destroy. This gem allows you to get all of the code for free by simply typing 'include Rest' at top of your controller code. That's it! Even better, you can have nested resources as well by adding a 'belongs_to' statement to your controllers much like you would for ActiveRecord models. This is just the tip of the iceburg so make sure to read the RDoc for more info."
gem.authors = ["Brooke Kuhlmann"]
gem.email = "aeonscope@gmail.com"
gem.homepage = "http://github.com/aeonscope/rest"
gem.required_ruby_version = ">= 1.8.6"
gem.add_dependency "rails", ">= 2.3.2"
- gem.add_dependency "mislav-will_paginate", ">= 2.3.7"
+ gem.add_dependency "mislav-will_paginate", ">= 2.3.10"
gem.rdoc_options << "CHANGELOG.rdoc"
gem.files = FileList["[A-Z]*", "{bin,lib,generators,rails_generators,test,spec}/**/*"]
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"