Class: DryCss::CSS

Inherits:
Object
  • Object
show all
Defined in:
lib/dry_css/css.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(*uris) ⇒ CSS

Returns a new instance of CSS.



4
5
6
# File 'lib/dry_css/css.rb', line 4

def initialize(*uris)
  @parser = load_uris(uris)
end

Instance Attribute Details

#parserObject (readonly)

Returns the value of attribute parser.



3
4
5
# File 'lib/dry_css/css.rb', line 3

def parser
  @parser
end

Instance Method Details

#colorsObject



8
9
10
# File 'lib/dry_css/css.rb', line 8

def colors
  @colors ||= scan_for(CssParser::RE_COLOUR)
end

#sorted(scan) ⇒ Object



12
13
14
# File 'lib/dry_css/css.rb', line 12

def sorted(scan)
  scan.sort_by{|k,v| v }.reverse
end