Why am I getting an error on Heroku that suggests I need to migrate my app to Bamboo?

Posted by user242065 on Stack Overflow See other posts from Stack Overflow or by user242065
Published on 2010-06-06T03:36:16Z Indexed on 2010/06/06 3:42 UTC
Read the original article Hit count: 363

Filed under:
|
|
|

When I type: git push heroku master, this is what happens

@68-185-86-134:sample_app git push heroku master
Counting objects: 110, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (94/94), done.
Writing objects: 100% (110/110), 87.48 KiB, done.
Total 110 (delta 19), reused 0 (delta 0)

-----> Heroku receiving push
-----> Rails app detected
 !     This version of Rails is only supported on the Bamboo stack
 !     Please migrate your app to Bamboo and push again.
 !     See http://docs.heroku.com/bamboo for more information
 !     Heroku push rejected, incompatible Rails version

error: hooks/pre-receive exited with error code 1
To [email protected]:blazing-frost-89.git
 ! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to '[email protected]:blazing-frost-89.git'

My .gems file:

rails --version 2.3.8

My .git/config file:

[core]
  repositoryformatversion = 0
  filemode = true
  bare = false
  logallrefupdates = true
  ignorecase = true
[remote "origin"]
  url = [email protected]:csmeder/sample_app.git
  fetch = +refs/heads/*:refs/remotes/origin/*
[remote "heroku"]
  url = [email protected]:blazing-frost-89.git
  fetch = +refs/heads/*:refs/remotes/heroku/*

© Stack Overflow or respective owner

Related posts about ruby

Related posts about git