Sha256: 10b7e7c56dc06ecb7dbceefae12718d98bc10714565c1636d7b65a2ed6a5dd96

Contents?: true

Size: 1.06 KB

Versions: 65

Compression:

Stored size: 1.06 KB

Contents

require 'bibliothecary/version'
require 'bibliothecary'
require 'commander'

module Bibliothecary
  class CLI
    include Commander::Methods

    def run
      program :name, 'Bibliothecary'
      program :version, Bibliothecary::VERSION
      program :description, 'Parse dependency information from a file or folder of code'

      command(:list) do |c|
        c.syntax = 'bibliothecary list'
        c.description = 'List dependencies'
        c.option("--path FILENAME", String, "Path to file/folder to analyse")
        c.action do |_args, options|
          options.default path: './'
          output = Bibliothecary.analyse(options.path)
          output.each do |manifest|
            puts "#{manifest[:path]} (#{manifest[:platform]})"
            manifest[:dependencies].group_by{|d| d[:type] }.each do |type, deps|
              puts "  #{type}"
              deps.each do |dep|
                puts "    #{dep[:name]} #{dep[:requirement]}"
              end
              puts
            end
            puts
          end
        end
      end

      run!
    end
  end
end

Version data entries

65 entries across 65 versions & 1 rubygems

Version Path
bibliothecary-6.8.9 lib/bibliothecary/cli.rb
bibliothecary-6.8.8 lib/bibliothecary/cli.rb
bibliothecary-6.8.7 lib/bibliothecary/cli.rb
bibliothecary-6.8.6 lib/bibliothecary/cli.rb
bibliothecary-6.8.5 lib/bibliothecary/cli.rb
bibliothecary-6.8.4 lib/bibliothecary/cli.rb
bibliothecary-6.8.3 lib/bibliothecary/cli.rb
bibliothecary-6.8.2 lib/bibliothecary/cli.rb
bibliothecary-6.8.1 lib/bibliothecary/cli.rb
bibliothecary-6.8.0 lib/bibliothecary/cli.rb
bibliothecary-6.7.4 lib/bibliothecary/cli.rb
bibliothecary-6.7.3 lib/bibliothecary/cli.rb
bibliothecary-6.7.2 lib/bibliothecary/cli.rb
bibliothecary-6.7.1 lib/bibliothecary/cli.rb
bibliothecary-6.6.0 lib/bibliothecary/cli.rb
bibliothecary-6.4.0 lib/bibliothecary/cli.rb
bibliothecary-6.3.2 lib/bibliothecary/cli.rb
bibliothecary-6.3.1 lib/bibliothecary/cli.rb
bibliothecary-6.3.0 lib/bibliothecary/cli.rb
bibliothecary-6.2.1 lib/bibliothecary/cli.rb