gpt4 book ai didi

html - 如何在 Rails 中启用自动代码重新加载

转载 作者:太空狗 更新时间:2023-10-29 14:55:05 26 4
gpt4 key购买 nike

有没有办法在开发环境中对 Rails 应用程序进行“热代码重新加载”?

例如:我正在开发一个 Rails 应用程序,我在样式表中添加了几行 css,我查看浏览器以查看修改后的样式。截至目前,我必须使用 cmd-r 或单击刷新按钮来刷新页面。

有没有办法让页面在进行更改时自动重新加载?

这在 Phoenix 网络框架中运行良好(我确信 Phoenix 不是此功能的唯一框架)。如何在 Ruby on Rails 中启用这样的功能?

最佳答案

我正在使用此设置重新加载所有 Assets 、js、css、ruby 文件

在 gem 文件中

group :development, :test do
gem 'guard-livereload', '~> 2.5', require: false
end

group :development do
gem 'listen'
gem 'guard'
gem 'guard-zeus'
gem 'rack-livereload'
end

将其插入您的 development.rb

config.middleware.insert_after ActionDispatch::Static, Rack::LiveReload

我的守卫文件里有这个

# A sample Guardfile
# More info at https://github.com/guard/guard#readme

## Uncomment and set this to only include directories you want to watch
# directories %w(app lib config test spec features) \
# .select{|d| Dir.exists?(d) ? d : UI.warning("Directory #{d} does not exist")}

## Note: if you are using the `directories` clause above and you are not
## watching the project directory ('.'), then you will want to move
## the Guardfile to a watched dir and symlink it back, e.g.
#
# $ mkdir config
# $ mv Guardfile config/
# $ ln -s config/Guardfile .
#
# and, you'll have to watch "config/Guardfile" instead of "Guardfile"

guard 'livereload' do
extensions = {
css: :css,
scss: :css,
sass: :css,
js: :js,
coffee: :js,
html: :html,
png: :png,
gif: :gif,
jpg: :jpg,
jpeg: :jpeg,
# less: :less, # uncomment if you want LESS stylesheets done in browser
}

rails_view_exts = %w(erb haml slim)

# file types LiveReload may optimize refresh for
compiled_exts = extensions.values.uniq
watch(%r{public/.+\.(#{compiled_exts * '|'})})

extensions.each do |ext, type|
watch(%r{
(?:app|vendor)
(?:/assets/\w+/(?<path>[^.]+) # path+base without extension
(?<ext>\.#{ext})) # matching extension (must be first encountered)
(?:\.\w+|$) # other extensions
}x) do |m|
path = m[1]
"/assets/#{path}.#{type}"
end
end

# file needing a full reload of the page anyway
watch(%r{app/views/.+\.(#{rails_view_exts * '|'})$})
watch(%r{app/helpers/.+\.rb})
watch(%r{config/locales/.+\.yml})
end

guard 'zeus' do
require 'ostruct'

rspec = OpenStruct.new
# rspec.spec_dir = 'spec'
# rspec.spec = ->(m) { "#{rspec.spec_dir}/#{m}_spec.rb" }
# rspec.spec_helper = "#{rspec.spec_dir}/spec_helper.rb"

# matchers
# rspec.spec_files = /^#{rspec.spec_dir}\/.+_spec\.rb$/

# Ruby apps
ruby = OpenStruct.new
ruby.lib_files = /^(lib\/.+)\.rb$/

# watch(rspec.spec_files)
# watch(rspec.spec_helper) { rspec.spec_dir }
# watch(ruby.lib_files) { |m| rspec.spec.call(m[1]) }

# Rails example
rails = OpenStruct.new
rails.app_files = /^app\/(.+)\.rb$/
rails.views_n_layouts = /^app\/(.+(?:\.erb|\.haml|\.slim))$/
rails.controllers = %r{^app/controllers/(.+)_controller\.rb$}

# watch(rails.app_files) { |m| rspec.spec.call(m[1]) }
# watch(rails.views_n_layouts) { |m| rspec.spec.call(m[1]) }
# watch(rails.controllers) do |m|
# [
# rspec.spec.call("routing/#{m[1]}_routing"),
# rspec.spec.call("controllers/#{m[1]}_controller"),
# rspec.spec.call("acceptance/#{m[1]}")
# ]
# end
end

在此设置中我使用的是 zeus 而不是 spring。

运行guard

打开 localhost:3000 就可以了。

这应该可以解决您的问题,并且重新加载时间比 browserify 快。

我注释掉了 guard looking at test directories 如果你想的话你可以取消注释这些行如果你正在做 TDD。

关于html - 如何在 Rails 中启用自动代码重新加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35489477/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com