merged/test/helpers/card_helper.rb

12 lines
121 B
Ruby

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