aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/type.rb
Commit message (Collapse)AuthorAgeFilesLines
* Remove no-op options being passed in AM type registrationsSean Griffin2015-09-211-11/+11
| | | | | | The `override` option is only a thing for Active Record registrations. We should figure out how to make this properly error out without doing anything too weird to the code.
* `TypeMap` and `HashLookupTypeMap` shouldn't be in Active ModelSean Griffin2015-09-211-2/+0
| | | | | | These are used by the connection adapters to convert SQL type information into the appropriate type object, and makes no sense outside of the context of Active Record
* Move ActiveRecord::Type to ActiveModelKir Shatrov2015-09-211-0/+59
The first step of bringing typecasting to ActiveModel