No commit activity in last 3 years
No release in over 3 years
Fugue icon set for use with Rails 3.1 and 3.2 assets
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

>= 3.1.0
 Project Readme

Fugue Icons for Rails 3.1¶ ↑

Copyright © 2011 Yusuke Kamiyamane. All rights reserved. The icons are licensed under a Creative Commons Attribution 3.0 license. <creativecommons.org/licenses/by/3.0/>

If you can’t or don’t want to provide a link back, please purchase a royalty-free license. <p.yusukekamiyamane.com/>

Rails Usage¶ ↑

The icons are packaged under an fugue-icons/ folder. So to use the icons in your HTML use the following

<%= image_tag("fugue-icons/anchor.png") %>
<%= image_tag("fugue-icons-shadowless/anchor.png") %>

if you need to use them in your CSS then you should use an ERB interpreted CSS or SCSS template such as

.anchor {
    background-image: url(<%= asset_path("fugue-icons/anchor.png") %>);
}

Attribution¶ ↑

To provide a link back to the authors website a helper method is added to be used in your view templates. To use it simply add

<%= fugue_icons_attribution_link %>

to your application layout.