Sha256: d3a4c4a5dd91ccdd33ed129ba198ac6f251984c8d601f706f088c17af23b3cce

Contents?: true

Size: 590 Bytes

Versions: 98

Compression:

Stored size: 590 Bytes

Contents

# frozen_string_literal: true

require "thor"
require_relative "ls"

module Neetob
  class CLI
    module Local
      class Commands < Thor
        desc "ls", "List the files in local neeto repos"
        option :apps, type: :array, aliases: "-a", required: true, desc: "Neeto app names. Can be matched using the '*' wildcard. Example: \"neeto*\" \"neeto-cal-web\""
        option :dir, type: :string, aliases: "-d", desc: "Mention the directory you want to list"
        def ls
          Ls.new(options[:apps], options[:dir], options[:sandbox]).run
        end
      end
    end
  end
end

Version data entries

98 entries across 98 versions & 2 rubygems

Version Path
neetob-0.2.7 lib/neetob/cli/local/commands.rb
neetob-0.2.6 lib/neetob/cli/local/commands.rb
neetob-0.2.5 lib/neetob/cli/local/commands.rb
neetob-0.2.4 lib/neetob/cli/local/commands.rb
neetob-0.2.3 lib/neetob/cli/local/commands.rb
neetob-0.2.2 lib/neetob/cli/local/commands.rb
neetob-0.2.1 lib/neetob/cli/local/commands.rb
neetob-0.2.0 lib/neetob/cli/local/commands.rb
neetob-0.1.5 lib/neetob/cli/local/commands.rb
neetob-ud-0.2.14 lib/neetob/cli/local/commands.rb
neetob-ud-0.2.13 lib/neetob/cli/local/commands.rb
neetob-0.1.4 lib/neetob/cli/local/commands.rb
neetob-ud-0.2.11 lib/neetob/cli/local/commands.rb
neetob-ud-0.2.9 lib/neetob/cli/local/commands.rb
neetob-ud-0.2.5 lib/neetob/cli/local/commands.rb
neetob-0.1.2 lib/neetob/cli/local/commands.rb
neetob-0.1.1 lib/neetob/cli/local/commands.rb
neetob-0.1.0 lib/neetob/cli/local/commands.rb