Venkat, The error related to loading "sequel" most likely means you don't have Sequel installed at all. You can install it as following:
$ gem install sequel If you want Postgres support you also need to install the "pg" gem if I'm not mistaken. This gem can be installed as following: $ gen install pg Once that's done you need to make sure your database adapter is set to "pg": DB = Sequel.connect(:adapter => 'pg', ...) Yorick -- You received this message because you are subscribed to the Google Groups "sequel-talk" group. To view this discussion on the web visit https://groups.google.com/d/msg/sequel-talk/-/lfOnPEeDdV4J. 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/sequel-talk?hl=en.
