1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activerecord/test/models/admin
Sergey Nartimov 9dfef5a46b define Active Record Store accessors in a module
Allow store accessors to be overrided like other attribute methods,
e.g.:

    class User < ActiveRecord::Base
      store :settings, accessors: [ :color, :homepage ], coder: JSON

      def color
        super || 'red'
      end
    end
2013-02-11 17:00:55 +03:00
..
account.rb
randomly_named_c1.rb Test fixtures with custom model and table names 2011-12-30 10:34:01 +01:00
user.rb define Active Record Store accessors in a module 2013-02-11 17:00:55 +03:00