module Jumunge

Constants

VERSION

Public Class Methods

jumunge(object, *paths) click to toggle source
# File lib/jumunge.rb, line 168
def jumunge(object, *paths)
  paths.inject(object) do |result, path|
    Jumunge.new(result, path).perform
  end
end

Private Instance Methods

jumunge(object, *paths) click to toggle source
# File lib/jumunge.rb, line 168
def jumunge(object, *paths)
  paths.inject(object) do |result, path|
    Jumunge.new(result, path).perform
  end
end