Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Tests for notmatches and notin, and fixes for issues found in tests | Ernie Miller | 2010-05-07 | 1 | -5/+18 | |
| | ||||||
* | Rename Attribute Not -> Inequality and add a Not predicate (complement) | Ernie Miller | 2010-05-07 | 2 | -2/+11 | |
| | ||||||
* | Add grouped predicates (_any/_all) and refactored predication method definitions | Ernie Miller | 2010-05-07 | 2 | -38/+60 | |
| | ||||||
* | Added NotMatch and NotIn predicates, made Not derive from Equality (reverted ↵ | Ernie Miller | 2010-05-07 | 2 | -7/+17 | |
| | | | | later) | |||||
* | Return nil when looking up an attribute by name that does not exist instead ↵ | Carl Lerche | 2010-04-03 | 1 | -8/+1 | |
| | | | | of returning a fictitious attribute. | |||||
* | Remove commented out code | Carl Lerche | 2010-04-02 | 1 | -4/+0 | |
| | ||||||
* | Create an Arel::Header class representing a relation's attributes | Carl Lerche | 2010-04-02 | 7 | -27/+99 | |
| | ||||||
* | Handle ranges with excluded end. | Emilio Tagua | 2010-03-29 | 1 | -1/+5 | |
| | ||||||
* | Use ActiveSupport beta since beta1 is not released yet. Added ↵ | Emilio Tagua | 2010-03-25 | 1 | -0/+13 | |
| | | | | singleton_class until beta1 is out. | |||||
* | Restrictions should be able to contain multiple predicates. | Carl Lerche | 2010-03-23 | 1 | -5/+5 | |
| | ||||||
* | Switch Arel::Relation to a module. This will allow for classes with Relation ↵ | Carl Lerche | 2010-03-22 | 5 | -7/+11 | |
| | | | | extended on them to represent relations themselves (as opposed to their instances being relations). | |||||
* | Fix uninitialized ivar warning | Emilio Tagua | 2010-03-22 | 1 | -0/+1 | |
| | ||||||
* | Add shared tests for skip | Carl Lerche | 2010-03-12 | 1 | -1/+2 | |
| | ||||||
* | Add full stack tests for #take | Carl Lerche | 2010-03-12 | 1 | -1/+2 | |
| | ||||||
* | Support in memory ordering better. | Carl Lerche | 2010-03-12 | 3 | -11/+21 | |
| | ||||||
* | Add support for a NOT predicate | Carl Lerche | 2010-03-12 | 2 | -0/+5 | |
| | ||||||
* | Add a bunch of specs for attribute type casting. | Carl Lerche | 2010-03-12 | 2 | -13/+11 | |
| | ||||||
* | Attributes should be typed | Carl Lerche | 2010-03-12 | 8 | -0/+102 | |
| | ||||||
* | Merge branch 'master' of github.com:brynary/arel | Emilio Tagua | 2010-03-12 | 1 | -0/+9 | |
|\ | ||||||
| * | Start writing integration specs for arel. | Carl Lerche | 2010-03-11 | 1 | -0/+9 | |
| | | ||||||
* | | Add accessibility to projections applied to the relation. | Emilio Tagua | 2010-03-12 | 2 | -1/+2 | |
|/ | ||||||
* | Arel doesn't has to know if a table or column exists. | Emilio Tagua | 2010-03-10 | 1 | -2/+3 | |
| | ||||||
* | Make sure string join relations can be chained | Pratik Naik | 2010-01-13 | 1 | -0/+4 | |
| | ||||||
* | Add support for table aliasing | Pratik Naik | 2010-01-01 | 1 | -1/+1 | |
| | | | | | | | Example : users = Table(:users, :as => :accounts) users.to_sql => SELECT `accounts`.`id`, `accounts`.`name` FROM `users` AS `accounts` | |||||
* | Attributes may be an Arel value which doesn't respond to aggregation?, don't ↵ | Emilio Tagua | 2009-12-29 | 1 | -1/+1 | |
| | | | | test them. | |||||
* | Added having to use in combination with group to filter records. | Emilio Tagua | 2009-12-28 | 4 | -2/+17 | |
| | ||||||
* | Added lock to Arel, allowing a locking read if required. | Emilio Tagua | 2009-12-27 | 4 | -1/+19 | |
| | ||||||
* | Added "from" method, allowing to specify custom from clauses. | Emilio Tagua | 2009-12-27 | 4 | -2/+10 | |
| | ||||||
* | Pull primitives up one level | Bryan Helmkamp | 2009-09-30 | 5 | -5/+0 | |
| | ||||||
* | Create Predicates module to match directory structure | Bryan Helmkamp | 2009-09-30 | 2 | -37/+39 | |
| | ||||||
* | Move extensions directories to core_extensions | Bryan Helmkamp | 2009-09-30 | 6 | -4/+4 | |
| | ||||||
* | Fix almost all Ruby warnings during spec suite | Bryan Helmkamp | 2009-09-20 | 1 | -1/+1 | |
| | ||||||
* | Whitespace | Bryan Helmkamp | 2009-09-20 | 5 | -5/+5 | |
| | ||||||
* | Accept Arel::Value in hash values and treat them properly. | Emilio Tagua | 2009-08-14 | 1 | -1/+1 | |
| | ||||||
* | Better inspect output for Expressions | Bryan Helmkamp | 2009-05-18 | 1 | -0/+4 | |
| | ||||||
* | Removing unused Pathname extension | Bryan Helmkamp | 2009-05-18 | 1 | -9/+0 | |
| | ||||||
* | Expand usages of #hash_on. The #hash definition it produces looks broken, ↵ | Bryan Helmkamp | 2009-05-18 | 3 | -13/+18 | |
| | | | | but leaving it for now | |||||
* | Removing Object#metaclass definition (it's already in ActiveSupport) | Bryan Helmkamp | 2009-05-17 | 1 | -6/+0 | |
| | ||||||
* | Fix bug in Order equality where Descending.new(attribute) was == ↵ | Bryan Helmkamp | 2009-05-17 | 1 | -4/+9 | |
| | | | | Ascending.new(attribute) | |||||
* | Removing two unused externalizable? methods | Bryan Helmkamp | 2009-05-17 | 2 | -8/+0 | |
| | ||||||
* | Removing unused array extensions | Bryan Helmkamp | 2009-05-17 | 2 | -18/+0 | |
| | ||||||
* | Include modules to extend core classes to improve inspectability | Bryan Helmkamp | 2009-05-17 | 6 | -63/+88 | |
| | ||||||
* | Whitespace | Bryan Helmkamp | 2009-05-17 | 18 | -41/+41 | |
| | ||||||
* | joining across engines in either direction | Bryan Helmkamp | 2009-05-17 | 1 | -1/+9 | |
| | | | | | | Conflicts: spec/arel/engines/memory/integration/joins/cross_engine_spec.rb | |||||
* | initial implementation of cross-engine join | Bryan Helmkamp | 2009-05-17 | 1 | -2/+3 | |
| | | | | | | | Conflicts: lib/arel/engines/memory/relations/array.rb lib/arel/engines/sql/primitives.rb | |||||
* | basic implementation of in memory insertions | Bryan Helmkamp | 2009-05-17 | 1 | -1/+1 | |
| | | | | | | Conflicts: lib/arel/engines/memory/relations.rb | |||||
* | using in memory relations as results from sql relation | Nick Kallen | 2009-05-17 | 6 | -6/+19 | |
| | | | | | | | Conflicts: lib/arel/algebra/primitives/expression.rb lib/arel/algebra/relations/relation.rb | |||||
* | performing in memory joins | Nick Kallen | 2009-05-17 | 1 | -0/+4 | |
| | ||||||
* | recursive memory operations now possible | Bryan Helmkamp | 2009-05-17 | 4 | -11/+22 | |
| | | | | | | Conflicts: lib/arel/algebra/relations/relation.rb | |||||
* | made block stuff read nicer | Bryan Helmkamp | 2009-05-17 | 4 | -3/+11 | |
| | | | | | | Conflicts: doc/TODO |