Skip to content

Instantly share code, notes, and snippets.

@jcasts
Created February 27, 2013 00:05
Show Gist options
  • Save jcasts/5043582 to your computer and use it in GitHub Desktop.
Save jcasts/5043582 to your computer and use it in GitHub Desktop.
Gin Hello World example.
require 'gin'
class HelloWorld < Gin::Controller
def index; "Hello World!"; end
end
class MyApp < Gin::App
mount HelloWorld, "/"
end
run MyApp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment