Sha256: f5323069070b87860d7977908b61a3494c074a5e31b6c30626c34aea86124f8a
Contents?: true
Size: 229 Bytes
Versions: 21
Compression:
Stored size: 229 Bytes
Contents
require 'bundler' Bundler.require desc "Build to application.js" task :build do File.open("application.js", "w+") do |out| env = Opal::Environment.new env.append_path "app" out << env["application"].to_s end end
Version data entries
21 entries across 21 versions & 1 rubygems