Sprockets :: FileNotFound:在Rails 4上找不到文件'jquery.ui.all' [英] Sprockets::FileNotFound: couldn't find file 'jquery.ui.all' on Rails 4

查看:119
本文介绍了Sprockets :: FileNotFound:在Rails 4上找不到文件'jquery.ui.all'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Sprockets::FileNotFound: couldn't find file 'jquery.ui.all'

我尝试了到目前为止找到的所有建议. 他们都不适合我. 我不能再运行正在开发的程序,因此不能再在线进行新部署.

I attempted all recommendations found so far. None of them works for me. I cannot run anymore the program in development and as such I cannot anymore make a new deployment online.

source 'https://rubygems.org'
ruby '2.0.0'
gem 'rails', '4.0.0'

gem 'bcrypt-ruby', '3.0.1'
gem 'faker', '>=1.1.2'
gem 'pg', '>=0.15.1'
gem 'uglifier', '>=2.1.1'
gem 'coffee-rails', '>=4.0.0'
gem 'jbuilder', '~> 1.2'
gem 'activerecord-import', '>=0.4.1'
gem 'rubyzip2'
gem 'date_validator'
gem 'psych', '~> 2.0.5'

gem 'json', '>=1.8.1'
gem 'turbolinks', '>=1.1.1'
gem 'sass-rails', '>=4.0.0'
gem 'bootstrap-sass', '>=3.0.0.0'
gem 'will_paginate', '>=3.0.4'
gem 'bootstrap-will_paginate','>=0.0.9'
gem 'bootstrap-sass-rails'
gem 'bootstrap-datepicker-rails'
gem 'jquery-ui-bootstrap-rails'
gem 'geocoder'
gem 'jquery', '>=0.0.1'
gem 'jquery-rails', '>=2.2.1'
gem 'jquery-datatables-rails', github: 'rweng/jquery-datatables-rails'
gem 'jquery-ui-rails'
gem 'gmaps4rails'

group :doc do
  gem 'sdoc', '>=0.3.20',require: false
end

group :production do
  gem 'rails_12factor', '>=0.0.2'
end

group :test do
  gem 'selenium-webdriver', '>=2.0.0'
  gem 'capybara', '>=2.1.0'
  gem 'factory_girl_rails', '>=4.2.1'
end

group :development, :test do
  gem 'rspec-rails', '>=2.13.1'
end

My application.js is 
source 'https://rubygems.org'
ruby '2.0.0'
gem 'rails', '4.0.0'

gem 'bcrypt-ruby', '3.0.1'
gem 'faker', '>=1.1.2'
gem 'pg', '>=0.15.1'
gem 'uglifier', '>=2.1.1'
gem 'coffee-rails', '>=4.0.0'
gem 'jbuilder', '~> 1.2'
gem 'activerecord-import', '>=0.4.1'
gem 'rubyzip2'
gem 'date_validator'
gem 'psych', '~> 2.0.5'

gem 'json', '>=1.8.1'
gem 'turbolinks', '>=1.1.1'
gem 'sass-rails', '>=4.0.0'
gem 'bootstrap-sass', '>=3.0.0.0'
gem 'will_paginate', '>=3.0.4'
gem 'bootstrap-will_paginate','>=0.0.9'
gem 'bootstrap-sass-rails'
gem 'bootstrap-datepicker-rails'
gem 'jquery-ui-bootstrap-rails'
gem 'geocoder'
gem 'jquery', '>=0.0.1'
gem 'jquery-rails', '>=2.2.1'
gem 'jquery-datatables-rails', github: 'rweng/jquery-datatables-rails'
gem 'jquery-ui-rails'
gem 'gmaps4rails'

group :doc do
  gem 'sdoc', '>=0.3.20',require: false
end

group :production do
  gem 'rails_12factor', '>=0.0.2'
end

group :test do
  gem 'selenium-webdriver', '>=2.0.0'
  gem 'capybara', '>=2.1.0'
  gem 'factory_girl_rails', '>=4.2.1'
end

group :development, :test do
  gem 'rspec-rails', '>=2.13.1'
end

application.css

/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the top of the
 * compiled file, but it's generally better to create a new file per style scope.


*= require dataTables/src/demo_table_jui
*= require dataTables/extras/dataTables.colReorder
*= require dataTables/extras/dataTables.tableTools
*= require dataTables/bootstrap/3/jquery.dataTables.bootstrap
*= require dataTables/extras/dataTables.tableTools

*= require bootstrap
*= require jquery.ui.all
*= require jquery.ui.core
*= require jquery.ui.theme
*= require bootstrap-datepicker

*= require_self
*= require_tree .

*/

推荐答案

我发现了问题.当将引导程序与数据表集成在一起时,如果在文件和文件夹名称的两侧都引入了更改,则不再起作用.因此,我将它们分离了,我将引导程序用于按钮和菜单以及数据表的html样式,没有引导程序集成,并且可以完美,快速,流畅地工作.看来这些人无法跟上彼此的步伐.

I found the problem. When integrating bootstrap with data tables when changes are introduced in files and folder names in both sides, nothing works anymore. So I separated them, I am using bootstrap for buttons and menus and data tables html style, no bootstrap integration and work perfectly, fast and smooth. Looks like these these folks can't keep up with each other.

这篇关于Sprockets :: FileNotFound:在Rails 4上找不到文件'jquery.ui.all'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