Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | caching existence of a table | Aaron Patterson | 2010-07-30 | 1 | -4/+4 | |
| | ||||||
* | changing default value to TrueClass | Aaron Patterson | 2010-07-30 | 2 | -8/+2 | |
| | ||||||
* | PERF: eliminating a case statement | Aaron Patterson | 2010-07-30 | 2 | -8/+2 | |
| | ||||||
* | PERF caching engine, converting to an attr_reader | Aaron Patterson | 2010-07-30 | 1 | -5/+2 | |
| | ||||||
* | PERF: removing another def engine | Aaron Patterson | 2010-07-30 | 2 | -12/+1 | |
| | ||||||
* | PERF: removing another def engine | Aaron Patterson | 2010-07-30 | 2 | -12/+1 | |
| | ||||||
* | PERF: removing another def engine | Aaron Patterson | 2010-07-30 | 2 | -12/+1 | |
| | ||||||
* | PERF: removing def engine | Aaron Patterson | 2010-07-30 | 2 | -13/+7 | |
| | ||||||
* | variable name clarity | Aaron Patterson | 2010-07-30 | 1 | -2/+2 | |
| | ||||||
* | better tests for Taken constructor, removing Take#== | Aaron Patterson | 2010-07-30 | 2 | -8/+3 | |
| | ||||||
* | better tests for Where construction, removing Where#== | Aaron Patterson | 2010-07-30 | 2 | -9/+11 | |
| | ||||||
* | PERF: where is only ever called with 0 or 1 arguments. eliminate *args | Aaron Patterson | 2010-07-30 | 2 | -2/+6 | |
| | ||||||
* | PERF: fewer objects, short circuit unless necessary | Aaron Patterson | 2010-07-30 | 1 | -3/+6 | |
| | ||||||
* | PERF: fewer function calls | Aaron Patterson | 2010-07-30 | 1 | -6/+7 | |
| | ||||||
* | initialize our instance variables | Aaron Patterson | 2010-07-29 | 1 | -2/+7 | |
| | ||||||
* | PERF: fewer objects, pass through on values | Aaron Patterson | 2010-07-29 | 1 | -1/+8 | |
| | ||||||
* | fewer function calls | Aaron Patterson | 2010-07-29 | 1 | -1/+2 | |
| | ||||||
* | PERF: avoid *args | Aaron Patterson | 2010-07-29 | 1 | -1/+3 | |
| | ||||||
* | PERF: pushing christener down for faster method lookup and calling | Aaron Patterson | 2010-07-29 | 2 | -2/+4 | |
| | ||||||
* | PERF: removing many splats | Aaron Patterson | 2010-07-29 | 12 | -32/+30 | |
| | ||||||
* | fisting postgres tests. thanks santiago! | Aaron Patterson | 2010-07-29 | 1 | -1/+1 | |
| | ||||||
* | if-else logic doesn't needed | Santiago Pastorino | 2010-07-28 | 1 | -5/+1 | |
| | ||||||
* | call map to make perftools reports more nice | Aaron Patterson | 2010-07-28 | 1 | -1/+1 | |
| | ||||||
* | refactor for faster method lookup | Aaron Patterson | 2010-07-28 | 2 | -13/+15 | |
| | ||||||
* | PERF: fewer objects, less lambdas, less memory | Aaron Patterson | 2010-07-28 | 1 | -4/+3 | |
| | ||||||
* | implementing hash is a non-requirement | Aaron Patterson | 2010-07-28 | 2 | -15/+0 | |
| | ||||||
* | PERF: fewer objects, using attr_reader for faster method lookup | Aaron Patterson | 2010-07-28 | 1 | -6/+2 | |
| | ||||||
* | initializing variables, removing == | Aaron Patterson | 2010-07-28 | 2 | -9/+5 | |
| | ||||||
* | Enumerable implements #first | Aaron Patterson | 2010-07-28 | 2 | -12/+5 | |
| | ||||||
* | no code is faster than no code | Aaron Patterson | 2010-07-28 | 1 | -9/+0 | |
| | ||||||
* | speed up hash calculation and hash method | Aaron Patterson | 2010-07-28 | 1 | -7/+6 | |
| | ||||||
* | no need for a lambda | Aaron Patterson | 2010-07-28 | 2 | -5/+7 | |
| | ||||||
* | adding tests for the christener | Aaron Patterson | 2010-07-28 | 1 | -0/+78 | |
| | ||||||
* | speed up method lookup and reduce API footprint | Aaron Patterson | 2010-07-28 | 2 | -15/+12 | |
| | ||||||
* | simplifying the Christener | Aaron Patterson | 2010-07-28 | 3 | -12/+12 | |
| | ||||||
* | PostgreSQLCompiler#select_sql fixed | Santiago Pastorino | 2010-07-28 | 1 | -12/+20 | |
| | ||||||
* | fixing a typo! | Aaron Patterson | 2010-07-28 | 1 | -2/+2 | |
| | ||||||
* | #hash #eql? and #== were only used in tests. removed them and wrote better tests | Aaron Patterson | 2010-07-28 | 3 | -26/+17 | |
| | ||||||
* | defining a list of predicate methods for easy metaprogramming | Aaron Patterson | 2010-07-28 | 1 | -0/+15 | |
| | ||||||
* | cleaning up code formatting | Aaron Patterson | 2010-07-27 | 1 | -1/+4 | |
| | ||||||
* | faster method lookup again | Aaron Patterson | 2010-07-27 | 1 | -27/+24 | |
| | ||||||
* | oops! removing debug puts | Aaron Patterson | 2010-07-27 | 2 | -5/+0 | |
| | ||||||
* | fixing spec case for method lookup improvement | Aaron Patterson | 2010-07-27 | 1 | -1/+1 | |
| | ||||||
* | speed up method lookup | Aaron Patterson | 2010-07-27 | 1 | -92/+89 | |
| | ||||||
* | PERF: reducing delegate methods | Aaron Patterson | 2010-07-27 | 3 | -1/+13 | |
| | ||||||
* | PERF: *args is slow. also removing a non-feature | Aaron Patterson | 2010-07-27 | 2 | -3/+11 | |
| | ||||||
* | block not used | Aaron Patterson | 2010-07-27 | 1 | -1/+1 | |
| | ||||||
* | removing more dead code | Aaron Patterson | 2010-07-27 | 1 | -6/+0 | |
| | ||||||
* | PERF: dead code is dead | Aaron Patterson | 2010-07-27 | 1 | -1/+0 | |
| | ||||||
* | PERF: NERD RAGE. never called with a block, so no need to test | Aaron Patterson | 2010-07-27 | 1 | -3/+2 | |
| |