diff options
author | Raimonds Simanovskis <raimonds.simanovskis@gmail.com> | 2010-02-10 19:50:59 +0200 |
---|---|---|
committer | Raimonds Simanovskis <raimonds.simanovskis@gmail.com> | 2010-03-01 12:02:10 +0200 |
commit | 20a10e5302ce8f912d27c57702b542a019c7f9f9 (patch) | |
tree | 38de3309520244ba6fda99b8d47525852e926491 /arel.gemspec | |
parent | 98a87e181aed8131797e55db2ca957bc515cdaca (diff) | |
download | rails-20a10e5302ce8f912d27c57702b542a019c7f9f9.tar.gz rails-20a10e5302ce8f912d27c57702b542a019c7f9f9.tar.bz2 rails-20a10e5302ce8f912d27c57702b542a019c7f9f9.zip |
changes for Oracle support - OracleCompiler and corresponding tests with Oracle syntax
Diffstat (limited to 'arel.gemspec')
-rw-r--r-- | arel.gemspec | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/arel.gemspec b/arel.gemspec index b5267cf333..24a73d78cd 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-05} + s.date = %q{2010-02-13} 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 @@ -146,6 +146,7 @@ and query generation.} "spec/arel/engines/sql/unit/relations/update_spec.rb", "spec/arel/engines/sql/unit/relations/where_spec.rb", "spec/connections/mysql_connection.rb", + "spec/connections/oracle_connection.rb", "spec/connections/postgresql_connection.rb", "spec/connections/sqlite3_connection.rb", "spec/doubles/hash.rb", @@ -153,6 +154,7 @@ and query generation.} "spec/matchers/disambiguate_attributes.rb", "spec/matchers/hash_the_same_as.rb", "spec/schemas/mysql_schema.rb", + "spec/schemas/oracle_schema.rb", "spec/schemas/postgresql_schema.rb", "spec/schemas/sqlite3_schema.rb", "spec/spec.opts", @@ -221,6 +223,7 @@ and query generation.} "spec/arel/engines/sql/unit/relations/update_spec.rb", "spec/arel/engines/sql/unit/relations/where_spec.rb", "spec/connections/mysql_connection.rb", + "spec/connections/oracle_connection.rb", "spec/connections/postgresql_connection.rb", "spec/connections/sqlite3_connection.rb", "spec/doubles/hash.rb", @@ -228,6 +231,7 @@ and query generation.} "spec/matchers/disambiguate_attributes.rb", "spec/matchers/hash_the_same_as.rb", "spec/schemas/mysql_schema.rb", + "spec/schemas/oracle_schema.rb", "spec/schemas/postgresql_schema.rb", "spec/schemas/sqlite3_schema.rb", "spec/spec_helper.rb" |