比方说,我想问候每次Rails的控制台出现:
Scotts-MBP-4:ucode scott$ rails c
Loading development environment (Rails 4.2.1)
Hello there! I'm a custom greeting
2.1.5 :001 >
我会在哪里放puts 'Hello there! I\'ma custom greeting'
puts 'Hello there! I\'ma custom greeting'
声明?
另一个答案#1建议,和我读过这在其他地方也一样,我可以把在这样的初始化:
# config/initializers/console_greeting.rb
if defined?(Rails::Console)
puts 'Hello there! I\'m a custom greeting'
end
这不适合我的工作,虽然:(。即使没有if defined?(Rails::Console)
我还没有得到输出。好像初始化时,我进入控制台,都跑不了,尽管别人建议。