Sha256: 350fc8a06ece0a60beb0e190c88460df3231a9c031150f274df875e09ec39ffd
Contents?: true
Size: 961 Bytes
Versions: 10
Compression:
Stored size: 961 Bytes
Contents
# -*- encoding : utf-8 -*- require 'coffee-script' require 'uglifier' require_dependency 'card/machine' require_dependency 'card/machine_input' include Machine include MachineInput def compile_coffee script ::CoffeeScript.compile script rescue =>e e end machine_input do Uglifier.compile( compile_coffee format(:js)._render_raw ) end store_machine_output :filetype => "js" def clean_html? false end format do def chunk_list #turn off autodetection of uri's :inclusion_only end end format :html do view :editor, :mod=>PlainText::HtmlFormat view :content_changes do |args| %{ <pre>#{super(args)}</pre> } end view :core do |args| js = card.compile_coffee _render_raw highlighted_js = ::CodeRay.scan( js, :js ).div process_content highlighted_js end end format do view :core do |args| process_content card.compile_coffee(_render_raw) end end def diff_args {:format=>:text} end
Version data entries
10 entries across 10 versions & 1 rubygems