aboutsummaryrefslogtreecommitdiffstats
path: root/spec/arel
Commit message (Collapse)AuthorAgeFilesLines
* joins can be createdAaron Patterson2010-08-183-3/+33
|
* delete manager addedAaron Patterson2010-08-182-0/+67
|
* fixing update supportAaron Patterson2010-08-182-0/+18
|
* adding some activerecord compatibilityAaron Patterson2010-08-161-0/+18
|
* OR nodes are somewhat workingAaron Patterson2010-08-163-0/+43
|
* sql visitor can deal with TrueClassAaron Patterson2010-08-161-0/+4
|
* table responds to takeAaron Patterson2010-08-161-0/+8
|
* IN seems to workAaron Patterson2010-08-164-7/+28
|
* quoting strings from equality statements, adding to_dotAaron Patterson2010-08-161-0/+9
|
* update is working on the select managerAaron Patterson2010-08-142-0/+56
|
* update manager is workingAaron Patterson2010-08-141-0/+18
|
* basic updates are workingAaron Patterson2010-08-141-0/+43
|
* inserts have the correct syntaxAaron Patterson2010-08-132-4/+41
|
* insert manager implements "insert"Aaron Patterson2010-08-132-0/+26
|
* inserts are starting to take shapeAaron Patterson2010-08-131-2/+41
|
* insert manager is starting to take shapeAaron Patterson2010-08-133-23/+52
|
* table responds to "project"Aaron Patterson2010-08-131-0/+10
|
* Table.new can take a hash for the second paramAaron Patterson2010-08-131-0/+12
|
* project works with stringsAaron Patterson2010-08-131-0/+20
|
* limits are addedAaron Patterson2010-08-122-0/+36
|
* full sql statement generationAaron Patterson2010-08-121-0/+44
|
* to_sql visitor startedAaron Patterson2010-08-122-0/+18
|
* adding first nodeAaron Patterson2010-08-121-0/+17
|
* tables can fetch attributesAaron Patterson2010-08-122-1/+52
|
* starting a spec for the tableAaron Patterson2010-08-121-18/+19
|
* stripping the spec helperAaron Patterson2010-08-121-0/+38
|
* We're obviously writing specs for arel. No need for a sub directory.Carl Lerche2010-03-1257-3966/+0
|
* Add a bunch of specs for attribute type casting.Carl Lerche2010-03-121-50/+8
|
* Attributes should be typedCarl Lerche2010-03-1210-26/+33
|
* Start writing integration specs for arel.Carl Lerche2010-03-111-0/+120
|
* Release v0.3.0Emilio Tagua2010-03-101-1/+1
|
* Arel doesn't has to know if a table or column exists.Emilio Tagua2010-03-103-4/+21
|
* Remove " AS " keyword from table aliasing.Emilio Tagua2010-03-014-36/+36
|
* changes for Oracle support - OracleCompiler and corresponding tests with ↵Raimonds Simanovskis2010-03-0126-63/+638
| | | | Oracle syntax
* Added support for RETURNING primary key when available, only forEmilio Tagua2010-02-181-1/+12
| | | | PostgreSQL.
* Fix test which depends on the RUBY_VERSION when using sqlite3 adapter.Emilio Tagua2010-02-171-1/+5
|
* Quoting every part of a Range. Calling .to_s is not enough for Range with ↵Eugene Pimenov2010-02-012-2/+26
| | | | two Time objects.
* Fix the generated SQL when In predicate is supplied an empty ArrayPratik Naik2010-01-301-0/+19
|
* Make sure string join relations can be chainedPratik Naik2010-01-131-1/+30
|
* Make sure not to use alias if it's same as the table namePratik Naik2010-01-121-0/+19
|
* Add support for table aliasingPratik Naik2010-01-012-2/+74
| | | | | | | Example : users = Table(:users, :as => :accounts) users.to_sql => SELECT `accounts`.`id`, `accounts`.`name` FROM `users` AS `accounts`
* Added having to use in combination with group to filter records.Emilio Tagua2009-12-281-0/+36
|
* Don't try to lock reads when using any SQLite adapter, it's redundantEmilio Tagua2009-12-281-2/+16
| | | | and may generate an invalid query.
* Added lock to Arel, allowing a locking read if required.Emilio Tagua2009-12-271-0/+47
|
* Added "from" method, allowing to specify custom from clauses.Emilio Tagua2009-12-271-0/+50
|
* Ruby 1.9: Improve the way we spec thisBryan Helmkamp2009-11-091-2/+2
|
* Switch from rr to RSpec mocks. rr has issues on 1.9.2preBryan Helmkamp2009-11-093-10/+10
|
* Ruby 1.9: the constants must be qualifiedBryan Helmkamp2009-11-096-10/+10
|
* Create Predicates module to match directory structureBryan Helmkamp2009-09-309-260/+274
|
* Fix almost all Ruby warnings during spec suiteBryan Helmkamp2009-09-206-15/+14
|