Sha256: a6c5ffb4df24be16ec06af65e2def8781d143827defce807a8601a6ce39ba1cb

Contents?: true

Size: 508 Bytes

Versions: 14

Compression:

Stored size: 508 Bytes

Contents

# frozen-string-literal: true

module Rodbot
  class CLI
    module Commands
      extend Dry::CLI::Registry

      register 'credentials', Credentials, aliases: %w(cred)
      register 'deploy', Deploy
      register 'new', New
      register 'simulator', Simulator, aliases: %w(sim)
      register 'start', Start, aliases: %w(up)
      register 'stop', Stop, aliases: %w(down)
      register 'console', Console, aliases: %w(c)
      register 'version', Version, aliases: %w(-v --version)
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
rodbot-0.4.5 lib/rodbot/cli/commands.rb
rodbot-0.4.4 lib/rodbot/cli/commands.rb
rodbot-0.4.3 lib/rodbot/cli/commands.rb
rodbot-0.4.2 lib/rodbot/cli/commands.rb
rodbot-0.4.1 lib/rodbot/cli/commands.rb
rodbot-0.4.0 lib/rodbot/cli/commands.rb
rodbot-0.3.4 lib/rodbot/cli/commands.rb
rodbot-0.3.3 lib/rodbot/cli/commands.rb
rodbot-0.3.2 lib/rodbot/cli/commands.rb
rodbot-0.3.1 lib/rodbot/cli/commands.rb
rodbot-0.3.0 lib/rodbot/cli/commands.rb
rodbot-0.2.0 lib/rodbot/cli/commands.rb
rodbot-0.1.1 lib/rodbot/cli/commands.rb
rodbot-0.1.0 lib/rodbot/cli/commands.rb