In the README it has a [good section on including individual components](https://github.com/rubyworks/facets#usage). Still I wasn't sure about adding requires to my rails config directory, so I checked to see if I could add them in my Gemfile – and, I can! From [the bundler docs](http://bundler.io/v1.1/gemfile_man.html#REQUIRE-AS-require-): ``` gem "redis", :require => ["redis/connection/hiredis", "redis"] ```