Epiphany time: I expect the Railtie API to work for all 3.x releases. No need for an edge Rails branch.

This commit is contained in:
Andre Arko
2010-10-08 14:25:03 -07:00
parent 21a8e5bcb9
commit 9e3d323260
3 changed files with 8 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
## 0.2.2 (8 October 2010)
Feature:
- Depend on Rails >=3.0 && <4.0 for edge Rails compatibility
## 0.2.1 (2 October 2010)
Bugfix:

View File

@@ -14,7 +14,7 @@ Gem::Specification.new do |s|
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "jquery-rails"
s.add_dependency "rails", "~> 3.0.0"
s.add_dependency "rails", "~> 3.0"
s.add_development_dependency "bundler", "~> 1.0.0"
s.files = `git ls-files`.split("\n")

View File

@@ -1,5 +1,5 @@
module Jquery
module Rails
VERSION = "0.2.1"
VERSION = "0.2.2"
end
end