aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| | | * | | | | move ivar to initialize, use triple dot rather than minusAaron Patterson2010-12-162-2/+2
| | | | | | | |
| | | * | | | | explicitly set prefixAaron Patterson2010-12-161-1/+1
| | | | | | | |
| | | * | | | | remove lasgn since AST is mutatedAaron Patterson2010-12-162-3/+9
| | | | | | | |
| | | * | | | | just mutate the ast, fewer lasgnsAaron Patterson2010-12-161-3/+2
| | | | |_|/ / | | | |/| | |
| | | * | | | fixed typosVijay Dev2010-12-161-6/+6
| | | | | | |
| | | * | | | minor formatting fixesVijay Dev2010-12-161-19/+19
| | | | |/ / | | | |/| |
| | | * | | fixed link to ruby-profVijay Dev2010-12-161-1/+1
| | | | | |
| | | * | | fixed fontVijay Dev2010-12-151-1/+1
| | | | | |
| | | * | | Merge branch 'master' of github.com:lifo/docrailsVijay Dev2010-12-157-141/+460
| | | |\ \ \
| | | | * | | eternal confusion! fixed doco to inform correctlyAditya Sanghi2010-12-151-1/+1
| | | | | | |
| | | | * | | Active Support coreext guide: Logger core extension documentationRyan Bigg2010-12-151-0/+43
| | | | | | |
| | | | * | | WIP: Reviewing the initialization guide for Rails 3.1Ryan Bigg2010-12-151-121/+393
| | | | | | |
| | | | * | | It should be ActiveModel::Validator, not ActiveRecord::Validator.Elben Shira2010-12-141-1/+1
| | | | | | |
| | | | * | | Added :placeholder option to ActionView::Helpers::FormTagHelper text_field_tagBen Mills2010-12-131-0/+4
| | | | | | |
| | | | * | | for the root route to work, we need to delete the public/index.html.erbUmar Sheikh2010-12-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | file as well
| | | | * | | Fix indentation on the namespace method's documentationRyan Bigg2010-12-131-16/+16
| | | | | | |
| | | | * | | Remove nodoc from FormBuilder because the methods inside are public API methodsRyan Bigg2010-12-131-1/+1
| | | | | | |
| | | * | | | filter_parameter_logging is deprecated in Rails 3. Changed it to ↵Vijay Dev2010-12-151-2/+2
| | | |/ / / | | | | | | | | | | | | | | | | | | config.filter_parameters
| | | * | | fixed typos in mailerVijay Dev2010-12-121-8/+6
| | | | | |
| | | * | | fixed typos and rephrased a few sentences; also removed reference to status ↵vijay2010-12-111-14/+10
| | | | | | | | | | | | | | | | | | | | | | | | codes being located in action_controller/status_codes.rb
| | | * | | Updated generator guide for rails commit ↵Paul Odeon2010-12-111-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | 7891de893951c780a1732747d430c33e998dd573
| | | * | | Provide an example for ActionDispatch::Routing::Mapper#scopeRyan Bigg2010-12-111-0/+12
| | | | | |
| | * | | | Clean IdentityMap before running each benchmark.Emilio Tagua2010-11-191-0/+18
| | | | | |
| | * | | | No need to specify clear is a method from IM when we are inside IM.Emilio Tagua2010-11-191-1/+1
| | | | | |
| | * | | | IM enable should be kept in current thread.Emilio Tagua2010-11-191-7/+10
| | | | | |
| | * | | | "there is no need to store this option just for initialization" José Valim ↵Emilio Tagua2010-11-192-9/+5
| | | | | | | | | | | | | | | | | | | | | | | | dixit.
| | * | | | identity_map name is used for configuration, use IdentityMap to access it.Emilio Tagua2010-11-193-11/+7
| | | | | |
| | * | | | Simplify remove_from_config.Emilio Tagua2010-11-191-9/+5
| | | | | |
| | * | | | Enable IdentityMap when generating new apps.Emilio Tagua2010-11-192-0/+17
| | | | | |
| | * | | | Fix typo.Emilio Tagua2010-11-191-1/+1
| | | | | |
| | * | | | We have to check object class to avoid issues when using STI.Emilio Tagua2010-11-191-1/+2
| | | | | |
| | * | | | Enable IM in performance script unless IM=disabled is set when running it.Emilio Tagua2010-11-191-0/+2
| | | | | |
| | * | | | IM is disabled by default.Emilio Tagua2010-11-191-2/+2
| | | | | |
| | * | | | Add test using identity map and select.Emilio Tagua2010-11-191-0/+14
| | | | | |
| | * | | | No need to check returned object now that weakhash is gone.Emilio Tagua2010-11-191-5/+1
| | | | | |
| | * | | | Usa Hash instead of WeakHash.Emilio Tagua2010-11-191-2/+2
| | | | | |
| | * | | | Revert "Use ActiveSupport::WeakHash for MRI, JRuby prefers Weakling."Emilio Tagua2010-11-191-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 3cddebc2402eb71f2806e8b2119dc3efdceb4662. Conflicts: activerecord/lib/active_record/identity_map.rb activesupport/lib/active_support/weak_hash.rb
| | * | | | Read from config, because AR may not be loaded yet.Emilio Tagua2010-11-191-1/+1
| | | | | |
| | * | | | Set IdentityMap disabled by default.Emilio Tagua2010-11-191-1/+1
| | | | | |
| | * | | | We don't need to dup key, since only value is weak.Emilio Tagua2010-11-191-10/+3
| | | | | |
| | * | | | Refactor associations cache removal from IM. (ht: Aaron Patterson)Emilio Tagua2010-11-191-4/+4
| | | | | |
| | * | | | Update number of queries executed instead of avoiding IM.Emilio Tagua2010-11-191-9/+5
| | | | | |
| | * | | | Don't change tests, fix code: if locking is enabled skip IM.Emilio Tagua2010-11-192-14/+1
| | | | | |
| | * | | | Remove associated objects from IM when clearing them from association cache.Emilio Tagua2010-11-191-0/+6
| | | | | |
| | * | | | Test setup method should clean up IM.Emilio Tagua2010-11-191-0/+4
| | | | | |
| | * | | | Query objects if readonly_value is false, skip them only if nil.Emilio Tagua2010-11-191-3/+3
| | | | | |
| | * | | | Added method to IM to remove objects by class and id. Then used it to remove ↵Emilio Tagua2010-11-192-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | objects when updating counters.
| | * | | | Clear IdentityMap before continue this test, we can do this here because ↵Emilio Tagua2010-11-191-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | store_full_sti_class is not supposed to change during "runtime".
| | * | | | Call super setup in this test.Emilio Tagua2010-11-191-1/+2
| | | | | |
| | * | | | Fix number of queries performed in tests.Emilio Tagua2010-11-191-6/+6
| | | | | |