1. 11 11月, 2013 19 次提交
  2. 10 11月, 2013 18 次提交
  3. 09 11月, 2013 3 次提交
    • Y
      Merge pull request #12760 from pseidemann/master · 675304b4
      Yves Senn 提交于
      fix simple_format escapes own output when sanitize is set to true
      675304b4
    • 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
      Merge pull request #12816 from gaurish/skip-static-test · 3cc64df9
      Rafael Mendonça França 提交于
      Skip test which is broken on jruby
      3cc64df9