I like to include bower, node packages in my Rails app using Rails Assets:
source 'https://rails-assets.org' do
gem 'rails-assets-colorbox'
end
# ...
gem 'jquery-rails'
Now when I did run bundle install I got the following output:
...
Using pg 0.18.1
Installing rails-assets-jquery 2.1.3
Installing rails-assets-colorbox 1.6.0
Using ruby-graphviz 1.0.9
...
Now I am already using the jquery-rails plugin which is obviously a wrapper of jquery but which, I believe, does more advanced rails-related stuff too.
So now I seem to have two versions of jquery in my Rails app which is not ideal.
My questions is now whether I can get rid of jquery-rails and just include rails-assets-jquery in my Gemfile