Sha256: a5ad10d9c0e3658fa3c1120603de33d91c8ad818873a7f4c5620092f0bf9edc5
Contents?: true
Size: 401 Bytes
Versions: 29
Compression:
Stored size: 401 Bytes
Contents
require 'sprockets' require 'opal/sprockets/processor' require 'opal/sprockets/erb' module Opal class Environment < ::Sprockets::Environment def initialize *args super append_opal_paths end def use_gem gem_name Opal.use_gem gem_name append_opal_paths end private def append_opal_paths Opal.paths.each { |p| append_path p } end end end
Version data entries
29 entries across 29 versions & 2 rubygems