Sha256: e6fee5be8ef9fd45c3465cea5251e6e04759e618fcb002569fbcb5ab891bb6c7

Contents?: true

Size: 533 Bytes

Versions: 6

Compression:

Stored size: 533 Bytes

Contents

require 'marv/cli/project'
require 'marv/cli/server'

module Marv
  module CLI
    class Commands < Project

      # Configure marv
      desc "config", "Configure Marv projects and servers"
      long_desc "Creates a global config.rb file that can be used to auto-configure your projects and servers"
      def config
        global = Marv::Global.new(self)
        global.reconfigure
      end

      desc "server [SUBCOMMAND]", "Manage marv servers (create, start and more...)"
      subcommand "server", Server

    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
marv-0.6.5 lib/marv/cli.rb
marv-0.6.4 lib/marv/cli.rb
marv-0.6.3 lib/marv/cli.rb
marv-0.6.2 lib/marv/cli.rb
marv-0.6.1 lib/marv/cli.rb
marv-0.6.0 lib/marv/cli.rb