简体   繁体   中英

Rails - how do you edit files included by a gem in the asset pipeline?

I am new to rails so this is probably a simple question about using the asset pipeline.

In my app, I want to use this jquery plugin: http://www.fyneworks.com/jquery/star-rating/

So to do it, I included the following gem in my gemfile: https://github.com/RichGuk/jquery-star-rating-rails

However, I find that the image used for the star ratings is too low resolution and I'd also like to change the style. However, all 3 versions of the stars that are displayed are held in one image so I'd have to play around with the scripts as well to make sure they are configured properly if I make the image for the stars larger.

Back to my question: How do I edit this image file in my application?

I've tried downloading all the files and putting them in my vender directory and editing the file but it did not seem to work.

I know the files are included by the gem but how do make the files visible to edit?

Appreciate the help!

So the asset pipeline consists of potentially many directories (assuming you are using gems that inject their own assets into the pipeline). When an asset is being grabbed in Rails, Rails goes through these directories (in the same order, every time) to find the asset. When the name of the file is first found, that's it, Rails grabs it and uses that file.

Vendor asset directories are specified after app assets, I believe. So, if you place the image that you want to change in the app/assets/images folder, you'll essentially be overriding that vendor image in your application with your own image since Rails will search it's own app/assets first. Obviously, the files need to be named the same.

  1. Try adding your star image in your assets path. It seem to reference star.gif using the asset_path
  2. I would also try overriding the star plugin by creating your own css file.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM