• Stars
    star
    1,217
  • Rank 36,959 (Top 0.8 %)
  • Language
    Ruby
  • License
    MIT License
  • Created about 11 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Autoprefixer for Ruby and Ruby on Rails

Autoprefixer Rails Build Status

Autoprefixer is a tool to parse CSS and add vendor prefixes to CSS rules using values from the Can I Use database. This gem provides Ruby and Ruby on Rails integration with this JavaScript tool.

Sponsored by Evil Martians

Differences

The best way to use Autoprefixer is with webpack or Gulp.

Autoprefixer Rails doesn’t support these Autoprefixer features:

  • Browsers in package.json.
  • Custom browsers usage statistics.

Usage

Windows users should install Node.js. Autoprefixer Rails doesn’t work with old JScript in Windows.

Autoprefixer Rails uses ExecJS that will use the best available JavaScript runtime. Currently this gem is tested to work with Node.js version 10 and up and with mini_racer, but will not work with therubyracer.

Ruby on Rails

Add the autoprefixer-rails gem to your Gemfile:

gem "autoprefixer-rails"

Clear your cache:

rake tmp:clear

Write your CSS (Sass, Stylus, LESS) rules without vendor prefixes and Autoprefixer will apply prefixes for you. For example in app/assets/stylesheet/foobar.sass:

:fullscreen a
  display: flex

Autoprefixer uses the Can I Use database with browser statistics and properties support to add vendor prefixes automatically using the Asset Pipeline:

:-webkit-full-screen a {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex
}
:-moz-full-screen a {
    display: flex
}
:-ms-fullscreen a {
    display: -ms-flexbox;
    display: flex
}
:fullscreen a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

If you need to specify browsers for your Rails project, you can save them to .browserslistrc and place it under app/assets/stylesheets/ or any of its ancestor directories

> 1%
last 2 versions
IE > 8 # comment

See Browserslist docs for config format. But > 5% in US query is not supported in Rails, because of ExecJS limitations. You should migrate to webpack or Gulp if you want it.

Note: you have to clear cache (rake tmp:clear) for the configuration to take effect.

You can get what properties will be changed using a Rake task:

rake autoprefixer:info

To disable Autoprefixer just remove postprocessor:

AutoprefixerRails.uninstall(Rails.application.assets)

Sprockets

If you use Sinatra or another non-Rails framework with Sprockets, just connect your Sprockets environment with Autoprefixer and write CSS in the usual way:

assets = Sprockets::Environment.new do |env|
  # Your assets settings
end

require "autoprefixer-rails"
AutoprefixerRails.install(assets)

Ruby

If you need to call Autoprefixer from plain Ruby code, it’s very easy:

require "autoprefixer-rails"
prefixed = AutoprefixerRails.process(css, from: 'main.css').css

Compass

You should consider using Gulp instead of Compass binary, because it has better Autoprefixer integration and many other awesome plugins.

But if you can’t move from Compass binary right now, there’s a hack to run Autoprefixer after compass compile.

Install autoprefixer-rails gem:

gem install autoprefixer-rails

and add post-compile hook to config.rb:

require 'autoprefixer-rails'

on_stylesheet_saved do |file|
  css = File.read(file)
  map = file + '.map'

  if File.exists? map
    result = AutoprefixerRails.process(css,
      from: file,
      to:   file,
      map:  { prev: File.read(map), inline: false })
    File.open(file, 'w') { |io| io << result.css }
    File.open(map,  'w') { |io| io << result.map }
  else
    File.open(file, 'w') { |io| io << AutoprefixerRails.process(css) }
  end
end

Visual Cascade

By default, Autoprefixer will change CSS indentation to create nice visual cascade of prefixes.

a {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box
}

You can disable this by specifying cascade: false in config/autoprefixer.yml or in process() options.

Source Map

Autoprefixer will generate a source map if you set map option to true in process method.

You must set input and output CSS files paths (by from and to options) to generate a correct map.

result = AutoprefixerRails.process(css,
    map:   true,
    from: 'main.css',
    to:   'main.out.css')

Autoprefixer can also modify previous source map (for example, from Sass compilation). Just set original source map content (as string) as prev in the map option.

