ajax のような「もっと見る」リンクに will_paginate gem を使用しています。開発では機能しますが、本番では失敗します。
私の生産ログでは、次のようになります。
NoMethodError (undefined method `page' for []:ActiveRecord::Relation):
私は、本番アプリのルートで次のように入力しようとしました:
grep will_paginate Gemfile.lock
そして得る:
will_paginate (3.0.4)
will_paginate
cap bundle:install は私の VPS に will_paginate のインストールに失敗しませんが、「will_paginate」を明示的に要求しようとすると、開発ではスチールが機能し、本番では失敗しますが、今回は、使用したアクションだけでなく、サイト全体でwill_paginate. これを要求すると、unicorn.log でエラーが発生しました。
No such file to load will_paginate (LoadError)
だから、will_paginate は私の VPS に自分のディレクトリをバンドル インストールで適切にインストールしないと思いますが、なぜですか?
私は入力しようとしました:
gem list
そしてwill_paginateがないところ。したがって、現在のアプリディレクトリで明示的に. gem install will_paginate でも問題は解決しませんでした。
だから私はwill_paginateをgemアンインストールし、再びgemリストを作成した後、もう一度「cap deploy」を実行します。
Gemfile:
gem 'rails', '3.2.13'
gem 'pg'
gem 'will_paginate'
gem 'sass-rails'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'devise'
gem 'uglifier'
gem 'coffee-rails'
gem "haml"
gem 'twitter-bootstrap-rails'
gem 'bootstrap-addons-rails'
gem 'bootstrap-wysihtml5-rails'
gem 'therubyracer'
gem 'less-rails'
#deploy
gem 'unicorn'
gem 'capistrano'
gem "rmagick"
gem "carrierwave"
gem 'jquery-fileupload-rails'
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
end
group :development, :test do
gem 'rspec-rails'
end
group :test do
gem 'factory_girl_rails'
gem 'capybara'
gem 'guard-rspec'
gem 'growl'
gem 'guard-spork'
gem 'spork'
gem 'rb-fsevent', '~> 0.9'
gem "faker"
end
deploy.rb
require "bundler/capistrano"
server ".....", :web, :app, :db, primary: true
set :application, "......"
set :user, "......."
set :deploy_to, "/home/#{user}/apps/#{application}"
set :deploy_via, :remote_cache
set :use_sudo, false
set :shared_children, shared_children + %w{public/uploads}
set :scm, "git"
set :repository, "git@github.com:........git"
set :branch, "master"
default_run_options[:pty] = true
ssh_options[:forward_agent] = true
after "deploy", "deploy:cleanup" # keep only the last 5 releases
namespace :deploy do
namespace :assets do
task :precompile, :roles => :web do
from = source.next_revision(current_revision)
if capture("cd #{latest_release} && #{source.local.log(from)} vendor/assets/ lib/assets/ app/assets/ | wc -l").to_i > 0
run_locally("rake assets:clean && rake assets:precompile")
run_locally "cd public && tar -jcf assets.tar.bz2 assets"
top.upload "public/assets.tar.bz2", "#{shared_path}", :via => :scp
run "cd #{shared_path} && tar -jxf assets.tar.bz2 && rm assets.tar.bz2"
run_locally "rm public/assets.tar.bz2"
run_locally("rake assets:clean")
else
logger.info "Skipping asset precompilation because there were no asset changes"
end
end
task :symlink, roles: :web do
run ("rm -rf #{latest_release}/public/assets &&
mkdir -p #{latest_release}/public &&
mkdir -p #{shared_path}/assets &&
ln -s #{shared_path}/assets #{latest_release}/public/assets")
end
end
%w[start stop restart].each do |command|
desc "#{command} unicorn server"
task command, roles: :app, except: {no_release: true} do
run "/etc/init.d/unicorn_#{application} #{command}"
end
end
task :setup_config, roles: :app do
sudo "ln -nfs #{current_path}/config/nginx.conf /etc/nginx/sites-enabled/#{application}"
sudo "ln -nfs #{current_path}/config/unicorn_init.sh /etc/init.d/unicorn_#{application}"
run "mkdir -p #{shared_path}/config"
put File.read("config/database.example.yml"), "#{shared_path}/config/database.yml"
puts "Now edit the config files in #{shared_path}."
end
after "deploy:setup", "deploy:setup_config"
task :symlink_config, roles: :app do
run "ln -nfs #{shared_path}/config/database.yml #{release_path}/config/database.yml"
end
after "deploy:finalize_update", "deploy:symlink_config"
desc "Make sure local git is in sync with remote."
task :check_revision, roles: :web do
unless `git rev-parse HEAD` == `git rev-parse origin/master`
puts "WARNING: HEAD is not the same as origin/master"
puts "Run `git push` to sync changes."
exit
end
end
before "deploy", "deploy:check_revision"
#rake seed task
desc "Seed the database on already deployed code"
task :seed, :only => {:primary => true}, :except => { :no_release => true } do
run "cd #{current_path}; RAILS_ENV=#{rails_env} bundle exec rake db:seed"
end
desc "Seed the database on already deployed code"
task :drop, :only => {:primary => true}, :except => { :no_release => true } do
run "cd #{current_path}; RAILS_ENV=#{rails_env} bundle exec rake db:drop:all"
run "cd #{current_path}; RAILS_ENV=#{rails_env} bundle exec rake db:create:all"
run "cd #{current_path}; RAILS_ENV=#{rails_env} bundle exec rake db:migrate"
end
終わり
誰でもこの問題で私を助けることができますか?
または、will_paginate に必要なすべてのファイルを明示的に Rails アプリに追加する方法を誰かが知っているのでしょうか。したがって、gem will_paginate がなくても機能します
私は結びました:
bundle exec gem list
リストで will_paginate (3.0.4) を見つけます。インストールされているが、私のアプリ用ではないということですか?