Skip to content

Instantly share code, notes, and snippets.

@alexisbernard
Created January 25, 2012 17:05
Show Gist options
  • Save alexisbernard/1677324 to your computer and use it in GitHub Desktop.
Save alexisbernard/1677324 to your computer and use it in GitHub Desktop.
Infinite string stub
# InfiniteStringStub.new.foo.bar.baz # => 'baz'
class InfiniteStringStub < String
def method_missing(name)
InfiniteStringStub.new(name.to_s)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment