Sha256: 2b9d8ddcc7a1a5ce516155880597e074605c34878559c5fe17bc19cd471ce108

Contents?: true

Size: 476 Bytes

Versions: 22

Compression:

Stored size: 476 Bytes

Contents

require 'appmap/version'
require 'appmap/node_cli'

module AppMap
  module Command
    class Index < AppMap::NodeCLI
      class << self
        def run
          command = Index.new(verbose: ENV['DEBUG'] == 'true')
          command.index(ARGV)
        end
      end

      def index(arguments)
        detect_nodejs

        arguments.unshift 'index'
        arguments.unshift APPMAP_JS
        arguments.unshift 'node'

        exec(*arguments)
      end
    end
  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
appmap-0.72.2 lib/appmap/command/index.rb
appmap-0.72.1 lib/appmap/command/index.rb
appmap-0.72.0 lib/appmap/command/index.rb
appmap-0.71.0 lib/appmap/command/index.rb
appmap-0.70.2 lib/appmap/command/index.rb
appmap-0.70.1 lib/appmap/command/index.rb
appmap-0.70.0 lib/appmap/command/index.rb
appmap-0.69.0 lib/appmap/command/index.rb
appmap-0.68.2 lib/appmap/command/index.rb
appmap-0.68.1 lib/appmap/command/index.rb
appmap-0.68.0 lib/appmap/command/index.rb
appmap-0.67.1 lib/appmap/command/index.rb
appmap-0.67.0 lib/appmap/command/index.rb
appmap-0.66.2 lib/appmap/command/index.rb
appmap-0.66.1 lib/appmap/command/index.rb
appmap-0.66.0 lib/appmap/command/index.rb
appmap-0.65.1 lib/appmap/command/index.rb
appmap-0.65.0 lib/appmap/command/index.rb
appmap-0.64.0 lib/appmap/command/index.rb
appmap-0.63.0 lib/appmap/command/index.rb