result = AutoprefixerRails.process(css, {
    map:   { prev: File.read('main.sass.css.map') },
    from: 'main.sass.css',
    to:   'main.min.css')

result.map #=> Source map from main.sass to main.min.css

See all options in PostCSS docs. AutoprefixerRails will convert Ruby style to JS style, so you can use map: { sources_content: false } instead of camelcase sourcesContent.

Security Contact

To report a security vulnerability, please use the Tidelift security contact. Tidelift will coordinate the fix and disclosure.

More Repositories

1

nanoid

A tiny (124 bytes), secure, URL-friendly, unique string ID generator for JavaScript
JavaScript
22,698
star
2

easings.net

Easing Functions Cheat Sheet
CSS
7,459
star
3

size-limit

Calculate the real cost to run your JS app or lib to keep good performance. Show error in pull request if the cost exceeds the limit.
JavaScript
6,345
star
4

visibilityjs

Wrapper for the Page Visibility API
JavaScript
1,817
star
5

nanoevents

Simple and tiny (107 bytes) event emitter library for JavaScript
TypeScript
1,385
star
6

nanocolors

Use picocolors instead. It is 3 times smaller and 50% faster.
JavaScript
870
star
7

audio-recorder-polyfill

MediaRecorder polyfill to record audio in Edge and Safari
JavaScript
554
star
8

webp-in-css

PostCSS plugin and tiny JS script (131 bytes) to use WebP in CSS background
JavaScript
346
star
9

offscreen-canvas

Polyfill for OffscreenCanvas to move Three.js/WebGL/2D canvas to Web Worker
JavaScript
327
star
10

convert-layout

JS library to convert text from one keyboard layout to other
JavaScript
247
star
11

ssdeploy

Netlify replacement to deploy simple websites with better flexibility, speed and without vendor lock-in
JavaScript
193
star
12

nanodelay

A tiny (37 bytes) Promise wrapper around setTimeout
JavaScript
179
star
13

environment

My home config, scripts and installation process
Shell
179
star
14

dual-publish

Publish JS project as dual ES modules and CommonJS package to npm
JavaScript
178
star
15

autoprefixer-core

autoprefixer-core was depreacted, use autoprefixer
JavaScript
136
star
16

nanospy

Spy and mock methods in tests with great TypeScript support
TypeScript
135
star
17

transition-events

jQuery plugin to set listeners to CSS Transition animation end or specific part
JavaScript
133
star
18

check-dts

Unit tests for TypeScript definitions in your JS open source library
JavaScript
130
star
19

evil-blocks

Tiny framework for web pages to split your app to separated blocks
JavaScript
125
star
20

rails-sass-images

Sass functions and mixins to inline images and get images size
Ruby
115
star
21

compass.js

Compass.js allow you to get compass heading in JavaScript by PhoneGap, iOS API or GPS hack.
CoffeeScript
112
star
22

evil-front

Helpers for frontend from Evil Martians
Ruby
101
star
23

rake-completion

Bash completion support for Rake
Shell
64
star
24

yaspeller-ci

Fast spelling check for Travis CI
JavaScript
61
star
25

jquery-cdn

Best way to use latest jQuery in Ruby app
Ruby
59
star
26

sitnik.ru

My homepage content and scripts
JavaScript
57
star
27

pages.js

CoffeeScript
44
star
28

fotoramajs

Fotorama for Ruby on Rails
Ruby
44
star
29

keyux

JS library to improve keyboard UI of web apps
TypeScript
41
star
30

about-postcss

Keynotes about PostCSS
Ruby
29
star
31

autohide-battery

GNOME Shell extension to hide battery icon in top panel, if battery is fully charged and AC is connected.
JavaScript
27
star
32

darian

Darian Mars calendar converter
Ruby
25
star
33

plain_record

Data persistence with human readable and editable storage.
Ruby
24
star
34

better-node-test

The CLI shortcut for node --test runner with TypeScript
JavaScript
24
star
35

evolu-lang

Programming language to automatically generate programs by evolution (genetic programming).
JavaScript
22
star
36

martian-logux-demo

TypeScript
17
star
37

twitter2vk

Script to automatically repost statuses from Twitter to VK (В Контакте)
Ruby
16
star
38

ci-job-number

Return CI job number to run huge tests only on first job
JavaScript
15
star
39

hide-keyboard-layout

GNOME Shell extension to hide keyboard layout indicator in status bar
JavaScript
15
star
40

print-snapshots

Print Jest snapshots to check CLI output of your tool
JavaScript
15
star
41

load-resources

Load all JS/CSS files from site website
JavaScript
15
star
42

susedko

Fedora CoreOS ignition config for my home server
JavaScript
14
star
43

file-container

Store different languages in one source file
JavaScript
14
star
44

autoprefixer-cli

CLI for Autoprefixer
JavaScript
14
star
45

postcss-isolation

Fix global CSS with PostCSS
14
star
46

asdf-cache-action

A Github Action to install runtimes by asdf CLI with a cache
13
star
47

showbox

Keynote generator
JavaScript
11
star
48

d2na

D²NA language for genetic programming
Ruby
10
star
49

postcss-way

Keynotes about PostCSS way
9
star
50

gulp-bench-summary

Display gulp-bench results in nice table view
JavaScript
8
star
51

boilerplates

Boilerplate for my open source projects
8
star
52

anim2012

Доклад «Анимации по-новому — лень, гордыня и нетерпимость»
CSS
8
star
53

nanopurify

A tiny (from 337 bytes) HTML sanitizer
JavaScript
7
star
54

ai

6
star
55

rit3d

Доклад «Веб, теперь в 3D: Практика»
CSS
6
star
56

dis.spbstu.ru

Department homepage
Ruby
5
star
57

evolu-steam

Evolu Steam – evolutionary computation for JavaScript
JavaScript
5
star
58

jstransformer-lowlight

Lowlight support for JSTransformers
JavaScript
5
star
59

jest-ci

CLI for Jest test framework, but coverage only on first CI job
JavaScript
5
star
60

insomnis

Текст блогокниги «Инсомнис»
4
star
61

wsd2013

Презентация «Автопрефиксер: мир без CSS-префиксов»
Ruby
4
star
62

plague

Blog/book Plague engine
Ruby
3
star
63

ruby2jar

Ruby2Jar builds JAR from a Ruby script
Ruby
3
star
64

showbox-ai

Sitnik’s theme for ShowBox
CSS
3
star
65

showbox-bright

Shower Bright theme for Showbox
JavaScript
3
star
66

showbox-shower

Shower for ShowBox
JavaScript
2
star
67

on_the_islands

Ruby
2
star