1. 11 11月, 2013 9 次提交
  2. 10 11月, 2013 10 次提交
  3. 09 11月, 2013 3 次提交
    • 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
    • R
      Mark broken test as pending · 5741a8aa
      Rafael Mendonça França 提交于
      This will avoid the broken window effect in our test suite
      5741a8aa
    • R
      Remove more skip · 78bac468
      Rafael Mendonça França 提交于
      78bac468
  4. 08 11月, 2013 2 次提交
  5. 07 11月, 2013 3 次提交
    • J
      revised changelog comment to be less than 80 chars · 746d2860
      Jason Ayre 提交于
      746d2860
    • 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
  6. 06 11月, 2013 5 次提交
  7. 05 11月, 2013 7 次提交
  8. 04 11月, 2013 1 次提交