aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--History.txt6
-rw-r--r--Thorfile2
-rw-r--r--arel.gemspec8
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
diff --git a/Thorfile b/Thorfile
index eebb58254f..3b55e45a91 100644
--- a/Thorfile
+++ b/Thorfile
@@ -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