Sidu Ponnappa
Sidu Ponnappa
The idea is to be able to make calls to resources protected by OAuth 2.0 using wrest with a minimum of cruft in the api and a minimum of distraction...
The signature generator is already implemented at http://gist.github.com/383159 - just reuse. The idea is to be able to make calls to resources protected by OAuth 1.0 using wrest with a...
Wrest should provide a HTTP driver agnostic response stubbing API. Right now, mocking Wrest based client code isn't particularly easy. Most HTTP libraries provide test environment only tools to quickly...
``` Wrest.use_curl 'http://api.twitter.com/1/users/show.json'.to_uri.get({:screen_name => 'ponnappa'}) ``` results in NoMethodError: undefined method `strip' for #Array:0x101fa9428 from /lib/wrest/http_shared/headers.rb:16
Ref the conversation https://github.com/rspec/rspec-mocks/pull/1237#issuecomment-422313561 Redid the `a_block` change after refactoring `Mocks::Proxy` to make it easier to treat blocks similarly to args for expectations matchers like `a_block` - this PR includes...