Skip to content

Instantly share code, notes, and snippets.

@javan
Created August 7, 2014 22:05
Show Gist options
  • Save javan/5b789fff348a80828238 to your computer and use it in GitHub Desktop.
Save javan/5b789fff348a80828238 to your computer and use it in GitHub Desktop.
Ruby String#to_proc
class String
  def to_proc
    Proc.new { |n| self.split(".").inject(n) { |n, method| n.send(method) } }
  end
end
>> Person.first(2).map(&"name.downcase.reverse.capitalize")
=> ["Nossnah reiemenieh divad", "Deirf nosaj"]
@trevorturk
Copy link

Mappy Land

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment