Rails 3 doesn't officially support Ruby 1.9.1

2010-08-11 Thread Stefan Wintermeyer
Hi, just wanted to do a heroku rake db:migrate and look what happened. The current situation with Ruby 1.9.1 on Heroku is a bit disappointing. I really would like to use Heroku but haven't been able to fire up a single Rails 3 server yet. ---cut--- s...@swmbp 0 1.9.2-preview3

Re: NOTICE: Updating Bundler this week

2010-08-11 Thread Abel
I'm having the same problem as you, Sergio. Working on a Saturday night... :( On Aug 7, 9:16 pm, Sergio Lima sergiosouzal...@gmail.com wrote: Hi,    I'm using Rails 3.0.0.beta3 and ruby 1.9.2.    I tried to deploy to heroku today and I received some errors.    Then I followed the link

pg_dump version mismatch

2010-08-11 Thread sthapit
I'm auto backing up my database to S3 using code from http://github.com/jpearl/heroku_backups but it's giving me this error: pg_dump: server version: 8.3.11; pg_dump version: 8.3.7 pg_dump: proceeding despite version mismatch Can someone help? I've pasted the pg_dump code below. def

Running Memcached

2010-08-11 Thread Chris Kalaboukis
Hi guys: I've just installed Memcached and my development environment is hosed - responds with ch...@chris-laptop:~/strong-fog-31$ ruby script/server = Booting WEBrick = Rails 2.3.8 application starting on http://0.0.0.0:3000 Missing these required gems: memcached-northscale You're running:

Cron + Delayed Job

2010-08-11 Thread Arpan
Is it possible to use a Cron Job to start a worker, run a series of jobs and then shut down the worker? Basically I am going to have a few jobs that need to run once a day. I need to update a large number of records from a supplier on a daily or weekly basis. The job will take a couple hours,

Re: Running Memcached

2010-08-11 Thread Abel Tamayo
Why are you installing memcached-northscale instead of just memcached? On Wed, Aug 11, 2010 at 12:34 AM, Chris Kalaboukis thinkfut...@gmail.comwrote: Hi guys: I've just installed Memcached and my development environment is hosed - responds with ch...@chris-laptop:~/strong-fog-31$ ruby

Re: Rails 3 doesn't officially support Ruby 1.9.1

2010-08-11 Thread Abel Tamayo
The best you can do is either find a deployment stack with the specifications you're using or adapt your environment to what is offered by Heroku. I'm checking the documents and it seems that Bamboo MRI supports Ruby 1.9.1. On Tue, Aug 10, 2010 at 10:53 AM, Stefan Wintermeyer

Re: Cron + Delayed Job

2010-08-11 Thread James Bracy
This is one way to implement it: http://blog.darkhax.com/2010/07/30/auto-scale-your-resque-workers-on-heroku On Tue, Aug 10, 2010 at 11:28 AM, Arpan arpa...@gmail.com wrote: Is it possible to use a Cron Job to start a worker, run a series of jobs and then shut down the worker? Basically I am

Re: Rails3 RC from master failed to start

2010-08-11 Thread Abel Tamayo
Guys, what's the command to install RC4? I'm trying something like: gem install bundler --version '1.0.0.rc.4' --pre but I'm getting an error that that version can't be found in any of the sources (rubygems). I can only install RC5. On Tue, Aug 10, 2010 at 3:33 AM, Pasha pavel.chip...@gmail.com

Re: how to use a command-line utility?

2010-08-11 Thread Richard Conroy
On Mon, Aug 9, 2010 at 6:41 PM, Jacob Hodes jho...@gmail.com wrote: Hi, I'm developing a Rails app that makes use of a command-line tool called Graphviz (http://www.graphviz.org). Changes get made in the Rails app, then a background job is fired which runs graphviz as a system command.

Re: how to use a command-line utility?

2010-08-11 Thread David Balatero
On Wed, Aug 11, 2010 at 3:43 PM, Richard Conroy richard.con...@gmail.comwrote: On Mon, Aug 9, 2010 at 6:41 PM, Jacob Hodes jho...@gmail.com wrote: Hi, I'm developing a Rails app that makes use of a command-line tool called Graphviz (http://www.graphviz.org). Changes get made in the Rails

Re: Running Memcached

2010-08-11 Thread Chris Kalaboukis
Heroku told me to add that to my manifest... On Wed, 2010-08-11 at 23:38 +0200, Abel Tamayo wrote: Why are you installing memcached-northscale instead of just memcached? On Wed, Aug 11, 2010 at 12:34 AM, Chris Kalaboukis thinkfut...@gmail.com wrote: Hi guys: I've just installed

Re: Workflow to allow heroku to install a 'private' (local) gem on deploy

2010-08-11 Thread Bradley
Right, so I added in: Host heroku.com ForwardAgent yes to my Tomcat user's ~/.ssh/config. This is the user that checks out from Github then pushes to heroku. I still get the same error, Permission denied (publickey). Can you explain how this is supposed to work? I'm confused as to how Heroku

Re: Workflow to allow heroku to install a 'private' (local) gem on deploy

2010-08-11 Thread David Balatero
If Bundler is running on Heroku, the Heroku UNIX user account needs to have its public key in your Github repo as an authorized key. Each Heroku machine will have a different SSH key generated, and you non-deterministically deploy to some machine in the Heroku cloud each time you deploy. Even if