class Guard::Cli::Environments::Bundler

def verify

def verify
  return unless File.exist?("Gemfile")
  return if ENV["BUNDLE_GEMFILE"] || ENV["RUBYGEMS_GEMDEPS"]
  UI.info <<EOF
re! It looks like your project has a Gemfile, yet you are running
outside of Bundler. If this is your intent, feel free to ignore this
 Otherwise, consider using `bundle exec guard` to ensure your
cies are loaded correctly.
 run `guard` with --no-bundler-warning to get rid of this message.)
end