Sha256: 955838aa82fff6fe886f8abf337f6be8dfac203c4bec37df98d671c2ee1d5ab8
Contents?: true
Size: 351 Bytes
Versions: 65
Compression:
Stored size: 351 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 def initialize(css, map) @css = css @map = map end # Stringify prefixed CSS def to_s @css end end end
Version data entries
65 entries across 65 versions & 1 rubygems