ddidier / address_picker-rails

MIT License
23 stars 16 forks source link

jquery-ui bad requirement #8

Open mtorres-ix opened 11 years ago

mtorres-ix commented 11 years ago

hi there I have a problem I'm using rails 3.2.13 and I'm getting this error

couldn't find file 'jquery-ui'

but I had the gem jquery-rails installed

thanks

ddidier commented 11 years ago

Hi,

if you did :

adamb0mb commented 10 years ago

I'm hitting this issue too. I haven't spent much time on it yet, but here is my setup:

In my Gemfile:

gem 'address_picker-rails'
gem 'jquery-ui-rails'
gem 'jquery-ui-themes'

In my css manifest:

*= require_self
*= require jquery.ui.all
*= require jquery-ui/cupertino
*= require_tree .

In js manifest:

//= require jquery
//= require jquery_ujs
//= require jquery.ui.all
//= require twitter/bootstrap
//= require address_picker-rails
//= require_tree .

My error:

couldn't find file 'jquery-ui' 
(in /Users/adamphillabaum/.rvm/gems/ruby-1.9.3-p194/gems/address_picker-rails-0.3.0/vendor/assets/javascripts/address_picker-rails.js:3)

I'll let you know what I find out.