Skip to content

Instantly share code, notes, and snippets.

@alondahari
Created May 21, 2014 10:21
Show Gist options
  • Save alondahari/67f2b6fa4ef61d03c450 to your computer and use it in GitHub Desktop.
Save alondahari/67f2b6fa4ef61d03c450 to your computer and use it in GitHub Desktop.
autoprefixer
require 'autoprefixer-rails'
on_stylesheet_saved do |file|
css = File.read(file)
File.open(file, 'w') do |io|
io << AutoprefixerRails.process(css)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment