mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Arel master is 5.0.0
This commit is contained in:
parent
aa14068100
commit
cd0509d992
2 changed files with 5 additions and 4 deletions
|
@ -1,12 +1,13 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
# stub: arel 5.0.0.20131118174145 ruby lib
|
||||
|
||||
Gem::Specification.new do |s|
|
||||
s.name = "arel"
|
||||
s.version = "4.0.1.20131022201058"
|
||||
s.version = "5.0.0.20131118174145"
|
||||
|
||||
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 = "2013-10-22"
|
||||
s.date = "2013-11-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"]
|
||||
|
@ -16,7 +17,7 @@ Gem::Specification.new do |s|
|
|||
s.rdoc_options = ["--main", "README.markdown"]
|
||||
s.require_paths = ["lib"]
|
||||
s.rubyforge_project = "arel"
|
||||
s.rubygems_version = "2.0.6"
|
||||
s.rubygems_version = "2.1.11"
|
||||
s.summary = "Arel is a SQL AST manager for Ruby"
|
||||
s.test_files = ["test/attributes/test_attribute.rb", "test/nodes/test_and.rb", "test/nodes/test_as.rb", "test/nodes/test_ascending.rb", "test/nodes/test_bin.rb", "test/nodes/test_count.rb", "test/nodes/test_delete_statement.rb", "test/nodes/test_descending.rb", "test/nodes/test_distinct.rb", "test/nodes/test_equality.rb", "test/nodes/test_extract.rb", "test/nodes/test_false.rb", "test/nodes/test_grouping.rb", "test/nodes/test_infix_operation.rb", "test/nodes/test_insert_statement.rb", "test/nodes/test_named_function.rb", "test/nodes/test_node.rb", "test/nodes/test_not.rb", "test/nodes/test_or.rb", "test/nodes/test_over.rb", "test/nodes/test_select_core.rb", "test/nodes/test_select_statement.rb", "test/nodes/test_sql_literal.rb", "test/nodes/test_sum.rb", "test/nodes/test_table_alias.rb", "test/nodes/test_true.rb", "test/nodes/test_update_statement.rb", "test/nodes/test_window.rb", "test/test_attributes.rb", "test/test_crud.rb", "test/test_delete_manager.rb", "test/test_factory_methods.rb", "test/test_insert_manager.rb", "test/test_select_manager.rb", "test/test_table.rb", "test/test_update_manager.rb", "test/visitors/test_bind_visitor.rb", "test/visitors/test_depth_first.rb", "test/visitors/test_dispatch_contamination.rb", "test/visitors/test_dot.rb", "test/visitors/test_ibm_db.rb", "test/visitors/test_informix.rb", "test/visitors/test_join_sql.rb", "test/visitors/test_mssql.rb", "test/visitors/test_mysql.rb", "test/visitors/test_oracle.rb", "test/visitors/test_postgres.rb", "test/visitors/test_sqlite.rb", "test/visitors/test_to_sql.rb"]
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ require 'arel/sql_literal'
|
|||
####
|
||||
|
||||
module Arel
|
||||
VERSION = '4.0.1'
|
||||
VERSION = '5.0.0'
|
||||
|
||||
def self.sql raw_sql
|
||||
Arel::Nodes::SqlLiteral.new raw_sql
|
||||
|
|
Loading…
Reference in a new issue