Class SFL
In: lib/sfl.rb
Parent: Object

Methods

Constants

VERSION = "2.3".freeze
SHELL_SPECIALS = %r([\*\?\{\}\[\]<>\(\)~&\|\\\$;'`"\n])m.freeze
REDIRECTION_MAPPING = { :in => STDIN, :out => STDOUT, :err => STDERR, }

Attributes

argument  [R] 
command  [R] 
environment  [R] 
option  [R] 

Public Class methods

SFL.new(‘ls’, ’-a’) becomes

  @environment = {}
  @command = ['ls', 'ls']
  @argument = ['-a']
  @option = {}

Public Instance methods

[Validate]