Sinatra アプリで大きな数字をコンマで区切りたいので、Google で調べたところ、次のコードを追加することでできることがわかりました。
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)
これを修正する方法がわかりません。