Skip to content

Commit

Permalink
bumping to 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tenderlove committed Feb 21, 2012
1 parent 33f03c5 commit aa43fe1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
13 changes: 8 additions & 5 deletions arel.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

Gem::Specification.new do |s|
s.name = "arel"
s.version = "3.0.0.20120112113618"
s.version = "3.0.1.20120220180444"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Aaron Patterson", "Bryan Halmkamp", "Emilio Tagua", "Nick Kallen"]
s.date = "2012-01-12"
s.date = "2012-02-21"
s.description = "Arel is a SQL AST manager for Ruby. It\n\n1. Simplifies the generation of complex SQL queries\n2. Adapts to various RDBMS systems\n\nIt is intended to be a framework framework; that is, you can build your own ORM\nwith it, focusing on innovative object and collection modeling as opposed to\ndatabase compatibility and query generation."
s.email = ["[email protected]", "[email protected]", "[email protected]", "[email protected]"]
s.extra_rdoc_files = ["History.txt", "MIT-LICENSE.txt", "Manifest.txt", "README.markdown"]
Expand All @@ -23,14 +23,17 @@ Gem::Specification.new do |s|
s.specification_version = 3

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<hoe>, ["~> 2.12"])
s.add_development_dependency(%q<minitest>, ["~> 2.11"])
s.add_development_dependency(%q<rdoc>, ["~> 3.10"])
s.add_development_dependency(%q<hoe>, ["~> 2.13"])
else
s.add_dependency(%q<hoe>, ["~> 2.12"])
s.add_dependency(%q<minitest>, ["~> 2.11"])
s.add_dependency(%q<rdoc>, ["~> 3.10"])
s.add_dependency(%q<hoe>, ["~> 2.13"])
end
else
s.add_dependency(%q<hoe>, ["~> 2.12"])
s.add_dependency(%q<minitest>, ["~> 2.11"])
s.add_dependency(%q<rdoc>, ["~> 3.10"])
s.add_dependency(%q<hoe>, ["~> 2.13"])
end
end
2 changes: 1 addition & 1 deletion lib/arel.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
####

module Arel
VERSION = '3.0.0'
VERSION = '3.0.1'

def self.sql raw_sql
Arel::Nodes::SqlLiteral.new raw_sql
Expand Down

0 comments on commit aa43fe1

Please sign in to comment.