Permalink
Please sign in to comment.
Showing
with
1,356 additions
and 790 deletions.
- +13 −12 actionmailer/lib/action_mailer/base.rb
- +3 −0 actionpack/CHANGELOG
- +13 −13 actionpack/lib/action_controller/assertions/selector_assertions.rb
- +29 −23 actionpack/lib/action_controller/base.rb
- +2 −1 actionpack/lib/action_controller/caching.rb
- +18 −13 actionpack/lib/action_controller/caching/pages.rb
- +10 −8 actionpack/lib/action_controller/polymorphic_routes.rb
- +10 −4 actionpack/lib/action_controller/record_identifier.rb
- +2 −2 actionpack/lib/action_controller/request_forgery_protection.rb
- +20 −22 actionpack/lib/action_controller/resources.rb
- +31 −4 actionpack/lib/action_controller/routing.rb
- +5 −4 actionpack/lib/action_controller/routing/segments.rb
- +13 −8 actionpack/lib/action_controller/session/active_record_store.rb
- +7 −7 actionpack/lib/action_controller/url_rewriter.rb
- +13 −13 actionpack/lib/action_view/base.rb
- +5 −4 actionpack/lib/action_view/helpers/date_helper.rb
- +3 −3 actionpack/lib/action_view/helpers/form_tag_helper.rb
- +36 −6 actionpack/lib/action_view/helpers/prototype_helper.rb
- +14 −14 actionpack/lib/action_view/helpers/url_helper.rb
- +2 −2 actionpack/lib/action_view/partials.rb
- +147 −42 actionpack/test/activerecord/render_partial_with_record_identification_test.rb
- +9 −0 actionpack/test/controller/new_render_test.rb
- +36 −0 actionpack/test/controller/record_identifier_test.rb
- +26 −4 actionpack/test/controller/resources_test.rb
- +7 −5 actionpack/test/controller/routing_test.rb
- +32 −0 actionpack/test/template/date_helper_test.rb
- +1 −1 activemodel/lib/active_model/validations/associated.rb
- +11 −11 activemodel/lib/active_model/validations/numericality.rb
- +4 −0 activerecord/CHANGELOG
- +7 −17 activerecord/README
- +6 −1 activerecord/lib/active_record/association_preload.rb
- +162 −138 activerecord/lib/active_record/associations.rb
- +2 −2 activerecord/lib/active_record/associations/association_proxy.rb
- +3 −3 activerecord/lib/active_record/attribute_methods.rb
- +88 −82 activerecord/lib/active_record/base.rb
- +6 −0 activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb
- +6 −2 activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb
- +2 −2 activerecord/lib/active_record/connection_adapters/abstract_adapter.rb
- +12 −12 activerecord/lib/active_record/connection_adapters/mysql_adapter.rb
- +9 −9 activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
- +1 −1 activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb
- +1 −1 activerecord/lib/active_record/fixtures.rb
- +13 −1 activerecord/lib/active_record/reflection.rb
- +4 −4 activerecord/lib/active_record/validations.rb
- +10 −9 activerecord/test/cases/adapter_test.rb
- +4 −0 activerecord/test/cases/associations/eager_test.rb
- +6 −0 activerecord/test/cases/associations_test.rb
- +35 −0 activerecord/test/cases/attribute_methods_test.rb
- +9 −0 activerecord/test/cases/finder_test.rb
- +18 −0 activerecord/test/cases/migration_test.rb
- +104 −107 activerecord/test/cases/schema_dumper_test.rb
- +4 −0 activerecord/test/models/developer.rb
- +2 −0 activerecord/test/models/post.rb
- +103 −129 activeresource/lib/active_resource/base.rb
- +8 −0 activesupport/CHANGELOG
- +5 −0 activesupport/lib/active_support/core_ext/date/calculations.rb
- +21 −22 activesupport/lib/active_support/core_ext/hash/indifferent_access.rb
- +14 −0 activesupport/lib/active_support/deprecation.rb
- +5 −0 activesupport/lib/active_support/inflector.rb
- +8 −0 activesupport/lib/active_support/time_with_zone.rb
- +7 −1 activesupport/lib/active_support/values/time_zone.rb
- +23 −0 activesupport/test/core_ext/date_ext_test.rb
- +9 −1 activesupport/test/core_ext/time_with_zone_test.rb
- +10 −0 activesupport/test/deprecation_test.rb
- +25 −0 activesupport/test/time_zone_test.rb
- +2 −0 railties/CHANGELOG
- +3 −0 railties/bin/dbconsole
- +5 −0 railties/helpers/application.rb
- +55 −0 railties/lib/commands/dbconsole.rb
- +5 −3 railties/lib/initializer.rb
- +8 −8 railties/lib/rails/plugin.rb
- +1 −1 railties/lib/rails_generator/generators/applications/app/app_generator.rb
- +3 −8 railties/lib/tasks/databases.rake

Oops, something went wrong.
0 comments on commit
d09a844