mirror of
https://github.com/drapergem/draper
synced 2023-03-27 23:21:17 -04:00
59 lines
805 B
Ruby
59 lines
805 B
Ruby
class Product < ActiveRecord::Base
|
|
include Draper::ModelSupport
|
|
|
|
def self.first
|
|
@@first ||= Product.new
|
|
end
|
|
|
|
def self.last
|
|
@@last ||= Product.new
|
|
end
|
|
|
|
def self.all
|
|
[Product.new, Product.new]
|
|
end
|
|
|
|
def self.scoped
|
|
[Product.new]
|
|
end
|
|
|
|
def self.model_name
|
|
"Product"
|
|
end
|
|
|
|
def self.find(id)
|
|
return Product.new
|
|
end
|
|
|
|
def self.sample_class_method
|
|
"sample class method"
|
|
end
|
|
|
|
def hello_world
|
|
"Hello, World"
|
|
end
|
|
|
|
def goodnight_moon
|
|
"Goodnight, Moon"
|
|
end
|
|
|
|
def title
|
|
"Sample Title"
|
|
end
|
|
|
|
def block
|
|
yield
|
|
end
|
|
|
|
def similar_products
|
|
result = [Product.new, Product.new]
|
|
def result.proxy_reflection
|
|
OpenStruct.new(:klass => Product)
|
|
end
|
|
result
|
|
end
|
|
|
|
def previous_version
|
|
Product.new
|
|
end
|
|
end
|