Skip to content

Instantly share code, notes, and snippets.

@hmadison
Created October 26, 2015 14:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hmadison/472b086b7e36fb14c9b2 to your computer and use it in GitHub Desktop.
Save hmadison/472b086b7e36fb14c9b2 to your computer and use it in GitHub Desktop.
require 'bundler/setup'
require 'rom'
require 'rom-roda'
require 'rom-sql'
class AppCore < Roda
plugin :rom, default: {
setup: [:sql, 'sqlite::memory'],
plugins: [:auto_registration]
},
load_path: 'models'
route do |r|
# GET / request
r.root do
'hi'
end
end
end
run AppCore.freeze.app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment