Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

rubymine - Could not find gem "jquery-rails"

Tags:

ruby

rubymine

I have installed rubymine and Ruby193 (with rubyinstaller).
I now create a rails aplication with "preconfigured for selected database" - "mySqL " checkbox selected
When I click the execute it prints the following error :

D:/Programs/Ruby193/lib/ruby/gems/1.9.1/gems/bundler-1.1.3/lib/bundler/resolver.rb:287:in `resolve': Could not find gem 'jquery-rails (>= 0) x86-mingw32' in the gems available on this machine. (Bundler::GemNotFound)

ideas?

like image 405
Bick Avatar asked Apr 12 '12 12:04

Bick


2 Answers

Install this gem separately:

gem install jquery-rails

or via Bundler

bundle install (in the project directory where your Gemfile is located)

like image 195
CrazyCoder Avatar answered Sep 16 '22 15:09

CrazyCoder


Here is the latest version of jquery-rail to install in ubuntu via terminal:

gem install jquery-rails -v 4.0.4

like image 39
Ashish Chauhan Avatar answered Sep 19 '22 15:09

Ashish Chauhan