Top Level Namespace

Defined Under Namespace

Modules: Chairs, Pow Classes: PowError, SimctlParser

Instance Method Summary collapse

Instance Method Details

#Pow(*args, &block) ⇒ Object

Path based in current working directory



4
5
6
# File 'lib/pow/pow.rb', line 4

def Pow(*args, &block)
  Pow::Base.open(*args, &block)
end

#Pow!(*args, &block) ⇒ Object

Path based in the current file’s directory



9
10
11
12
# File 'lib/pow/pow.rb', line 9

def Pow!(*args, &block)
  file_path = ::File.dirname(caller[0])
  Pow(file_path, *args, &block)
end