Activate a gem

hi…
I have gems actionmailer 2.0.2 and actionmailer 2.1.0 both installed an
my m/c…
But I want the gem actionmailer 2.0.2 to be used by my rails
application…
How do I do this???
Thank you…

Hi,

Try this in your config/environment.rb
config.gem “actionmailer”, :version => ‘2.0.2’

If you wanna use 2.0.2 for the whole app then it’s
RAILS_GEM_VERSION = ‘2.0.2’

ciao, tom

Thomas R. “TomK32” Koll <> http://ananasblau.com
just a geek trying to change the world
TomK32 (Thomas R. Koll) · GitHub

Thomas r. Koll wrote:

Hi,

Try this in your config/environment.rb
config.gem “actionmailer”, :version => ‘2.0.2’

If you wanna use 2.0.2 for the whole app then it’s
RAILS_GEM_VERSION = ‘2.0.2’

ciao, tom

Thomas R. “TomK32” Koll <> http://ananasblau.com
just a geek trying to change the world
TomK32 (Thomas R. Koll) · GitHub

Hey…
Thank you so much…
that works gr8…!!!
thanks again…