Skip to content

Instantly share code, notes, and snippets.

@abcnever
Created June 18, 2014 00:43
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 abcnever/e41b79ace313d7b325c3 to your computer and use it in GitHub Desktop.
Save abcnever/e41b79ace313d7b325c3 to your computer and use it in GitHub Desktop.
basic sinatra server for cordova app
require 'sinatra'
set :public_dir, File.dirname(__FILE__) + '/www'
get '/*' do
send_file File.expand_path('index.html', settings.public_dir)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment