module Omnitest::Psychic::Factories::UsesBundler

Public Instance Methods

bundle_command() click to toggle source
# File lib/omnitest/psychic/factories/ruby_factories.rb, line 5
def bundle_command
  bundler_active? ? 'bundle exec ' : ''
end

Protected Instance Methods

bundler_active?() click to toggle source
# File lib/omnitest/psychic/factories/ruby_factories.rb, line 11
def bundler_active?
  psychic.task_factory_manager.active? BundlerTaskFactory
end