lib/packable/extensions/proc.rb in packable-1.3.9 vs lib/packable/extensions/proc.rb in packable-1.3.10
- old
+ new
@@ -4,13 +4,13 @@
# A bit of wizardry to return an +UnboundMethod+ which can be bound to any object
def unbind
Object.send(:define_method, :__temp_bound_method, &self)
Object.instance_method(:__temp_bound_method)
end
-
+
# Shortcut for <tt>unbind.bind(to)</tt>
def bind(to)
unbind.bind(to)
end
end
end
-end
\ No newline at end of file
+end