1
0
Fork 0
mirror of https://github.com/drapergem/draper synced 2023-03-27 23:21:17 -04:00
draper/performance/models.rb
Vasiliy Ermolovich 24ba88eb1c add new lines 😓
2012-04-25 23:12:30 +03:00

20 lines
335 B
Ruby

require "./performance/active_record"
class Product < ActiveRecord::Base
def self.sample_class_method
"sample class method"
end
def hello_world
"Hello, World"
end
end
class FastProduct < ActiveRecord::Base
def self.sample_class_method
"sample class method"
end
def hello_world
"Hello, World"
end
end