Re: Is it possible to use CarrierWave on Heroku without relying on cache?

2011-05-26 Thread iwasrobbed
Thanks Mark! It's not the ideal solution since the gem is starting to look stale, but it's a great place to start for the basics On May 25, 12:33 pm, Mark Ellul mark.el...@gmail.com wrote: There is an s3 gem upload gem which allows straight from the browser to s3 uploads... gem

Setting default app name?

2011-05-26 Thread Pulley
I just updated my heroku gem from 1.17.5 to 2.1.4. Suddenly, the gem does not recognize my default app. I have a git remote called 'heroku', but when I try, for example, heroku console, I get 'No app specified'. Obviously, it works when I add '--app myapp', but I'd rather not specify the app

Re: Setting default app name?

2011-05-26 Thread David Dollar
This happens if you have more than one git remote as a heroku app to avoid running commands on the wrong app. You can set the default remote by running git config heroku.remote heroku Cheers, David On Thursday, May 26, 2011 at 12:49 PM, Pulley wrote: I just updated my heroku gem from 1.17.5

Re: How to handle blog while using Heroku?

2011-05-26 Thread szh
You may want to try out Governer https://github.com/carpeliam/governor. It was mentioned on the last episode of the Ruby5 podcast (http://ruby5.envylabs.com/episodes/180-episode-177-may-24-2011/stories/1590-governor). I never tried it out myself, but it sounds good. Good Luck! -- You

Re: Setting default app name?

2011-05-26 Thread Pulley
David, that is exactly what I needed. Thank you! Should this be in the Heroku docs? Seems like a fairly common problem, having more than one remote (stage sites, etc). Anyway, just a thought, thanks again! On May 26, 1:06 pm, David Dollar da...@heroku.com wrote: This happens if you have more