Skip to content

Instantly share code, notes, and snippets.

@mvbehr
Last active February 15, 2016 15:35
Show Gist options
  • Select an option

  • Save mvbehr/9342856 to your computer and use it in GitHub Desktop.

Select an option

Save mvbehr/9342856 to your computer and use it in GitHub Desktop.
Replace scss url with Rails 4 image-url helper

Sublime Text 2 regex replacement

To use the sass-rails image-url helper for background images after upgrading a project to Rails 4

Howto

Find regex

  url\(\/assets\/(.*)\)

Replace with

  image-url('${1}')

Example

Replaces

  url(/assets/admin/arrow.png)

With

  image-url('admin/arrow.png')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment