0.04
No commit activity in last 3 years
No release in over 3 years
Minify SVG assets, and optionally convert them to PNG for browser compatibility.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.5

Runtime

 Project Readme

Build Status Code Climate Gem Version

Sprockets::Svg

SVG toolchain for sprockets

Installation

And then execute:

$ bundle

Or install it yourself as:

$ gem install sprockets-svg

Usage

Ruby on Rails

Add this line to your application's Gemfile:

gem 'sprockets-svg'

From now on, svg files will be automatically optimised.

To link the png version of picture.svg from scss:

#id {
  background-image: image-url(picture.svg.png)
}

or from a view:

<%= image_tag 'picture.svg.png' %>

Standalone Sprockets

If you are using sprockets outside of Rails, to setup sprockets-svg you just need:

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

require "sprockets-svg"
Sprockets::Svg.install(assets)

Optimizations

For now the only optimization performed is to remove hidden elements.

In the future I'd like to rely on the svgo toolchain.

Contributing

  1. Fork it ( http://github.com//sprockets-svg/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request