Skip to content

Commit

Permalink
Bump dependency version of activesupport to 3.0.0.beta
Browse files Browse the repository at this point in the history
  • Loading branch information
brynary committed Feb 5, 2010
1 parent 91663d1 commit 9aa076a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions History.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Thorfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
8 changes: 4 additions & 4 deletions arel.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

0 comments on commit 9aa076a

Please sign in to comment.