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

On Thu, Mar 25, 2010 at 8:52 PM, Alex B.
[email protected]wrote:

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

On Thu, Mar 25, 2010 at 10:11 PM, Alex B.
[email protected]wrote:

( 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

João,

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

2010/3/26 João Paulo F. [email protected]

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

Instalando Rails 3 com Rspec 2 e Ruby 1.9.1 no Ubuntu | Felipe Pedrini

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