class String

Public Instance Methods

>(arg) click to toggle source
# File lib/remoting/dsl/string.rb, line 2
def > (arg)
  self << " > " << "#{arg}"  
  arg.clear
  self
end
>>(arg) click to toggle source
# File lib/remoting/dsl/string.rb, line 8
def >> (arg)
  self << " >> " << "#{arg}"  
  arg.clear
  self
end
join(*args) click to toggle source
# File lib/remoting/dsl/string.rb, line 20
def join(*args)
  Pathname.new(self).join(*args).to_s
end
|(arg) click to toggle source
# File lib/remoting/dsl/string.rb, line 14
def | (arg)
  self << " | " << "#{arg}"  
  arg.clear
  self
end