rjspotter (Randall Potter)
- Login: rjspotter
- Email: rjspotter@gmail.com
- Registered on: 03/15/2012
- Last sign in: 03/15/2012
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
03/15/2012
-
01:11 PM Ruby Bug #6149: Object#tap does not return the object it is called on in some cases
- I see that now. I'm going to close this.
-
12:35 PM Ruby Bug #6149 (Third Party's Issue): Object#tap does not return the object it is called on in some cases
- # gem install httparty
# then in an irb console enter :
require 'httparty'
class Foo
include HTTParty
base_uri 'http://example.com'
end
Foo.get('/').class # => HTTParty::Response
Foo.get('/').tap {|x| }.class # => String # ...