I've create an app on my local MAC MINI machine in Rails 2.2.2 with Webrick it works
Now I want upload the app on Heroku
$ heroku create myapponline --stack cedar
ok, and after I check if I exist the app on heroku
$ git remote -v
> heroku git@heroku.com:myapponline.git (fetch)
> heroku git@heroku.com:myapponline.git (push)
Great!
but when I want upload the app
$ git push heroku master
> Counting objects: 124, done. Delta compression using up to 4 threads.
> Compressing objects: 100% (110/110), done. Writing objects: 100%
> (124/124), 75.90 KiB, done. Total 124 (delta 21), reused 0 (delta 0)
>
> -----> Heroku receiving push ! Heroku push rejected, no Cedar-supported app detected
>
> To git@heroku.com:myapponline.git ! [remote rejected] master ->
> master (pre-receive hook declined) error: failed to push some refs to
> 'git@heroku.com:myapponline.git'
NOTE when I digit $ git status all files are in the master branch
thank you in advance,
A