1. 18 2月, 2015 2 次提交
    • S
      Rm `Type#type_cast` · ad127d88
      Sean Griffin 提交于
      This helper no longer makes sense as a separate method. Instead I'll
      just have `deserialize` call `cast` by default. This led to a random
      infinite loop in the `JSON` pg type, when it called `super` from
      `deserialize`. Not really a great way to fix that other than not calling
      super, or continuing to have the separate method, which makes the public
      API differ from what we say it is.
      ad127d88
    • S
      `type_cast_for_database` -> `serialize` · 1455c4c2
      Sean Griffin 提交于
      1455c4c2
  2. 11 7月, 2014 1 次提交
  3. 24 6月, 2014 1 次提交
    • Y
      add missing `:nodoc:` for recent refactorings. [ci skip] · b27e856d
      Yves Senn 提交于
      Adding `# :nodoc:` to the parent `class` / `module` is not going
      to ignore nested classes or modules.
      
      There is a modifier `# :nodoc: all` but sadly the containing class
      or module will continue to be in the docs.
      
      /cc @sgrif
      b27e856d
  4. 03 6月, 2014 1 次提交
  5. 02 6月, 2014 1 次提交
  6. 21 5月, 2014 1 次提交
    • S
      Move PG OID types to their own files · 30bf07d1
      Sean Griffin 提交于
      As we promote these classes to first class concepts, these classes are
      starting to gain enough behavior to warrant being moved into their own
      files. Many of them will become quite large as we move additional
      behavior to the type objects.
      30bf07d1