Skip to content

Instantly share code, notes, and snippets.

@komagata
Created July 10, 2012 13:41
Show Gist options
  • Save komagata/3083307 to your computer and use it in GitHub Desktop.
Save komagata/3083307 to your computer and use it in GitHub Desktop.
sinatra outer func
% cat foo.rb
def foo
'foo'
end
% cat app.rb
require 'rubygems'
require 'sinatra'
require './foo'
get '/' do
'hello ' + foo
end
% ruby app.rb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment