Skip to content

Instantly share code, notes, and snippets.

View lingceng's full-sized avatar

Kexian Zhong lingceng

View GitHub Profile
@lingceng
lingceng / README.md
Last active August 29, 2015 14:06 — forked from eric1234/README.md

A module to automatically translate snake_case method calls into CamelCase method calls. For example:

class MyObject
  include Snakeable
  
  def FooBar
    "baz"
  end

end