Skip to content

Instantly share code, notes, and snippets.

@cj
Last active August 29, 2015 14:25
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 cj/7d367dd624b09cd7c96f to your computer and use it in GitHub Desktop.
Save cj/7d367dd624b09cd7c96f to your computer and use it in GitHub Desktop.
require 'roda'
require 'wedge'
class App < Roda
plugin :assets, {
path: Dir.pwd, css_dir: '', js_dir: '', group_subdirs: false,
js_opts: { builder: Wedge::Opal::Server.new },
js: {
default: [
'wedge/wedge.rb'
],
}
}
end
run App
gem 'roda', '2.5.0'
gem 'wedge', github: 'wedge/wedgeio'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment