Sha256: 68133be1f2dafed92a442004893f7ada2b59689021118b6b205f69db7347a925
Contents?: true
Size: 440 Bytes
Versions: 7
Compression:
Stored size: 440 Bytes
Contents
module AutoprefixerRails class Sprockets self.singleton_class.send(:alias_method, :call_original, :call) def self.call(input) filename = input[:name] # Disable autoprefixer for the graphiql-rails gem's assets because it # breaks some of the API tests when the '-webkit' prefixes are applied to # its CSS. return if filename.match(/^graphiql\/.*/) self.call_original(input) end end end
Version data entries
7 entries across 7 versions & 2 rubygems