class Selfiegram::Runner

Public Class Methods

root() click to toggle source
# File lib/runner/runner.rb, line 10
def root
  File.expand_path(File.join(__FILE__, "../../../"))
end
run(options={}) click to toggle source
# File lib/runner/runner.rb, line 4
def run(options={})
  options = Options.new(options).to_h

  Selfiegram.send(options[:action], options)
end