12 lines
121 B
Ruby
Raw Normal View History

module Merged
module CardHelper
def first
Card.first
end
def last
Card.last
end
end
end