first step of switch to opal

This commit is contained in:
Torsten Ruger
2015-07-14 14:08:28 +03:00
parent 758ab419d5
commit 9af1937a71
9 changed files with 47 additions and 169 deletions

View File

@ -1,4 +1,11 @@
# Run via rack server
require 'bundler/setup'
require 'volt/server'
run Volt::Server.new.app
require 'bundler'
Bundler.require
require "opal"
Opal.use_gem("salama")
run Opal::Server.new { |s|
s.main = 'debugger'
s.append_path 'lib'
s.debug = true
}