lib/rordash.rb in rordash-0.1.1 vs lib/rordash.rb in rordash-0.1.2

- old
+ new

@@ -8,11 +8,17 @@ path_util file_util url_util object_util numeric_util +chain ].each do |filename| require File.expand_path("../rordash/#{filename}", Pathname.new(__FILE__).realpath) end module Rordash - ; end + class << self + def chain(value) + Chain.new(value.dup) + end + end +end