Skip to content

Commit

Permalink
Release 0.6.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Jul 26, 2010
1 parent b86e0ef commit d79339d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
2 changes: 2 additions & 0 deletions README.rdoc
Expand Up @@ -42,6 +42,8 @@ to be used with Rails 2.3 together with Inherited Resources, please check this b
allows clients to easily query the server if a resource changed and if the client tries
to retrieve a resource that has not been modified, it returns not_modified status.

* CollectionResponder - Makes your create and update action redirect to the collection on success.

== Configuring your own responder

The first step is instal responders gem and configure it in your application:
Expand Down
2 changes: 1 addition & 1 deletion lib/responders/version.rb
@@ -1,3 +1,3 @@
module Responders
VERSION = "0.6.1".freeze
VERSION = "0.6.2".freeze
end
13 changes: 8 additions & 5 deletions responders.gemspec
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{responders}
s.version = "0.6.1"
s.version = "0.6.2"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Jos\303\251 Valim"]
s.date = %q{2010-05-24}
s.date = %q{2010-07-26}
s.description = %q{A set of Rails 3 responders to dry up your application}
s.email = %q{contact@plataformatec.com.br}
s.extra_rdoc_files = [
Expand All @@ -18,6 +18,7 @@ Gem::Specification.new do |s|
s.files = [
"CHANGELOG.rdoc",
"Gemfile",
"Gemfile.lock",
"MIT-LICENSE",
"README.rdoc",
"Rakefile",
Expand All @@ -26,6 +27,7 @@ Gem::Specification.new do |s|
"lib/generators/rails/templates/controller.rb",
"lib/generators/responders/install_generator.rb",
"lib/responders.rb",
"lib/responders/collection_responder.rb",
"lib/responders/controller_method.rb",
"lib/responders/flash_responder.rb",
"lib/responders/http_cache_responder.rb",
Expand All @@ -35,10 +37,11 @@ Gem::Specification.new do |s|
s.homepage = %q{http://github.com/plataformatec/responders}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.6}
s.rubygems_version = %q{1.3.7}
s.summary = %q{A set of Rails 3 responders to dry up your application}
s.test_files = [
"test/controller_method_test.rb",
"test/collection_responder_test.rb",
"test/controller_method_test.rb",
"test/flash_responder_test.rb",
"test/http_cache_responder_test.rb",
"test/test_helper.rb"
Expand All @@ -48,7 +51,7 @@ Gem::Specification.new do |s|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
else
end
else
Expand Down

0 comments on commit d79339d

Please sign in to comment.