A solution to assets management in Rails
rails-assets.org
A solution to assets management in Rails
1–10 of 35 posts
Re: A solution to assets management in Rails
#2It's not hard to download a JavaScript or css file and put them in app/assets.
What warrants the additional complexity?
Re: A solution to assets management in Rails
#3Awesome! Was looking for something like this. I used to have a "vendorassets" directory where I could sanely manage 3rd party assets. Still a pain in the ass sometimes.
Rails-gems are usually out of date and everyone seems to jump the bower-ship.
Re: A solution to assets management in Rails
#4I don't get this. It's not hard to download a JavaScript or css file and put them in app/assets. What warrants the additional complexity?
Re: A solution to assets management in Rails
#5Re: A solution to assets management in Rails
#6What's wrong with just using Bower?
Re: A solution to assets management in Rails
#7Re: A solution to assets management in Rails
#8Re: A solution to assets management in Rails
#9Just set bower to install into vendor/assets and link to those instead in your stylesheets/scripts. No need to add an additional layer of indirection and increasing the length of you Gemfile. Your bower.json should be where this information is stored, not you Gemfile.
Re: A solution to assets management in Rails
#10Just set bower to install into vendor/assets and link to those instead in your stylesheets/scripts. No need to add an additional layer of indirection and increasing the length of you Gemfile. Your bower.json should be where this information is stored, not you Gemfile.
How do you lock your bower dependencies then?