mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
26 lines
336 B
Ruby
26 lines
336 B
Ruby
require "active_model"
|
|
|
|
class Customer < Struct.new(:name, :id)
|
|
extend ActiveModel::Naming
|
|
|
|
def to_param
|
|
id.to_s
|
|
end
|
|
end
|
|
|
|
class BadCustomer < Customer
|
|
end
|
|
|
|
class GoodCustomer < Customer
|
|
end
|
|
|
|
module Quiz
|
|
class Question < Struct.new(:name, :id)
|
|
extend ActiveModel::Naming
|
|
|
|
def to_param
|
|
id.to_s
|
|
end
|
|
end
|
|
end
|