class Bundler::CLI

def unlock

def unlock
  if locked?
    remove_lockfiles
    Bundler.ui.info("The bundle is now unlocked. The dependencies may be changed.")
  else
    Bundler.ui.info("The bundle is not currently locked.")
  end
end