Posts tagged 'gemfiles' Page 1 of 1

Custom Gemfiles

When I’m writing or collaborating on a gem, I like to use a couple of useful lint tools every now and then. These are good for finding code smells, untested code or hinky syntax. There are a bunch...

Gemfile Constraints

You can specify various different constraints in your Gemfiles when requiring other gems: ~> # the pessimistic version constraint =, >, <, >= # obvious, right? ...