class Luban::Deployment::Packages::Bundler::Installer

Public Instance Methods

installed?() click to toggle source
# File lib/luban/deployment/packages/bundler.rb, line 10
def installed?
  return false unless file?(bundler_executable)
  match?("#{bundler_executable} -v", package_version)
end

Protected Instance Methods

build_package() click to toggle source
Calls superclass method
# File lib/luban/deployment/packages/bundler.rb, line 17
def build_package
  if file?(bundler_executable)
    uninstall_gem! and super
  else
    super
  end
end