installing ActionMailer from Rails 3?

Hi

I'd like to use the new ActionMailer that comes with Rails 3, for a email reminder program I am writing. I am pretty new to Ruby, and would like to know how I can gem install this pre-release version, so I can start using it.

Thanks for the help :slight_smile:

Alex

Hi

I’d like to use the new ActionMailer that comes with Rails 3, for a

email reminder program I am writing. I am pretty new to Ruby, and would

like to know how I can gem install this pre-release version, so I can

start using it.

Thanks for the help :slight_smile:

Alex

Alex, you can see the runtime dependencies here:

http://rubygems.org/gems/actionmailer/versions/3.0.0.beta

Good luck,

-Conrad

( Error installing actiomailer: activesupport requires memcache-client (~)1.7.5, runtime)

I got this issue when running gem install actionmail --pre

I have memcache-client 1.8.1

( Error installing actiomailer:

activesupport requires memcache-client (~)1.7.5, runtime)

I got this issue when running gem install actionmail --pre

I have memcache-client 1.8.1

Alex, you’ll need to use Rail 3 components. If looked at the runtime dependencies

for ActionPack, you should see a pattern here:

http://rubygems.org/gems/actionpack/versions/3.0.0.beta

-Conrad

I have gone through this, you have to

export GEM_HOME=/usr/lib/ruby1.9.1/gems/1.9.1

#add it to $HOME/.bashrc

http://bit.ly/d31oZg

João,

Thank. I think that got it to work for me :slight_smile:

I have gone through this, you have to

export GEM_HOME=/usr/lib/ruby1.9.1/gems/1.9.1

#add it to $HOME/.bashrc

http://bit.ly/d31oZg

Hi, I would recommend installing RVM instead of explicitly setting the GEM_HOME

environment variable. Please reference the following:

http://rvm.beginrescueend.com

Good luck,

-Conrad