Skip to content

Instantly share code, notes, and snippets.

@pepe
Forked from wycats/omg.rb
Created March 18, 2010 08:44
Show Gist options
  • Save pepe/336174 to your computer and use it in GitHub Desktop.
Save pepe/336174 to your computer and use it in GitHub Desktop.
require ".bundle/environment"
Bundler.setup
require "action_controller/railtie"
class FooController < ActionController::Base
def bar
self.response_body = "HELLO"
end
end
class MyApp < Rails::Application
config.session_store :disabled
routes.draw do
match "/foo" => "foo#bar"
end
end
run MyApp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment