Re: Trouble with hoptoad

2009-04-16 Thread Dan Croak
-- Dan Croak http://thoughtbot.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Heroku group. To post to this group, send email to heroku@googlegroups.com To unsubscribe from this group, send email to heroku

Re: Build/staging environment separate from production application

2009-04-28 Thread Dan Croak
, but that's the basic idea. Check out 'git push --help' for more details. Also http://grb.rubyforge.org is helpful for dealing with remote branches. -Mat -- Dan Croak http://thoughtbot.com --~--~-~--~~~---~--~~ You received this message because you

new Bundler version?

2010-07-26 Thread Dan Croak
Howdy, I was messing with a Rails 3 app on REE Heroku. Things started out well but as I added dependencies to my Gemfile, I started getting seg faults: https://rails.lighthouseapp.com/projects/8994/tickets/5193-segmentation-fault-on-rake-dbcreate-multiple-rubies-multiple-dbs The fix in

Re: workers dying overnight

2010-07-29 Thread Dan Croak
Only time I've had issues with workers is when I messed up something on my side so that I was causing DJ to crash. I debugged it by doing: heroku ps On Thu, Jul 29, 2010 at 11:10 AM, Alex Chaffee a...@cohuman.com wrote: I wrote a simple Heroku app to do service monitoring. It uses DelayedJob

Re: DJ Workers Crashing Without Specific Information

2010-10-04 Thread Dan Croak
There are some troubleshooting suggestions on this page: http://docs.heroku.com/ps On Mon, Oct 4, 2010 at 1:04 PM, Brandon Casci bran...@loudcaster.com wrote: I can only offer commiseration because I'm in the same position as you ;) Please let me know what they say. What do your jobs do?

Re: MongoDB instrumentation in New Relic using Mongoid 2.0.0.beta.19

2010-11-03 Thread Dan Croak
In our config/newrelic.yml, we have: disable_mongodb: true In config/initializers/mongo_method_tracers, we have: Rails.configuration.after_initialize do Mongo::Cursor.class_eval do add_method_tracer :refill_via_get_more, 'Database/#{collection.name}/get_more' add_method_tracer

Re: patron gem install issues

2010-11-10 Thread Dan Croak
I ran into the same thing earlier today. Solved it by switching to RestClient. On Nov 10, 2010, at 6:38 PM, guillaume fradin guillaumefra...@googlemail.com wrote: this error prevents me from deploying. Has any experienced this? Installing patron (0.4.10) with native extensions

Re: amazon simple email service + heroku

2011-02-04 Thread Dan Croak
the sending user's email to the Reply-To header so the receiver can just reply normally. We decided to remove the Reply-To feature for now. On Fri, Feb 4, 2011 at 12:51 PM, Dan Croak dcr...@thoughtbot.com wrote: That doesn't appear to be true once you've moved out of their sandbox

Re: amazon simple email service + heroku

2011-02-04 Thread Dan Croak
the phone, we had production access. On Fri, Feb 4, 2011 at 12:54 PM, Miles Smith mi...@vimae.com wrote: How does one remove themselves from the sandbox? On Fri, Feb 4, 2011 at 9:51 AM, Dan Croak dcr...@thoughtbot.com wrote: That doesn't appear to be true once you've moved out

Re: amazon simple email service + heroku

2011-02-07 Thread Dan Croak
Amazon has now removed the email address verification requirement of the Reply-To header. Sweet! On Fri, Feb 4, 2011 at 12:53 PM, Dan Croak dcr...@thoughtbot.com wrote: The only problem we've seen so far is not being able to use the Reply-To header because THAT email address must be verified

Re: Mobile strategy

2011-03-18 Thread Dan Croak
I'm using mobile-fu on a few Rails apps on Heroku: https://github.com/brendanlim/mobile-fu It does device detection by checking the user agent against a giant regex. It also provides a mobile mime type so you can put your mobile-specific views in their own foo.mobile.erb views if you want. On

Re: Problems with Hoptoad

2011-05-19 Thread Dan Croak
Hi Michael, I imagine that the addon is no longer listed because of the EOL of the Hoptoad Beta addon. Did you receive an email recently from Heroku like the one below my signature? You shouldn't have received an application error from Hoptoad, though. We'll look into that. Dan Croak thoughtbot

Re: push without restart

2011-08-08 Thread Dan Croak
You could try a script like Kumade and patch it so that it always does a restart after migrating: https://github.com/thoughtbot/kumade On Mon, Aug 8, 2011 at 2:42 PM, John Beynon j...@beynon.org.uk wrote: This isn't something that has affected myself but in selling Heroku to the other devs at

Re: Rails parameter question...

2012-03-17 Thread Dan Croak
Peeking into the Rails 2.3.8, params parsing is handled by ActionContoller::ParamsParser, which is located in actionpack/lib/action_controller/params_parser.rb: https://github.com/rails/rails/blob/240f4e944cd90fca138aba8467456043952110cc/actionpack/lib/action_controller/params_parser.rb