Re: Rails 3 doesn't officially support Ruby 1.9.1

2010-08-11 Thread Stefan Wintermeyer
Am 12.08.2010 um 01:59 schrieb Mitchell Hashimoto: > I would recommend running Rails 3 on Ruby > 1.8.7, which is supported, and which I can say from experience works > great. In my experience it doesn't work good enough for environments which need UTF8. Stefan -- AMOOMA GmbH - Bachstr. 126 -

Re: Rails 3 doesn't officially support Ruby 1.9.1

2010-08-11 Thread Stefan Wintermeyer
Am 11.08.2010 um 23:43 schrieb 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. What I don't get is th

Re: Rails 3 doesn't officially support Ruby 1.9.1

2010-08-11 Thread Oren Teich
After Ruby 1.9.2 is available and out of beta/RC etc we will follow up within a few weeks with support for 1.9.2. Looking forward to the 1.9.2 release myself. Oren On Wed, Aug 11, 2010 at 4:59 PM, Mitchell Hashimoto wrote: > Stefan, > > Rails 3 doesn't officially support Ruby 1.9.1, and I've fo

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 machine in the Heroku cloud each time you deploy. Even if you

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: 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 > wrote: > Hi guys: I've just installed Memcached and my deve

Re: Rails 3 doesn't officially support Ruby 1.9.1

2010-08-11 Thread Mitchell Hashimoto
Stefan, Rails 3 doesn't officially support Ruby 1.9.1, and I've found Ruby 1.9.1 to be horrendously unstable anyways. Ruby 1.9.2 is in RC stages, so a final release should come soon, but there is no sign as to when Heroku would support this. I would recommend running Rails 3 on Ruby 1.8.7, which i

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 wrote: > On Mon, Aug 9, 2010 at 6:41 PM, Jacob Hodes 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

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 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. graphviz genera

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 wrote: > This bug is n

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 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 going to have

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 < stefan.winterme...@

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 wrote: > Hi guys: I've just installed Memcached and my development environment > is hosed - responds with > > > ch...@chris-laptop:~/strong-fog-31$ ruby script/server > => Boo

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, but

how to use a command-line utility?

2010-08-11 Thread Jacob Hodes
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. graphviz generates a graph and saves it to a file. Then I upload the file back

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:

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 get_db_set

Re: Rails3 RC from master failed to start

2010-08-11 Thread Pasha
This bug is now fixed http://github.com/carlhuda/bundler/blob/master/CHANGELOG.md Please update bundler to 1.0.0.rc4 On Aug 6, 3:49 am, Terence Lee wrote: > We have a workaround here:http://docs.heroku.com/bundler100rc2-git > > Please file a support ticket if you're still having issues > > Thank

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 gemeinschaft.he

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 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 bellow: >    http://doc

Re: private git repos in bundler

2010-08-11 Thread darkhelmetlive
What happens if you use the HTTP URL, with username/password in the URL? Either than, or vendor that repo. - Daniel On Aug 6, 10:31 am, David Balatero wrote: > If I have a private library on Github that I want to include in my Heroku > app via Bundler, I know I can pass the Git-SSH URL to Bundl