Simple file icons that use the Rails Asset Pipeline.
Add this line to your application's Gemfile:
gem 'rails-file-icons'
And then execute:
$ bundle
Or install it yourself as:
$ gem install rails-file-icons
Render a file icon for a given filename in a view.
<%= image_tag Icon.for_filename('myfile.jpg') %>
Get the image path for a given file extension. (leading dot is irrelevant)
Icon.for_ext '.jpg'
> 'fileicons/file_extension_jpg.png'
Icon.for_ext 'gif'
> 'fileicons/file_extension_gif.png'
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request