lib/elixirize.rb in elixirize-0.1.0 vs lib/elixirize.rb in elixirize-0.2.0

- old
+ new

@@ -1,11 +1,9 @@ require "elixirize/version" module Elixirize - # add(4,5).ᐅ :minus, 15 - ::Object.class_eval do def ᐅ other, *args - other.call(*args, self) + other.call(self, *args) end end end