api_taster
api_taster copied to clipboard
A quick and easy way to visually test your Rails application's API.
And therefore, Bundler ends up using version 0.6.0 instead. Looks like a fresh gem needs to be minted.
Can someone add ability to update each header from the request panel?
Note: `$form.serialize()` doesn't add file fields in the resulting data.
Allow to define a hook in initializer, which invokes the controller class. This useful when we need to set some custom callbacks. Usage exaple (adding basic auth): ``` ruby #...
This gem is not behaving properly with the latest bootstrap.
I experienced the same problem as in [Issue 26](https://github.com/fredwu/api_taster/issues/26), where normalise_routes! was throwing an exception parsing my routes - "undefined method `source' for "GET":String". My app is running Rails 3.1.10,...
Hi, I've added configurable options to the gem so that you can customize some parameters. Example: ``` ruby ApiTaster.configure do |config| config.title = 'MyTitle' config.call_to_action = 'My call to action...
Every get route we have is showing up in Obsolete Definitions. I wrote a test that I believe fails for the right reasons: https://github.com/ignu/api_taster/blob/54692ea39718290e0fc44020e7e0aed406575e84/spec/mapper_spec.rb#L22
I am able to set id, but if I used default ParamsWrapper setting, I must sent params in json format. but api_taster sent params in default format.
I think that it will be good to see status code, because sometimes, we want send no data, but only request with status code, for example for destroy action.