Re: Heroku and Sequel Migrations

2010-08-25 Thread Scott LaBounty
Josh, Thanks for the idea, but it still doesn't work. I stripped it down a bit further and tried to just run it from a Heroku console (figuring to add it to rake later) with # heroku console system sequel --version # Hoping here to get something back showing that sequel is available = false #

Re: Heroku and Sequel Migrations

2010-08-25 Thread Josh Coffman
..hoping someone smarter than me will jump in here... At first I though you meant sql; so I searched and found this: http://sequel.rubyforge.org/ Is that what you are using? I'm just using sqlite, and have used mysql. It should work about the same for any supported db. Here's what I do for

Re: Heroku and Sequel Migrations

2010-08-25 Thread Steve Smith
I'm afraid I only have one idea then I'm out as I've not used sequel. Does system 'bundle exec sequel -v' make any difference if you are using bundler? Steve -- http://cloudmailin.com @cloudmailin Incoming email for your web app On Aug 25, 2:14 pm, Scott LaBounty slabou...@gmail.com wrote:

Re: Heroku and Sequel Migrations

2010-08-25 Thread Scott LaBounty
Steve, I'm not using bundler. Would I do this (bundle exec ...) from the heroku console? Scott On Wed, Aug 25, 2010 at 7:20 AM, Steve Smith st...@scsworld.co.uk wrote: I'm afraid I only have one idea then I'm out as I've not used sequel. Does system 'bundle exec sequel -v' make any

Re: Heroku and Sequel Migrations

2010-08-25 Thread Josh Coffman
I'm thinking that there might not be a way to do this with existing heroku commands, and if I'm wrong I hope someone says so. However, you can extend the heroku commands with a plugin. http://herocutter.heroku.com/ I didn't se one that applies. You may have to write your own. -j On Wed, Aug

Re: Heroku and Sequel Migrations

2010-08-25 Thread Robert Eanes
Never used this tool, but I would suggest you look at the source of the 'sequel' script and see what it's doing. If it's running those migrations with some ruby code, then that code is what you need to have in your db:migrate task. Also, you may have better luck describing the heroku

Re: Heroku and Sequel Migrations

2010-08-25 Thread Scott LaBounty
Well, that was the first place I asked ;-). Scott On Wed, Aug 25, 2010 at 7:36 AM, Robert Eanes rea...@gmail.com wrote: Never used this tool, but I would suggest you look at the source of the 'sequel' script and see what it's doing. If it's running those migrations with some ruby code, then

Re: Moonshado SMS beta - outdated gem brings down your site

2010-08-25 Thread Kevin Patel
Yes, please updated to 0.5.0, as 0.4.1 was the alpha gem. \Keivn On Aug 23, 11:59 pm, Caleb Harrelson atrop...@gmail.com wrote: FYI in case anybody else is running into their app going down suddenly.  My sites that use moonshado SMS's beta addon all suddenly went down tonight.  All of them

where is the support?

2010-08-25 Thread Jesse
My site is stuck in maintenance mode I submitted a ticket to Heroku 18 hours ago - it is still unassigned I don't see any issues listed at http://status.heroku.com/ Heroku support where are you? - Jesse -- You received this message because you are subscribed to the Google Groups Heroku

Custom maintenance page

2010-08-25 Thread Bryan
I'm trying out 'heroku maintenance:on' for the first time and can't figure out how to create a custom maintenance page. I watched the video and followed along ... about as simple as it could be (what else would we expect from Heroku!) ... Oren said that public/ maintenance/index.html would

ANNOUNCEMENT: Upgrading to Bundler 1.0.0.rc.6

2010-08-25 Thread Terence Lee
Hello, Bundler 1.0.0.rc.6 was pushed out yesterday with some bug fixes. You can view the complete changelog here: http://github.com/carlhuda/bundler/blob/master/CHANGELOG.md The new Rails 3 RC2 also requires the newest version of bundler. We're planning to rollout the new version of bundler

Re: db problems... relation --- does not exist (ActiveRecord::StatementInvalid)

2010-08-25 Thread Chris Kimpton
doh- thanks to Jesse with the clue about the restart command. I did heroku restart and now it works - yay! Chris On 25 August 2010 20:27, Chris Kimpton ch...@kimptoc.net wrote: Hi, I have a starter app that I am trying to deploy to Heroku - it deploys and db:migrates ok, or so it seems...

Re: Custom maintenance page

2010-08-25 Thread Idris
I've noticed that sometimes the maintenance page is delayed. Try turning maintenance on and waiting for about 5-10 minutes. On Aug 24, 11:25 pm, Bryan bryan.a@gmail.com wrote: I'm trying out 'heroku maintenance:on' for the first time and can't figure out how to create a custom maintenance

Re: ANNOUNCEMENT: Upgrading to Bundler 1.0.0.rc.6

2010-08-25 Thread Chris Hanks
Hurrah! Is there any word/ETA on Ruby 1.9.2? On Aug 24, 4:16 pm, Terence Lee tere...@heroku.com wrote: Hello, Bundler 1.0.0.rc.6 was pushed out yesterday with some bug fixes.  You can view the complete changelog here:http://github.com/carlhuda/bundler/blob/master/CHANGELOG.md The new

Re: Custom maintenance page

2010-08-25 Thread Bryan
On Aug 25, 4:33 pm, Idris idr...@gmail.com wrote: I've noticed that sometimes the maintenance page is delayed.  Try turning maintenance on and waiting for about 5-10 minutes. You are correct, I see my custom page after some time. Thanks Idris -- You received this message because you are

Re: where is the support?

2010-08-25 Thread Jesse
not a browser cache issue; tried from multiple machines with multiple browsers and also using curl - Thanks anyway On Aug 25, 1:20 pm, Jeff Schmitz jeffrey.j.schm...@gmail.com wrote: Hate to ask the obvious Did you clear your browser cache? -- You received this message because you are

Re: where is the support?

2010-08-25 Thread Jesse
David, I finally got a chance to reply on the support ticket; was away from computer until now tried both suggested options but not working Thank you for reply On Aug 25, 1:11 pm, David Dollar da...@heroku.com wrote: Your slug compile might have gotten stuck. Try pushing another trivial

Backup for MongoHQ Data

2010-08-25 Thread Ginny Hendry
Am I right in assuming that Heroku bundles don't include MongoHQ data? Do db:pull or taps work with MongoHQ? If not, what are our options for backup and restore for MongoHQ databases? I'm sure MongoHQ has backups in case their disks crash but I need my own backups in case I or a user destroys

Re: Backup for MongoHQ Data

2010-08-25 Thread Chris Hanks
Use the mongodump utility from the command line. It comes with mongodb, and can be pointed at whatever remote database you like. For example, try a ruby script that looks something like: host = 'flame.mongohq.com:27000' db = 'ginnys-database' user = 'ginny' pass = 'password' `mongodump