Sha256: 3bb0befa95d80c4dd3b9e696137a5f49b3e8a3fbd4884e5ca7bb5070f43f2692
Contents?: true
Size: 458 Bytes
Versions: 174
Compression:
Stored size: 458 Bytes
Contents
module AutoprefixerRails # Container of prefixed CSS and source map with changes class Result # Prefixed CSS after Autoprefixer attr_reader :css # Source map of changes attr_reader :map # Warnings from Autoprefixer attr_reader :warnings def initialize(css, map, warnings) @warnings = warnings @css = css @map = map end # Stringify prefixed CSS def to_s @css end end end
Version data entries
174 entries across 159 versions & 4 rubygems