我想在我的 Sinatra 应用程序中用逗号分隔大量数字,所以我做了一些谷歌搜索,发现我可以通过添加以下内容来做到这一点:
require 'action_view/helpers/number_helper'
然后,似乎我应该能够执行以下操作:
number_with_delimiter(12345678, :delimiter => ',')
但是,我收到以下错误:
Gem::LoadError: Unable to activate actionpack-3.2.3, because activesupport-3.2.8 conflicts with activesupport (= 3.2.3)
我不知道如何解决这个问题。