mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
eebb9ddf9b
I also attempted to fix other styleguide violations such as { a: :b } over {a: :b} and foo(b: 'bar') over foo( b: 'bar' ).
12 lines
217 B
Ruby
12 lines
217 B
Ruby
class Automobile
|
|
include ActiveModel::Validations
|
|
|
|
validate :validations
|
|
|
|
attr_accessor :make, :model
|
|
|
|
def validations
|
|
validates_presence_of :make
|
|
validates_length_of :model, within: 2..10
|
|
end
|
|
end
|