Eric Oestrich

Results 35 comments of Eric Oestrich

Looks like the append json format broke sometime recently. If you're interested in fixing it that'd be a great PR! I don't use append_json, so I don't know when I'll...

Which format are you using and are you using a viewer like raddocs or apitome?

I'm not sure what's up with your Shoulda issue, my guess is your `acceptance_helper.rb` is off slightly and not including it? As far as any docs are concerned, PRs are...

@sineed I think a method addition would be great, that would solve a good deal of recurring issues. If you have the time, I would gladly look at a PR....

I think having the ability to specify a method is still valuable to have. It would solve issues where someone has `client` as a parameter, RAD is not happy in...

I think this would be a good addition.

Do you mean customize the rack env hash? If so I'm not a fan. RAD is an integration level tool, so playing around with the env isn't something I want...

You want to use the `header` DSL. ```ruby header "Authorization", :basic_auth let(:basic_auth) do ActionController::HttpAuthentication::Basic.encode_credentials(user.email, "password") end ```

I do not believe that this is possible right now. This is the `response_field` DSL? I can't think of a nice way around this, I will be happy to look...

This just needs better set up to work as you are expecting it to. `do_request` will send as a post body which will convert everything to strings. If you're sending...