Nic*_*ick 6 ruby ruby-on-rails
我主要使用Rails的开发中,我爱1.hour.from_now,34.minutes和24.megabytes助手认为Rails已经内置到它.但是现在我正在构建一个具有这些帮助程序的Ruby应用程序会很好.是否可以在Ruby应用程序中获取这些帮助程序而无需引入整个Rails框架?
这些方法来自ActiveSupport的核心扩展(特别是Integer和Numeric上的扩展),因此您可以只需要它们:
require 'active_support/core_ext/integer/time'
require 'active_support/core_ext/numeric/time'
Run Code Online (Sandbox Code Playgroud)
或者,如果您想要ActiveSupport提供的所有核心扩展:
require 'active_support/core_ext'
Run Code Online (Sandbox Code Playgroud)
或者,如果您想要所有ActiveSupport(包括核心扩展):
require 'active_support/all'
Run Code Online (Sandbox Code Playgroud)
当然你必须确保安装了activesupportgem.