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) ⇒ Result

Returns a new instance of Result.



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

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

Instance Attribute Details

#cssObject (readonly)

Prefixed CSS after Autoprefixer



5
6
7
# File 'lib/autoprefixer-rails/result.rb', line 5

def css
  @css
end

#mapObject (readonly)

Source map of changes



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

def map
  @map
end

Instance Method Details

#to_sObject

Stringify prefixed CSS



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

def to_s
  @css
end