mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
19 lines
250 B
Ruby
19 lines
250 B
Ruby
class Customer < Struct.new(:name, :id)
|
|
def to_param
|
|
id.to_s
|
|
end
|
|
end
|
|
|
|
class BadCustomer < Customer
|
|
end
|
|
|
|
class GoodCustomer < Customer
|
|
end
|
|
|
|
module Quiz
|
|
class Question < Struct.new(:name, :id)
|
|
def to_param
|
|
id.to_s
|
|
end
|
|
end
|
|
end
|