当我在我的应用程序下运行<Files ~ "\.sh$">
Order allow,deny
Allow from all
</Files>
时,它将永远挂起。然后我输入bundle exec rake test
来阻止它。然后它给出了这些信息:
Ctrl-c
我是初学者。你能告诉我怎么做吗?升值。
答案 0 :(得分:0)
我有时也会注意到这个问题,因为Rails Spring中的问题导致控制台挂起。 Spring是一个Rails应用程序预加载器,旨在更快地开发和测试Rails应用程序。
尝试跑步:
spring stop
或:
bin/spring stop
..然后再试一次。
如果这没有帮助,请在Rakefile
中注释掉该行:
# Spring speeds up development by keeping your application running
# in the background. Read more: https://github.com/rails/spring
gem 'spring'
这将完全禁用Spring。 Rails的启动速度会慢一点(没有内存中的预加载),但是你可以避免挂起问题。
此问题似乎已经在GitHub上讨论过了:
https://github.com/rails/spring/issues/265