travis-api/lib/travis/api/app/helpers/flash.rb
2012-10-09 15:17:10 +02:00

12 lines
149 B
Ruby

require 'travis/api/app'
class Travis::Api::App
module Helpers
module Flash
def flash
@flash ||= []
end
end
end
end