1. 10 11月, 2013 1 次提交
  2. 09 11月, 2013 1 次提交
    • Y
      log bind variables after they were type casted. · 97f0d9a0
      Yves Senn 提交于
      The log output used to be confusing in situation where type casting has
      "unexpected" effects. For example when finding records with a `String`.
      
      BEFORE:
      
      irb(main):002:0> Event.find("im-no-integer")
      D, [2013-11-09T11:10:28.998857 #1706] DEBUG -- :   Event Load (4.5ms)  SELECT "events".* FROM "events" WHERE "events"."id" = $1 LIMIT 1  [["id", "im-no-integer"]]
      
      AFTER:
      
      irb(main):002:0> Event.find("im-no-integer")
      D, [2013-11-09T11:10:28.998857 #1706] DEBUG -- :   Event Load (4.5ms)  SELECT "events".* FROM "events" WHERE "events"."id" = $1 LIMIT 1  [["id", 0]]
      97f0d9a0
  3. 07 11月, 2013 2 次提交
    • J
      83689bec
    • A
      Stop using method missing for singleton delegation. · 5584ddc4
      Aaron Patterson 提交于
      This saved about 46 array allocations per request on an extremely simple
      application.  The delegation happened in the notification subsystem
      which is a hotspot, so this should result in even more savings with
      larger apps.
      
      Squashed commit of the following:
      
      commit 41eef0d1479526f7de25fd4391d98e61c126d9f5
      Author: Aaron Patterson <aaron.patterson@gmail.com>
      Date:   Wed Nov 6 16:32:31 2013 -0800
      
          speed up notifications
      
      commit 586b4a18656f66fb2c518fb8e8fee66a016e8ae6
      Author: Aaron Patterson <aaron.patterson@gmail.com>
      Date:   Wed Nov 6 16:31:05 2013 -0800
      
          speed up runtime registry methods
      
      commit b67d074cb4314df9a88438f785868cef77e583d7
      Author: Aaron Patterson <aaron.patterson@gmail.com>
      Date:   Wed Nov 6 16:28:12 2013 -0800
      
          change method name and make it public
      5584ddc4
  4. 06 11月, 2013 5 次提交
  5. 05 11月, 2013 4 次提交
  6. 04 11月, 2013 5 次提交
  7. 03 11月, 2013 9 次提交
  8. 02 11月, 2013 1 次提交
  9. 01 11月, 2013 1 次提交
  10. 31 10月, 2013 2 次提交
  11. 30 10月, 2013 1 次提交
  12. 29 10月, 2013 1 次提交
  13. 28 10月, 2013 2 次提交
  14. 27 10月, 2013 1 次提交
    • J
      added schema_migrations_table_name to ActiveRecord::Base in order that the... · 26638f0a
      Jerad Phelps 提交于
      added schema_migrations_table_name to ActiveRecord::Base in order that the name of the schema migrations table can be configured.
      
      consolidated test_schema_migrations_table_name tests
      
      Added changelog entry
      
      edited changelog
      
      removed commented lines
      
      removed reader
      
      ensure the schema migrations table is reset at end of test
      
      added entry to configuration guide
      
      guides typo and changelog order
      26638f0a
  15. 26 10月, 2013 1 次提交
  16. 25 10月, 2013 3 次提交