1. 29 6月, 2016 7 次提交
  2. 28 6月, 2016 14 次提交
  3. 27 6月, 2016 8 次提交
  4. 26 6月, 2016 8 次提交
  5. 25 6月, 2016 3 次提交
    • R
      Tiny documentation fixes [ci skip] · eb1c0e22
      Robin Dupret 提交于
      Fix a tiny typo and vertical-align some return results in the
      ActiveModel::Errors documentation.
      eb1c0e22
    • R
      Define `Pathname#as_json` · abbf00e5
      Ryunosuke Sato 提交于
      When the Pathname object is converted as JSON,
      it should be a string that means itself.
      
      Expected:
      ```
      >> Pathname.new('/path/to/somewhere.txt').as_json
      "/path/to/somewhere.txt"
      ```
      
      Actual:
      ```
      >> Pathname.new('/path/to/somewhere.txt').as_json
      {"path"=>"/path/to/somewhere.txt"}
      ```
      abbf00e5
    • R
      Remove unnecessary `assert_valid_default` · 59c218ea
      Ryuta Kamizono 提交于
      This was added at c7c3f73f but it never raised because MySQL cannot
      create text/blob columns with a default value.
      59c218ea