Skip to content

Instantly share code, notes, and snippets.

@k2052
Created June 8, 2011 01:56
Show Gist options
  • Save k2052/1013630 to your computer and use it in GitHub Desktop.
Save k2052/1013630 to your computer and use it in GitHub Desktop.
TestingRoutes.controllers :main do
before(:index) do
@test = 'cow'
puts 'before filter hit?'
end
get :index, :map => "/example" do
puts @test
"Hello world!"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment