Module: Jumunge

Defined in:
lib/jumunge.rb,
lib/jumunge/version.rb

Constant Summary collapse

VERSION =
"0.2.0"

Class Method Summary collapse

Class Method Details

.jumunge(object, *paths) ⇒ Object



168
169
170
171
172
# File 'lib/jumunge.rb', line 168

def jumunge(object, *paths)
  paths.inject(object) do |result, path|
    Jumunge.new(result, path).perform
  end
end