1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Release 4.0.0

This commit is contained in:
Rafael Mendonça França 2013-04-18 13:40:43 -03:00
parent 85b0b19c11
commit 3ef63ac536
2 changed files with 3 additions and 3 deletions

View file

@ -2,11 +2,11 @@
Gem::Specification.new do |s|
s.name = "arel"
s.version = "4.0.0.beta2.20130314230643"
s.version = "4.0.0.20130418133826"
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = ["Aaron Patterson", "Bryan Halmkamp", "Emilio Tagua", "Nick Kallen"]
s.date = "2013-03-15"
s.date = "2013-04-18"
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 = ["aaron@tenderlovemaking.com", "bryan@brynary.com", "miloops@gmail.com", "nick@example.org"]
s.extra_rdoc_files = ["History.txt", "MIT-LICENSE.txt", "Manifest.txt", "README.markdown"]

View file

@ -32,7 +32,7 @@ require 'arel/sql_literal'
####
module Arel
VERSION = '4.0.0.beta2'
VERSION = '4.0.0'
def self.sql raw_sql
Arel::Nodes::SqlLiteral.new raw_sql