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 <[email protected]> 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 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 <[email protected]> wrote: > > 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 # Looking like sequel, the command, is not available at least > not > > in this way > > > > Am I totally missing something here or is this just not doable with > Sequel > > and Heroku? > > > > Thanks again, > > > > Scott > > > > > > > > > > > > On Tue, Aug 24, 2010 at 4:04 PM, Josh Coffman <[email protected]> > wrote: > > > call the heroku cli from your rake task. > > >http://docs.heroku.com/heroku-command > > > > > <http://docs.heroku.com/heroku-command> > > > > > On Mon, Aug 23, 2010 at 6:33 AM, Scott LaBounty <[email protected] > >wrote: > > > > >> All, > > > > >> I'm trying to figure out how to have run a sequel migration on Heroku. > > >> Here's the rake task that I can use locally ... > > > > >> << > > >> namespace :db do > > >> task :migrate do > > >> version = ENV['VERSION'] ? "-M #{ENV['VERSION']}" : "" > > >> system "sequel -m dbMigration #{version} #{ENV['DATABASE_URL'] > > >> || 'sqlite://library.sqlite'} " > > >> end > > >> end > > > > >> Does anyone have any good way to use Sequel migrations on Heroku? > Hints? > > >> Anything? > > > > >> -- > > >> Scott > > >>http://steamcode.blogspot.com/ > > > > >> -- > > >> You received this message because you are subscribed to the Google > Groups > > >> "Heroku" group. > > >> To post to this group, send email to [email protected]. > > >> To unsubscribe from this group, send email to > > >> [email protected]<heroku%[email protected]> > <heroku%[email protected]<heroku%[email protected]> > > > > >> . > > >> For more options, visit this group at > > >>http://groups.google.com/group/heroku?hl=en. > > > > > -- > > > You received this message because you are subscribed to the Google > Groups > > > "Heroku" group. > > > To post to this group, send email to [email protected]. > > > To unsubscribe from this group, send email to > > > [email protected]<heroku%[email protected]> > <heroku%[email protected]<heroku%[email protected]> > > > > > . > > > For more options, visit this group at > > >http://groups.google.com/group/heroku?hl=en. > > > > -- > > Scotthttp://steamcode.blogspot.com/ > > -- > You received this message because you are subscribed to the Google Groups > "Heroku" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<heroku%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/heroku?hl=en. > > -- Scott http://steamcode.blogspot.com/ -- You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/heroku?hl=en.
