module MirrorMirror::DirectiveNodePatch

Public Class Methods

included(base) click to toggle source
# File lib/mirror-mirror/sass_patch.rb, line 50
def self.included(base)
  base.send(:attr_accessor, :group_end)
end

Public Instance Methods

bubbles?() click to toggle source
# File lib/mirror-mirror/sass_patch.rb, line 54
def bubbles?
  if resolved_value
    resolved_value.start_with?("@-mirror-mirror")
  else
    value.first.start_with?("@-mirror-mirror")
  end
end