LRDesign/Caliph

View on GitHub
lib/caliph.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Caliph
  # Returns an instance of the default {Shell}
  # @todo add alternative shells - e.g. SSHShell
  def self.new
    Shell.new
  end
end

require 'caliph/command-line'
require 'caliph/command-chain'
require 'caliph/command-line-dsl'
require 'caliph/shell-escaped'
require 'caliph/shell'