3.days.ago、2.hours.from_now 等没有 Rails?
有些书提到了一些 gem 来用 #days
、#megabytes
、#minutes
等装饰数字。这仅在 ActiveSupport 中吗?提供此功能以在(小型)非轨道宝石中使用的较小宝石?我想在一个小小的 gem 中使用这个功能作为 DSL 的一部分。
Some book mentioned some gem to decorate numbers with #days
, #megabytes
, #minutes
etc. Is this only in ActiveSupport, or is there a smaller gem that provides this functionality for use in (small) non-rails gems? I want to use this functionality as part of a DSL in a tiny little gem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不确定除了
ActiveSupport
之外是否还有其他可用的 gem,但自己制作一个小版本确实非常简单:from_now
可以像一样实现ago
但使用+ self
和weeks
、hours
等,例如使用不同常量的days
。I'm not sure if there's another gem available besides
ActiveSupport
, but it would be really straight-forward to make a small version yourself:from_now
can be implemented likeago
but with+ self
andweeks
,hours
etc. likedays
using different constants.ActiveSupport 具有此功能。它最初是 Rails 的一部分,但现在可以单独使用。
ActiveSupport has this functionality. It was originally part of Rails but can now be used separately.
我发现: https://github.com/kylewlacy/timerizer
I found: https://github.com/kylewlacy/timerizer