# Inline SVG Styling a SVG document with CSS for use on the web is most reliably achieved by [adding classes to the document and embedding](http://css-tricks.com/using-svg/) it inline in the HTML. This gem is a little helper method (`inline_svg`) that reads an SVG document from a Rails image directory, applies a CSS class attribute to the root of the document and then embeds it into a view. ## Changelog All notable changes to this project are documented in the [CHANGELOG](https://github.com/jamesmartin/inline_svg/blob/master/CHANGELOG.md). ## Installation Add this line to your application's Gemfile: gem 'inline_svg' And then execute: $ bundle Or install it yourself as: $ gem install inline_svg ## Usage ``` inline_svg(file_name, options={}) ``` Currently, this little helper only works in the context of a Rails app. Here's an example of embedding an SVG document and applying a 'class' attribute in HAML: ``` !!! 5 %html %head %title Embedded SVG Documents %body %h1 Embedded SVG Documents %div = inline_svg "some-document.svg", class: 'some-class' ``` Here's some CSS to target the SVG, resize it and turn it an attractive shade of blue: ``` .some-class { display: block; margin: 0 auto; fill: #3498db; width: 5em; height: 5em; } ``` ## Options * `class`: set a CSS class attribute on the SVG * `title`: add a \