RailsCasts Pro episodes are now free!

Learn more or hide this

Fritz's Profile

GitHub User: frgooall

Site: http://simplybrilliantmedia.com

Comments by Fritz

Avatar

Thanks Tim! This worked for me as well!!

Avatar

Thanks Ryan!! Heroku and Engine Yard are great! But it is nice being able to test my applications live while keep cost in mind!

Avatar

Hey Ryan! Thanks again for all you do...love your screencast! I tried to set my production.rb file to deliver the email, but it is not working...

config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:domain => "myserver",
:user_name => "fritz.rodriguez.jr",
:password => "password",
:authentication => "plain",
:enable_starttls_auto => true }

config.middleware.use ExceptionNotifier,
:sender_address => 'fritz.rodriguez.jr@gmail.com',
:exception_recpients => 'fritz.rodriguez.jr@gmail.com'

Any ideas? Thanks!

Avatar

Hey Ryan!

As usually your screencast are great learning tools, the rails community is so generous with their time and expertise.

I have been playing around with active_admin and really like it.... Kudos to GregBell!!

On the gotcha with stylesheet issue, I found that moving the active_admin.css.scss to the /vendor/assets/stylesheet also solved AA overriding my css.

Thanks again for all you do!