Class: AutoprefixerRails::Result

Inherits:
Object
  • Object
show all
Defined in:
lib/autoprefixer-rails/result.rb

Overview

Container of prefixed CSS and source map with changes

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(css, map, warnings) ⇒ Result

Returns a new instance of Result.



15
16
17
18
19
# File 'lib/autoprefixer-rails/result.rb', line 15

def initialize(css, map, warnings)
  @warnings = warnings
  @css      = css
  @map      = map
end

Instance Attribute Details

#cssObject (readonly)

Prefixed CSS after Autoprefixer



7
8
9
# File 'lib/autoprefixer-rails/result.rb', line 7

def css
  @css
end

#mapObject (readonly)

Source map of changes



10
11
12
# File 'lib/autoprefixer-rails/result.rb', line 10

def map
  @map
end

#warningsObject (readonly)

Warnings from Autoprefixer



13
14
15
# File 'lib/autoprefixer-rails/result.rb', line 13

def warnings
  @warnings
end

Instance Method Details

#to_sObject

Stringify prefixed CSS



22
23
24
# File 'lib/autoprefixer-rails/result.rb', line 22

def to_s
  @css
end