On Thursday, March 27, 2014 12:51:03 PM UTC-7, Yaroslav Zemlyanukhin wrote: > > I would like to make little contribution, but encountered with issue - no > gemfile available. Of course I could extract dependencies from > travis.gemfile or pick it step-by-step but I believe it is not proper way. >
Sequel has no dependencies other than stdlib, so a Gemfile is not needed. If you want to run the tests, you need to install some version of rspec >= 1.3, but the Rakefile works without rspec installed. Most adapters require the related gem to be installed, as do some extensions, but both the spec and spec_plugin rake tasks work with just stdlib and rspec. spec_plugin will skip the specs that require an external gem if the gem is not installed. 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. For more options, visit https://groups.google.com/d/optout.
