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

Class Method Summary collapse

Instance Method Summary collapse

Methods included from I18nScope

#mod_name, #scope

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, #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

#event

Class Method Details

.source_locationObject



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

Returns:

  • (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

Returns:

  • (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.message
  else
    "Sass::SyntaxError (#{name}): #{error.message}"
  end
end

#diff_argsObject



90
91
92
# File 'tmpsets/set/mod014-machines/type/css.rb', line 90

def diff_args
  { diff_format: :text }
end