aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/store_test.rb
Commit message (Expand)AuthorAgeFilesLines
* Add saved changes helpers for store accessorsVladimir Dementyev2019-03-251-0/+11
* Add dirty methods for store accessorspalkan2019-03-251-0/+57
* Update prefix and allow suffix options for store accessorsYukio Mizuta2018-06-121-0/+34
* Add custom prefix to ActiveRecord::Store accessorsTan Huynh2018-03-231-1/+21
* Use assert_predicate and assert_not_predicateDaniel Colson2018-01-251-3/+3
* Use frozen-string-literal in ActiveRecordKir Shatrov2017-07-191-0/+2
* Revert "Merge pull request #29540 from kirs/rubocop-frozen-string"Matthew Draper2017-07-021-1/+0
* Enforce frozen string in RubocopKir Shatrov2017-07-011-0/+1
* modernizes hash syntax in activerecordXavier Noria2016-08-061-1/+1
* applies new string literal convention in activerecord/testXavier Noria2016-08-061-50/+50
* Test parent local_stored_attributes isn't modifiedDavid Genord II2016-02-161-0/+1
* Typos in AR testsAkira Matsuda2016-02-041-1/+1
* Introduce an Attribute object to handle the type casting danceSean Griffin2014-06-131-1/+0
* Don't change values in `@raw_attributes` during serializationSean Griffin2014-06-011-14/+0
* Fix inheritance of stored_attributes (fixes #14672)Jessica Yao2014-05-141-0/+16
* AestheticRafael Mendonça França2014-01-291-6/+7
* Fixing issue with activerecord serialization not being able to dump a record ...Mauricio Linhares2014-01-291-0/+23
* Fix: ActiveRecord::Store TypeError conversion when using YAML coderThales Oliveira2014-01-061-0/+4
* `stored_attributes` need to be specific to a subclass.Yves Senn2013-10-251-0/+12
* Remove unnecessary testcase for instance level stored_attributes.kennyj2013-06-021-5/+0
* define Active Record Store accessors in a moduleSergey Nartimov2013-02-111-0/+12
* Revert "Merge pull request #8989 from robertomiranda/use-rails-4-find-by"Guillermo Iguaran2013-01-181-1/+1
* User Rails 4 find_byrobertomiranda2013-01-181-1/+1
* Namespace HashWithIndifferentAccessAkira Matsuda2013-01-071-4/+3
* fix warning: method redefinedkennyj2012-10-021-1/+1
* refactor store_accessorMatt Jones2012-09-131-1/+13
* correctly flag changed attributes in AR::Store, combine multiple calls to sto...Matt Jones2012-09-051-2/+8
* Use instance_accessor: false instead of instance_writer.kennyj2012-08-211-3/+2
* Added *instance_writer: false* for stored/serialized attributes.kennyj2012-07-071-0/+7
* Don't mark the store as changed if an attribute isn't changed.kennyj2012-07-031-0/+5
* Remember the stored attributes in a config attribute.Joost Baaij2012-06-181-1/+5
* Fix backward compatibility with stored Hash values. Wrap coders to convert se...Jeremy Kemper2012-05-301-13/+16
* Convert Hash to HashWithIndifferentAccess in ActiveRecord::Store.Andrey Voronkov2012-05-221-0/+34
* Custom coders support for ActiveRecord::Store. JSON, YAML, Marshal can be use...Andrey Voronkov2012-05-091-1/+35
* Allow store to be a not null column.Jeremy Walker2012-02-021-2/+11
* Fix typoJon Leighton2011-11-301-2/+2
* Merge branch 'master' of github.com:rails/railsDavid Heinemeier Hansson2011-10-251-3/+3
|\
| * Rails 4 is just around the corner. Stuck with 1.8 until then.Jeremy Kemper2011-10-131-3/+3
* | Fix that changing a store should mark the store attribute as changedDavid Heinemeier Hansson2011-10-251-0/+5
|/
* Added ActiveRecord::Base.store for declaring simple single-column key/value s...David Heinemeier Hansson2011-10-131-0/+29