mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
13 lines
248 B
Ruby
13 lines
248 B
Ruby
# frozen_string_literal: true
|
|
|
|
|
|
require "models/traffic_light"
|
|
|
|
class EncryptedTrafficLight < TrafficLight
|
|
encrypts :state
|
|
end
|
|
|
|
class EncryptedTrafficLightWithStoreState < TrafficLight
|
|
store :state, accessors: %i[ color ]
|
|
encrypts :state
|
|
end
|