Skip to content

Instantly share code, notes, and snippets.

@elia

elia/sinatra.rb Secret

Created September 5, 2014 12:49
Show Gist options
  • Save elia/b05a756aca8b8e6c02b3 to your computer and use it in GitHub Desktop.
Save elia/b05a756aca8b8e6c02b3 to your computer and use it in GitHub Desktop.
require 'opal'
require 'sinatra'
opal = Opal::Server.new {|s|
s.append_path 'app'
s.main = 'application'
}
map '/__opal_source_maps__' do
run opal.source_maps
end
map '/assets' do
run opal.sprockets
end
get '/' do
<<-EOS
<!doctype html>
<html>
<head>
<script src="/assets/application.js"></script>
</head>
</html>
EOS
end
run Sinatra::Application
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment