# Foundation Icon Fonts on SASSC for Rails
New SASSC Implementation based on [zaiste's][4] Foundation Icons on Sass for Rails
Current version: [Foundation Icon Fonts 3][3].
## How to Install
### For rails versions 4 and up
```ruby
gem 'sassc-rails', " ~> x.x.x"
gem 'coffee-rails', "~> x.x.x"
gem 'uglifier'
gem 'foundation-icons-sass-rails'
```
### For rails versions < 4
Add `foundation-icons-sassc-rails` gem to the `assets` group in your `Gemfile`:
```ruby
group :assets do
gem 'sassc-rails', " ~> x.x.x"
gem 'coffee-rails', "~> x.x.x"
gem 'uglifier'
gem 'foundation-icons-sass-rails'
end
```
Then rename your `app/assets/stylesheets/application.css` to `app/assets/stylesheets/application.css.scss` and add:
@import 'foundation-icons';
Now, you can use it as follows:
## Version 2.x
For [Foundation Icon Fonts 2][2] use `v2.x` branch.
## License
[Foundation Icon Fonts 3][3] and [Foundation Icon Fonts 2][2] are created by
[ZURB][1] and licensed under MIT.
Rest of the code is also under MIT.
[1]: http://http://www.zurb.com/
[2]: http://www.zurb.com/playground/foundation-icons
[3]: http://zurb.com/playground/foundation-icon-fonts-3
[4]: https://github.com/zaiste