Module: Card::Set::Type::JavaScript
- Extended by:
- Card::Set
- Defined in:
- tmpsets/set/mod011-machines/type/java_script.rb
Constant Summary
Constants included from Format
Instance Method Summary collapse
Methods included from I18nScope
Methods included from Loader
#clean_empty_module_from_hash, #clean_empty_modules, #extended, #process_base_modules, #register_set
Methods included from Helpers
#abstract_set?, #all_set?, #num_set_parts, #shortname
Methods included from AdvancedApi
#attachment, #ensure_set, #stage_method
Methods included from Format
#all_set_format_mod!, #before, #define_on_format, #format, #register_set_format, #view, #view_for_override
Methods included from Inheritance
#include_set, #include_set_formats
Methods included from Basket
#abstract_basket, #add_to_basket, #basket
Methods included from Card::Set::Trait
#card_accessor, #card_reader, #card_writer
Methods included from Event::Api
Instance Method Details
#compress_js(input) ⇒ Object
18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'tmpsets/set/mod011-machines/type/java_script.rb', line 18 def compress_js input Uglifier.compile(input) rescue => e # CoffeeScript is compiled in a view # If there is a CoffeeScript syntax error we get the rescued view here # and the error that the rescued view is no valid Javascript # To get the original error we have to refer to Card::Error.current msg = if Card::Error.current Card::Error.current. else "CoffeeScript::SyntaxError (#{name}): #{e.}" end raise Card::Error, msg end |