Re: Git push with multiple apps

2010-07-29 Thread Neil Middleton
http://docs.heroku.com/git#how-heroku-uses-git-remotes On Wed, Jul 28, 2010 at 2:20 PM, barbq wrote: > Hi, > > I've just created my second app, and I was wondering how do I control > git to push files into which app? > > Thanks.. > > -- > You received this message because you are subscribed to t

Re: Git push with multiple apps

2010-07-29 Thread Henry Wagner
Hi, What I do is have a separate directory for each app /heroku/app1 /heroku/app2 For each app, do cd /heroku/app1 git init git add . git commit -m "initial commit" heroku create git push heroku master cd /heroku/app2 This will create separate heroku apps, and separate git repositories. Whe

Re: YAML::load(string) failing on Heroku with 'an instance of IO needed'

2010-07-29 Thread Justin
I discovered the issue. The problem was a difference in SQLite/ PostgreSQL connector behavior. The SQLite connector seems to allow field access by index, but the PostreSQL connector returned nil values when I tried to access the field by index. When I changed "grid[0]" to "grid['id']", etc, the

Re: YAML::load(string) failing on Heroku with 'an instance of IO needed'

2010-07-29 Thread Matthew A. Brown
You could try using a StringIO as a workaround On Wed, Jul 28, 2010 at 16:35, Justin wrote: > Hi folks!  Can someone help me find the problem with my migration, > below?  It's working fine on my local environment, but when I run it > in Heroku I get 'an instance of IO needed' error.  I shouldn't

Missing the Rails 2.3.8 gem. Please `gem install -v=2.3.8 rails

2010-07-29 Thread jgervin
Getting the "Missing the Rails 2.3.8 gem. Please `gem install -v=2.3.8 rails`, update your RAILS_GEM_VERSION setting in config/environment.rb for the Rails version you do have installed, or comment out RAILS_GEM_VERSION to use the latest version installed." error. Not sure what to do? Yes, I have

Re: new Bundler version?

2010-07-29 Thread Eric Hurst
> Will Heroku be upgrading to that version of Bundler? I'm not sure how > to test our Rails 3 on Heroku otherwise. +1 for Bundler RC support. -- You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to her...@googlegroups.com

Quickstart: "const_missing" error on Create

2010-07-29 Thread Lance
I'm trying Heroku for the first time and on step 3 of the Quickstart I'm already stuck: http://docs.heroku.com/quickstart When I try to use "heroku create", I get the following error, which seems to be related to the HTTP_PROXY environment variable. In my case, its not set, because I'm not behind

Re: new Bundler version?

2010-07-29 Thread nader
I'm in the same boat. Thanks. On Jul 26, 5:57 am, Dan Croak wrote: > 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-se

Re: workers dying overnight

2010-07-29 Thread Pito Salas
That's a scary subject line!! ;) -- Pito On Thu, Jul 29, 2010 at 11:10 AM, Alex Chaffee wrote: > I wrote a simple Heroku app to do service monitoring. It uses > DelayedJob to queue up repeating tasks like doing an HTTP ping of a > server once a minute or once an hour. > > Twice now the worker h

Custom Error Pages

2010-07-29 Thread daniel hoey
Is there anyway to use our own error pages instead of the Heroku ones? -- You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to her...@googlegroups.com. To unsubscribe from this group, send email to heroku+unsubscr...@goo

YAML::load(string) failing on Heroku with 'an instance of IO needed'

2010-07-29 Thread Justin
Hi folks! Can someone help me find the problem with my migration, below? It's working fine on my local environment, but when I run it in Heroku I get 'an instance of IO needed' error. I shouldn't need an IO instance since I'm passing a string to the method--or at least that's the intent. The in

Update Bundler to 1.0.0.rc.1 for use with Rails 3.0.0.rc?

2010-07-29 Thread Nate W
I know it's only been a day, but Rails 3.0 RC1 is really a huge improvement over beta4 and for now I can't upgrade because I get the error on pushing: -> Gemfile detected, running Bundler No compatible versions could be found for required dependencies: Conflict on: "bundler":

Git push with multiple apps

2010-07-29 Thread barbq
Hi, I've just created my second app, and I was wondering how do I control git to push files into which app? Thanks.. -- You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to her...@googlegroups.com. To unsubscribe from th

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 wrote: > I wrote a simple Heroku app to do service monitoring. It uses > DelayedJob to queue up repe

Re: Animating Bundles

2010-07-29 Thread davidvm
Heroku support already replied and said that the Bundles animate function is currently broken. So this answers my question. The option for now is to download the bundle and extract it to get a copy of the code and a pgdump of the database. You could then load this pgdump into a local Postgres datab

workers dying overnight

2010-07-29 Thread Alex Chaffee
I wrote a simple Heroku app to do service monitoring. It uses DelayedJob to queue up repeating tasks like doing an HTTP ping of a server once a minute or once an hour. Twice now the worker has died overnight. "heroku workers" still says I'm running 1 worker, but there's no message in "heroku logs"

Re: Programmatically Spinning Workers Up and Down

2010-07-29 Thread Anand Ramanathan
I havent had the need for multiple dynos, but this link seems to be about scaling dynos, not workers - is that correct? On Sat, Jul 17, 2010 at 10:58 PM, Ben Schwarz wrote: > I assume that you haven't seen this recent release from ddollar. > > http://github.com/ddollar/heroku-autoscale > > -- >