Sha256: 2cc4e689d87d42c6d32f32ed0a298b4438e8e5889e3ceacbe43194aa471673ba

Contents?: true

Size: 1.73 KB

Versions: 16

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

16 entries across 16 versions & 2 rubygems

Version Path
autoprefixer-rails-10.4.19.0 lib/autoprefixer-rails/sprockets.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/autoprefixer-rails-10.4.16.0/lib/autoprefixer-rails/sprockets.rb
autoprefixer-rails-10.4.16.0 lib/autoprefixer-rails/sprockets.rb
autoprefixer-rails-10.4.13.0 lib/autoprefixer-rails/sprockets.rb
autoprefixer-rails-10.4.7.0 lib/autoprefixer-rails/sprockets.rb
autoprefixer-rails-10.4.2.0 lib/autoprefixer-rails/sprockets.rb
autoprefixer-rails-10.4.0.0 lib/autoprefixer-rails/sprockets.rb
autoprefixer-rails-10.3.3.0 lib/autoprefixer-rails/sprockets.rb
autoprefixer-rails-10.3.1.0 lib/autoprefixer-rails/sprockets.rb
autoprefixer-rails-10.2.5.1 lib/autoprefixer-rails/sprockets.rb
autoprefixer-rails-10.2.5.0 lib/autoprefixer-rails/sprockets.rb
autoprefixer-rails-10.2.4.0 lib/autoprefixer-rails/sprockets.rb
autoprefixer-rails-10.2.0.0 lib/autoprefixer-rails/sprockets.rb
autoprefixer-rails-10.1.0.0 lib/autoprefixer-rails/sprockets.rb
autoprefixer-rails-10.0.3.0 lib/autoprefixer-rails/sprockets.rb
autoprefixer-rails-10.0.2.0 lib/autoprefixer-rails/sprockets.rb