0

I would like to comma delimit large numbers in my Sinatra app, so I did some Googling and found that I can do so by adding the following:

require 'action_view/helpers/number_helper'

Then, it seems I am supposed to be able to do things like:

number_with_delimiter(12345678, :delimiter => ',')

However, I get the following error:

Gem::LoadError: Unable to activate actionpack-3.2.3, because activesupport-3.2.8 conflicts with activesupport (= 3.2.3)

I'm not sure how to fix this.

tonic
  • 453
  • 1
  • 6
  • 21
  • when you pasted the error, was so hard to read its message? :) why wont you consider to uninstall activesupport (= 3.2.3) –  Dec 15 '12 at 03:04
  • @slivu i read the message but was unsure on how to do what you are suggesting – tonic Dec 18 '12 at 19:12

1 Answers1

2

Use a Gemfile and bundler with your app. There you can explicitly set the versions of each gem. See http://gembundler.com for more information on how to do so.

three
  • 8,262
  • 3
  • 35
  • 39