11155
(-- --)
March 26, 2010, 3:52am
1
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
Alex
Con
(Con)
March 26, 2010, 4:35am
2
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
Alex
Alex, you can see the runtime dependencies here:
http://rubygems.org/gems/actionmailer/versions/3.0.0.beta
Good luck,
-Conrad
11155
(-- --)
March 26, 2010, 5:11am
3
( 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
Con
(Con)
March 26, 2010, 7:00am
4
( 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
11155
(-- --)
March 27, 2010, 3:26am
6
João,
Thank. I think that got it to work for me
Con
(Con)
March 27, 2010, 3:35am
7
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