On Sunday, February 3, 2013 2:30:20 PM UTC-8, Clint Pachl wrote: > I noticed that sequel_core gem is at version 3.8.0, Feb 5, 2010. I'm > guessing sequel_core is not being maintained as a gem. Right? > > If I only want Sequel Core functionality, is it best to install the latest > Sequel gem and then only require the core component? >
Correct. sequel_core is just an empty gem that depends on sequel. > > For example: > require 'sequel_core' > or > require 'sequel/core' > > Is one preferred? > require 'sequel/core' is preferred. require 'sequel_core' will work at least until Sequel 4, and possibly even after that. Thanks, Jeremy -- You received this message because you are subscribed to the Google Groups "sequel-talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sequel-talk?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
