Questions tagged «rails-console»

2
Rails控制台:重新加载!没有反映模型文件中的更改?可能是什么原因?
之前它工作正常。我一直在玩一些配置。所以可能是我在不知不觉中更改了一些配置。 这是环境/ development.rb的配置 config.cache_classes = false # Log error messages when you accidentally call methods on nil. config.whiny_nils = true # Show full error reports and disable caching config.consider_all_requests_local = true config.action_view.debug_rjs = true config.action_controller.perform_caching = false # Don't care if the mailer can't send config.action_mailer.raise_delivery_errors = false # Print …


1
我可以让Ruby on Rails控制台记住我的命令历史吗,嗯,更好吗?
我在Ruby on Rails 3.1.1中使用控制台,并且发现其命令历史记录(向上箭头)确实很不稳定。我已经运行的命令p = Product.by_name 'Acme'和p.add_search_term('Snipe')今天好几次,在多个控制台会话。 但是,当我重新加载Ruby on Rails控制台时,命令历史记录中仅显示第一个,而不显示第二个。有时,在我重新加载控制台后,它们都在历史记录中。最重要的是,我仅在几次按下向上箭头后看到了几天前的命令。是否需要更改某种配置,或者这是一个错误? Ruby on Rails 3.1.1` Ruby 1.9.2p290` Ubuntu 11.10`
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.