Sha256: e82d427345b758718e7efef7a921545896d417dadf9e381f2dc67d064993bb08

Contents?: true

Size: 564 Bytes

Versions: 6

Compression:

Stored size: 564 Bytes

Contents

module Bundler
  class CLI::Clean
    attr_reader :options

    def initialize(options)
      @options = options
    end

    def run
      require_path_or_force
      Bundler.load.clean(options[:"dry-run"])
    end

  protected

    def require_path_or_force
      if !Bundler.settings[:path] && !options[:force]
        Bundler.ui.error "Cleaning all the gems on your system is dangerous! " \
          "If you're sure you want to remove every system gem not in this " \
          "bundle, run `bundle clean --force`."
        exit 1
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
bundler-1.11.2 lib/bundler/cli/clean.rb
bundler-1.11.1 lib/bundler/cli/clean.rb
bundler-1.11.0 lib/bundler/cli/clean.rb
bundler-1.11.0.pre.2 lib/bundler/cli/clean.rb
bundler-1.11.0.pre.1 lib/bundler/cli/clean.rb
shopify-bundler-1.10.7 lib/bundler/cli/clean.rb