Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
After removing Nokogiri as a dependency (see rapid7#97 and 042c2a3) requiring Nexpose fails without nokogiri installed. See rapid7@042c2a3 To reproduce this issue you can use this minimalistic Gemfile: ```ruby source 'https://rubygems.org' gem 'nexpose' ``` Using the `bundle exec` command you can exclude any gems not specified in your Gemfile from your environment: ``` aus-mac-1033 @ ~/g/r/nexpose-polling λ bundle exec ruby -e "require 'nexpose'" /Users/ecarey/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/nexpose-0.9.3/lib/nexpose.rb:53:in `require': cannot load such file -- nokogiri (LoadError) from /Users/ecarey/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/nexpose-0.9.3/lib/nexpose.rb:53:in `<top (required)>' from -e:1:in `require' from -e:1:in `<main>' ```
- Loading branch information