Module: Card::Set::Type::Css
- Extended by:
- Card::Set
- Defined in:
- tmpsets/set/mod014-machines/type/css.rb
Overview
-- encoding : utf-8 --
Defined Under Namespace
Modules: CssFormat, Format, HtmlFormat
Constant Summary
Constants included from Helpers
Helpers::SET_PATTERN_TEST_REGEXP
Class Method Summary collapse
Instance Method Summary collapse
- #clean_html? ⇒ Boolean
- #compress_css(input) ⇒ Object
- #compress_css? ⇒ Boolean
- #css_compression_error(error) ⇒ Object
- #diff_args ⇒ Object
Methods included from Card::Set
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
#method_missing, #num_set_parts, #pattern_code, #respond_to_missing?, #set_name_parts, #shortname, #underscore
Methods included from AdvancedApi
#attachment, #ensure_set, #stage_method
Methods included from Format
#before, #format, layout_method_name, #view, view_method_name, view_setting_method_name, wrapper_method_name
Methods included from Inheritance
#include_set, #include_set_formats
Methods included from Basket
#abstract_basket, #add_to_basket, #basket, #unshift_basket
Methods included from Card::Set::Trait
#card_accessor, #card_reader, #card_writer, #require_field
Methods included from Event::Api
Class Method Details
.source_location ⇒ Object
8 |
# File 'tmpsets/set/mod014-machines/type/css.rb', line 8 def self.source_location; "/Users/ethan/dev/decko/gem/card/mod/machines/set/type/css.rb"; end |
Instance Method Details
#clean_html? ⇒ Boolean
40 41 42 |
# File 'tmpsets/set/mod014-machines/type/css.rb', line 40 def clean_html? false end |
#compress_css(input) ⇒ Object
22 23 24 25 26 |
# File 'tmpsets/set/mod014-machines/type/css.rb', line 22 def compress_css input compress_css? ? SassC::Engine.new(input, style: :compressed).render : input rescue => e raise Card::Error, css_compression_error(e) end |
#compress_css? ⇒ Boolean
44 45 46 47 |
# File 'tmpsets/set/mod014-machines/type/css.rb', line 44 def compress_css? return true !Rails.env.development? end |
#css_compression_error(error) ⇒ Object
28 29 30 31 32 33 34 35 36 37 38 |
# File 'tmpsets/set/mod014-machines/type/css.rb', line 28 def css_compression_error error # scss is compiled in a view # If there is a scss syntax error we get the rescued view here # and the error that the rescued view is no valid css # To get the original error we have to refer to Card::Error.current if Card::Error.current Card::Error.current. else "Sass::SyntaxError (#{name}): #{error.}" end end |
#diff_args ⇒ Object
90 91 92 |
# File 'tmpsets/set/mod014-machines/type/css.rb', line 90 def diff_args { diff_format: :text } end |