将随机日期生成器嵌入到嵌入的ruby文件中

时间:2014-10-06 17:55:16

标签: ruby-on-rails ruby

我想将这个随机日期生成器添加到我的erb文件中......

def time_rand from = 0.0, to = Time.now
  Time.at(from + rand * (to.to_f - from.to_f))
end

如果这看起来很简单,我很抱歉,但我不知道如何让这个显示出来?

1 个答案:

答案 0 :(得分:2)

您可以使用视图助手(您application_helper.rb文件夹中的your_controller_helper.rbapp/helpers

第一个将使该方法可用于所有视图。仅次于您控制器的视图。

然后您可以在视图中使用它:

<%= time_rand some_time, some_other_time %>