在我的模型中,我想检查应用程序是在 IRB 控制台内运行还是作为网站运行?
class MyModel < ActiveRecord::Base
def xmethod
if !isIRBconsol
self.user_id = UserSession.find.user.id
end
end
end
在我的模型中,我想检查应用程序是在 IRB 控制台内运行还是作为网站运行?
class MyModel < ActiveRecord::Base
def xmethod
if !isIRBconsol
self.user_id = UserSession.find.user.id
end
end
end
为什么不只是if defined?(IRB)
?
这有点小技巧,但它应该可以工作:
class MyModel < ActiveRecord::Base
def am_i_in_irb?
self.private_methods.include? 'irb_binding'
end
end
但正如 Kathy Van Stone 上面所说,这可能是一个更好的解决方案。
unless self.private_methods.include? 'irb_binding'
#put your rufus scheduling here
end