Sha256: 51ff41c9ff61c1de1e7d61c0861043bb05c6c5bacb1321789287196ceebd95bc

Contents?: true

Size: 1.73 KB

Versions: 12

Compression:

Stored size: 1.73 KB

Contents

# frozen_string_literal: true

require "pathname"

module AutoprefixerRails
  # Register autoprefixer postprocessor in Sprockets and fix common issues
  class Sprockets
    def self.register_processor(processor)
      @processor = processor
    end

    # Sprockets 3 and 4 API
    def self.call(input)
      filename = input[:filename]
      source   = input[:data]
      run(filename, source)
    end

    # Add prefixes to `css`
    def self.run(filename, css)
      output = filename.chomp(File.extname(filename)) + ".css"
      result = @processor.process(css, from: filename, to: output)

      result.warnings.each do |warning|
        warn "autoprefixer: #{warning}"
      end

      result.css
    end

    # Register postprocessor in Sprockets depend on issues with other gems
    def self.install(env)
      if ::Sprockets::VERSION.to_f < 4
        env.register_postprocessor("text/css",
                                   ::AutoprefixerRails::Sprockets)
      else
        env.register_bundle_processor("text/css",
                                      ::AutoprefixerRails::Sprockets)
      end
    end

    # Register postprocessor in Sprockets depend on issues with other gems
    def self.uninstall(env)
      if ::Sprockets::VERSION.to_f < 4
        env.unregister_postprocessor("text/css",
                                     ::AutoprefixerRails::Sprockets)
      else
        env.unregister_bundle_processor("text/css",
                                        ::AutoprefixerRails::Sprockets)
      end
    end

    # Sprockets 2 API new and render
    def initialize(filename)
      @filename = filename
      @source   = yield
    end

    # Sprockets 2 API new and render
    def render(_, _)
      self.class.run(@filename, @source)
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
autoprefixer-rails-10.0.1.3 lib/autoprefixer-rails/sprockets.rb
autoprefixer-rails-10.0.1.2 lib/autoprefixer-rails/sprockets.rb
autoprefixer-rails-10.0.1.1 lib/autoprefixer-rails/sprockets.rb
autoprefixer-rails-10.0.1.0 lib/autoprefixer-rails/sprockets.rb
autoprefixer-rails-10.0.0.2 lib/autoprefixer-rails/sprockets.rb
autoprefixer-rails-10.0.0.1 lib/autoprefixer-rails/sprockets.rb
autoprefixer-rails-10.0.0 lib/autoprefixer-rails/sprockets.rb
autoprefixer-rails-9.8.6.5 lib/autoprefixer-rails/sprockets.rb
autoprefixer-rails-9.8.6.4 lib/autoprefixer-rails/sprockets.rb
autoprefixer-rails-9.8.6.3 lib/autoprefixer-rails/sprockets.rb
autoprefixer-rails-9.8.6.2 lib/autoprefixer-rails/sprockets.rb
autoprefixer-rails-9.8.6.1 lib/autoprefixer-rails/sprockets.rb