aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/type
Commit message (Expand)AuthorAgeFilesLines
* Ensure casting by decimal attribute when queryingRyuta Kamizono2018-11-121-0/+4
* Add new exception message to datetime from hash castwilddima2018-10-211-3/+3
* Add `Style/RedundantFreeze` to remove redudant `.freeze`Yasuo Honda2018-09-291-2/+2
* Fix non_numeric_string?Yoshiyuki Kinjo2018-09-071-1/+1
* Faster time_value.rbschneems2018-08-291-1/+7
* Ensure casting by boolean attribute when queryingRyuta Kamizono2018-05-291-0/+4
* Make force equality checking more strictly not to allow serialized attributeRyuta Kamizono2018-05-251-0/+4
* Fix user_input_in_time_zone to coerce non valid string into nilAnnie-Claude Côté2018-05-161-0/+2
* Add missing require for string to timezone conversionAnnie-Claude Côté2018-05-161-0/+1
* Normalize date component when writing to time columnsAndrew White2018-03-111-5/+1
* Apply time column precision on assignmentAndrew White2018-03-111-1/+1
* Ruby 2.4: take advantage of String#unpack1Jeremy Daer2018-03-011-1/+1
* PostgreSQL: Allow BC dates like datetime consistentlyRyuta Kamizono2018-02-231-1/+1
* Rails 6 requires Ruby 2.3+Jeremy Daer2018-02-172-16/+3
* [Active Model] require => require_relativeAkira Matsuda2017-10-213-6/+6
* [ci skip] Postgres --> PostgreSQLRyuta Kamizono2017-08-081-1/+1
* Allow multiparameter assigned attributes to be used with `text_field`Sean Griffin2017-07-172-0/+8
* Use frozen string literal in activemodel/Kir Shatrov2017-07-1618-0/+36
* Fix `ActiveModel::Type::DateTime#serialize`Lisa Ugray2017-07-051-0/+4
* [Active Model] require => require_relativeAkira Matsuda2017-07-013-6/+6
* Don't freeze input stringsMatthew Draper2017-04-121-1/+6
* Merge pull request #25296 from kamipo/use_inspect_for_type_cast_for_schemaRafael França2017-02-282-2/+2
|\
| * Use `inspect` in `type_cast_for_schema` for date/time and decimal valuesRyuta Kamizono2016-12-112-2/+2
* | Match the behavior of bigdecimal after https://github.com/ruby/bigdecimal/pul...Rafael Mendonça França2017-02-241-1/+5
* | Fix invalid string Decimal casting under ruby 2.4John Hawthorn2017-02-241-1/+3
* | Indicate units of 'limit' in 'Integer' error message.Corey Farwell2017-02-151-1/+1
* | Make BigDecimal casting consistent on different platformsKir Shatrov2017-01-221-1/+2
* | Revert "Merge pull request #27528 from kamipo/extract_casted_booleans"Kasper Timm Hansen2017-01-011-12/+4
* | Extract `casted_true`/`casted_false` for `Type::ImmutableString`Ryuta Kamizono2017-01-011-4/+12
* | Describe what we are protectingAkira Matsuda2016-12-232-0/+6
* | Change ActiveModel::Type::Helpers to :nodoc: [ci skip]MSP-Greg2016-12-164-8/+8
|/
* Merge pull request #26696 from iainbeeston/only-ruby-types-in-activemodelSean Griffin2016-12-083-37/+0
|\
| * Moved database-specific ActiveModel types into ActiveRecordIain Beeston2016-10-143-37/+0
* | Fix `apply_seconds_precision` not to be affected by `mathn`Ryuta Kamizono2016-11-271-1/+1
* | Add more rubocop rules about whitespacesRafael Mendonça França2016-10-291-1/+1
|/
* Merge pull request #24571 from raimo/patch-1Sean Griffin2016-10-041-0/+9
|\
| * Print the proper ::Float::INFINITY value when used as a default valueRaimo Tuisku2016-05-231-0/+9
* | Fix broken comments indentation caused by rubocop auto-correct [ci skip]Ryuta Kamizono2016-09-143-6/+6
* | Fix Remaining Case-In-Assignment Statement FormattingAlex Kitchens2016-09-061-12/+13
* | apply case-in-assignment patternXavier Noria2016-09-022-11/+13
* | RuboCop is 100% green :tada:Xavier Noria2016-09-022-2/+2
* | code gardening: removes redundant selfsXavier Noria2016-08-081-1/+1
* | applies remaining conventions across the projectXavier Noria2016-08-061-9/+9
* | normalizes indentation and whitespace across the projectXavier Noria2016-08-0615-182/+182
* | applies new string literal convention in activemodel/libXavier Noria2016-08-068-12/+12
* | systematic revision of =~ usage in AMoXavier Noria2016-07-241-1/+1
* | [ci skip] add class level documentation to ActiveModel::Type::BooleanDavid Elliott2016-07-111-2/+13
* | Fix `Type::Date#serialize` to return a date object correctlyRyuta Kamizono2016-06-161-0/+4
* | Change RangeError to a more specific ActiveModel::RangeErrorChristian Blais2016-05-031-1/+1
|/
* Apply scale before precision when coercing floats to decimalSean Griffin2016-03-241-2/+10