# Sequel Sequel is an orm and database connector. It is easy to use and configure. It handles connection with DB, sql request creation, caching, etc. [Sequel documentation](http://sequel.jeremyevans.net/documentation.html) ## Installation ```bash gem install sequel ``` ## Usage You can add the following code in ``/sequel.rb``: ```ruby require 'sequel' DB = Sequel.connect(ENV['DATABASE_URL']) ```