Sha256: c52d0000c5c84f36782a7615910339d04928c3d97e76cd3bde6006610b8ff224

Contents?: true

Size: 559 Bytes

Versions: 6

Compression:

Stored size: 559 Bytes

Contents

require_relative 'shell/version'
require_relative 'shell/loader'
require_relative 'shell/alfrc'
module Alf
  module Shell

    # This is the default configuration to be forked from
    DEFAULT_CONFIG = Alfrc.new

    # Command factory
    def self.Command(*args)
      Quickl::Command(*args){|builder|
        builder.command_parent = Alf::Shell::Main
        builder.instance_module Shell::Support
        yield(builder) if block_given?
      }
    end

  end # module Shell
end # module Alf
require_relative 'shell/support'
require_relative 'shell/command'

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
alf-shell-0.16.4 lib/alf/shell.rb
alf-shell-0.16.3 lib/alf/shell.rb
alf-shell-0.16.2 lib/alf/shell.rb
alf-shell-0.16.1 lib/alf/shell.rb
alf-shell-0.16.0 lib/alf/shell.rb
alf-shell-0.15.0 lib/alf/shell.rb