diff options
author | Bryan Helmkamp <bryan@brynary.com> | 2010-02-05 12:18:40 -0500 |
---|---|---|
committer | Bryan Helmkamp <bryan@brynary.com> | 2010-02-05 12:18:40 -0500 |
commit | 9aa076abfb893e6de9fee48f4c280b007f5887d3 (patch) | |
tree | cbdcfb6ca801080ebaf371b6d3c102cb4f44137a | |
parent | 91663d1e3a1ed45ad4bf54129a1d633161133667 (diff) | |
download | rails-9aa076abfb893e6de9fee48f4c280b007f5887d3.tar.gz rails-9aa076abfb893e6de9fee48f4c280b007f5887d3.tar.bz2 rails-9aa076abfb893e6de9fee48f4c280b007f5887d3.zip |
Bump dependency version of activesupport to 3.0.0.beta
-rw-r--r-- | History.txt | 6 | ||||
-rw-r--r-- | Thorfile | 2 | ||||
-rw-r--r-- | arel.gemspec | 8 |
3 files changed, 11 insertions, 5 deletions
diff --git a/History.txt b/History.txt index 8267acb031..465c6b670e 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,9 @@ +== git + +* Enhancements + + * Bump dependency version of activesupport to 3.0.0.beta + == 0.2.0 / 2010-01-31 * Ruby 1.9 compatibility @@ -38,7 +38,7 @@ and query generation. # circular dependency chain. The solution is for ActiveRecord to release # the connection adapters which Arel uses in a separate gem # s.add_dependency "activerecord", ">= 3.0.pre" - s.add_dependency "activesupport", ">= 3.0.pre" + s.add_dependency "activesupport", ">= 3.0.0.beta" end end diff --git a/arel.gemspec b/arel.gemspec index 465dcb7567..b487357523 100644 --- a/arel.gemspec +++ b/arel.gemspec @@ -6,7 +6,7 @@ Gem::Specification.new do |s| s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Bryan Helmkamp", "Nick Kallen", "Emilio Tagua"] - s.date = %q{2010-02-01} + s.date = %q{2010-02-05} s.description = %q{Arel is a Relational Algebra for Ruby. It 1) simplifies the generation complex of SQL queries and it 2) adapts to various RDBMS systems. It is intended to be a framework framework; that is, you can build your own ORM with it, focusing on @@ -238,11 +238,11 @@ and query generation.} s.specification_version = 3 if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then - s.add_runtime_dependency(%q<activesupport>, [">= 3.0.pre"]) + s.add_runtime_dependency(%q<activesupport>, [">= 3.0.0.beta"]) else - s.add_dependency(%q<activesupport>, [">= 3.0.pre"]) + s.add_dependency(%q<activesupport>, [">= 3.0.0.beta"]) end else - s.add_dependency(%q<activesupport>, [">= 3.0.pre"]) + s.add_dependency(%q<activesupport>, [">= 3.0.0.beta"]) end end |