On Jul 19, 11:04 pm, Manish Arya <[email protected]>
wrote:
> yea, because in environment.rb its clearly mentioned
>
> config.gem "rdiscount", :version => "1.3.1.1"
>
> but at the time of installing rdiscount it wants
>
> version = "1.3.1.1"
>
Were you expecting something else? That's what the config.gem line
means. Changing it to:
config.gem 'rdiscount', :version => '>= 1.3.1.1'
will work, as will
config.gem 'rdiscount', :version => '1.3.4'
--Matt Jones
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---