thoughtbot / cocaine

A small library for doing (command) lines.
https://robots.thoughtbot.com
Other
785 stars 55 forks source link

require pathname during tests #86

Closed ktdreyer closed 9 years ago

ktdreyer commented 9 years ago

Commit ba7630ab83945a4eb11d3e0a30fe3664bd3d9a84 introduced a dependency on the pathname library. When running the tests outside of Bundler on Fedora 23, Ruby cannot find this library:

  $ rspec -Ilib spec

  ... snip ...

     NameError:
       uninitialized constant Pathname

Add the gem to the spec_helper to ensure that Ruby loads it in all cases.

ktdreyer commented 9 years ago

Cool, thanks for the merge @jyurek :)