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(*uri) ⇒ CSS

Returns a new instance of CSS.



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

def initialize(*uri)
  @parser = DryCss::Parser.new
  uri.each do |u|
    @parser.load_uri!(u)
  end
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



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

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

#sorted(scan) ⇒ Object



15
16
17
# File 'lib/dry_css/css.rb', line 15

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