Sha256: b4e1ab4d92d25d7ddc3487ab500b7eeed4464f61b3b27e3e29bf55d4a39f9b72

Contents?: true

Size: 866 Bytes

Versions: 13

Compression:

Stored size: 866 Bytes

Contents

# frozen_string_literal: true
module Bundler
  class CLI::Viz
    attr_reader :options, :gem_name
    def initialize(options)
      @options = options
    end

    def run
      require "graphviz"
      output_file = File.expand_path(options[:file])
      graph = Graph.new(Bundler.load, output_file, options[:version], options[:requirements], options[:format], options[:without])
      graph.viz
    rescue LoadError => e
      Bundler.ui.error e.inspect
      Bundler.ui.warn "Make sure you have the graphviz ruby gem. You can install it with:"
      Bundler.ui.warn "`gem install ruby-graphviz`"
    rescue StandardError => e
      raise unless e.message =~ /GraphViz not installed or dot not in PATH/
      Bundler.ui.error e.message
      Bundler.ui.warn "Please install GraphViz. On a Mac with homebrew, you can run `brew install graphviz`."
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
bundler-1.12.6 lib/bundler/cli/viz.rb
bundler-1.12.5 lib/bundler/cli/viz.rb
bundler-1.12.4 lib/bundler/cli/viz.rb
bundler-1.12.3 lib/bundler/cli/viz.rb
bundler-1.12.2 lib/bundler/cli/viz.rb
bundler-1.12.1 lib/bundler/cli/viz.rb
bundler-1.12.0 lib/bundler/cli/viz.rb
bundler-1.12.0.rc.4 lib/bundler/cli/viz.rb
bundler-1.12.0.rc.3 lib/bundler/cli/viz.rb
bundler-1.12.0.rc.2 lib/bundler/cli/viz.rb
bundler-1.12.0.rc lib/bundler/cli/viz.rb
bundler-1.12.0.pre.2 lib/bundler/cli/viz.rb
bundler-1.12.0.pre.1 lib/bundler/cli/viz.rb