Railsサーバーは、コントローラ、モデル、およびおそらく他のファイルを変更した後、それらをリロードしません。VagrantとRails APIを使用し、一部の人々はVagrantfile
に以下の行を追加することでこの問題を修正していることがわかりました.
config.vm.provider "virtualbox" do |vb|
vb.customize [ "guestproperty", "set", :id, "/VirtualBox/GuestAdd/VBoxService/--timesync-set-threshold", 5000 ]
end
それは私にとっては問題を解決しません。この問題を解決するために他に何ができるかという考えが尽きます。あなたに役立つかもしれないファイルを添付します。
私のGemfile
は次のようになります:
source 'https://rubygems.org'
gem 'rake', '< 11.0'
# Bundle Edge Rails instead: gem 'Rails', github: 'Rails/rails'
gem 'Rails', '>= 5.0.0.beta3', '< 5.1'
# Use mysql as the database for Active Record
# gem 'mysql2', '>= 0.3.18', '< 0.5'
# User PostgreSQL as the database for Active Record
gem 'pg', '~> 0.18'
gem 'active_model_serializers'
gem 'rspec-its'
gem 'database_cleaner'
# Use Puma as the app server
gem 'puma'
# Build JSON APIs with ease. Read more: https://github.com/Rails/jbuilder
# gem 'jbuilder', '~> 2.0'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Gem allowing using external APIs
gem 'httparty'
# Auth0 gem for authentication using JWT
gem 'knock'
gem 'jwt'
# OpenID Omniauth gem for authenticating Steam users
gem 'omniauth-Steam'
# Gem for managing environment variables
gem 'figaro'
# Use Capistrano for deployment
# gem 'capistrano-Rails', group: :development
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-Origin AJAX possible
gem 'rack-cors', :require => 'rack/cors'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
gem 'rspec-Rails', '~> 3.0'
gem 'factory_girl_Rails'
gem 'ffaker'
end
group :test do
gem 'shoulda-matchers'
gem 'json-schema'
end
group :development do
gem 'listen', '~> 2.10'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/Rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
ログの冒頭にあるため、サーバーを開発モードで実行すると確信しています。
=> Booting Puma
=> Rails 5.0.0.beta3 application starting in development on http://0.0.0.0:3000
=> Run `Rails server -h` for more startup options
=> Ctrl-C to shutdown server
Puma starting in single mode...
* Version 3.1.0 (Ruby 2.2.3-p173), codename: El Niño Winter Wonderland
* Min threads: 5, max threads: 5
* Environment: development
* Listening on tcp://0.0.0.0:3000
これは私の development.rb
ファイル
Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
# In the development environment your application's code is reloaded on
# every request. This slows down response time but is perfect for development
# since you don't have to restart the web server when you make code changes.
config.cache_classes = false
# Do not eager load code on boot.
config.eager_load = false
# Show full error reports.
config.consider_all_requests_local = true
# Enable/disable caching. By default caching is disabled.
if Rails.root.join('tmp/caching-dev.txt').exist?
config.action_controller.perform_caching = true
config.action_mailer.perform_caching = false
config.cache_store = :memory_store
config.public_file_server.headers = {
'Cache-Control' => 'public, max-age=172800'
}
else
config.action_controller.perform_caching = false
config.action_mailer.perform_caching = false
config.cache_store = :null_store
end
# Don't care if the mailer can't send.
config.action_mailer.raise_delivery_errors = false
# Print deprecation notices to the Rails logger.
config.active_support.deprecation = :log
# Raise an error on page load if there are pending migrations.
config.active_record.migration_error = :page_load
# Raises error for missing translations
# config.action_view.raise_on_missing_translations = true
# Use an evented file watcher to asynchronously detect changes in source code,
# routes, locales, etc. This feature depends on the listen gem.
config.file_watcher = ActiveSupport::EventedFileUpdateChecker
end
私のVagrantfile
Vagrant.configure(2) do |config|
if Vagrant.has_plugin?("vagrant-timezone")
config.timezone.value = "Europe/Warsaw"
end
config.vm.box = "ubuntu/trusty64"
config.vm.network :forwarded_port, guest: 3000, Host: 3000
config.vm.synced_folder "E:/Projekty - Rails", "/home/projekty"
config.vm.provider "virtualbox" do |vb|
vb.customize [ "guestproperty", "set", :id, "/VirtualBox/GuestAdd/VBoxService/--timesync-set-threshold", 5000 ]
end
end
以下の行をdevelopment.rb
ファイルに追加することで問題を解決しました。
config.reload_classes_only_on_change = false
それは私にとっては問題を解決しません。
config/environments/development.rb
に追加
#config.file_watcher = ActiveSupport::EventedFileUpdateChecker
config.file_watcher = ActiveSupport::FileUpdateChecker
FileUpdateChecker
は、ファイルの変更をポーリングすることで検出します。
これはRuby 2.6.5およびRails 5.2.4.1。
Config/environments/development.rbに次の行を追加します。
config.file_watcher = ActiveSupport::EventedFileUpdateChecker
に加えて
config.cache_classes = false
同じファイル内、および
gem 'listen'
gemfileの:developmentグループ内。
pocariの解決策は私にとってはうまくいきましたが、ページがリロードされるまでに数秒待たなければなりませんでした。そうでなければ、コンテンツが常に更新されるとは限りませんでした。
この答え で説明されているようにsynced_folder
にオプションを追加するとうまくいきました:
config.vm.synced_folder ".", "/vagrant", type: "nfs", mount_options: ['actimeo=1']
(そしてdevelopment.rb
の変更は必要ありません)
私は同じ問題を抱えていたので、私がしたことはこのような簡単なスクリプトbump
を作成することでした。最初にappフォルダーにいることを確認してください。
!#/bin/bash
rake db:migrate
echo "MIGRATED"
rake routes
echo "routed"
Sudo service Apache2 restart
echo "web server reloaded"
これで./bump
と入力するだけで、3つのコマンドがすべて実行され、すべてが読み込まれたことがわかります。また、この方法を使用して、deviseなどのgemのコマンドラインインストールのようにこれを繰り返します。