docs/plain-requests.md in flexirest-1.10.1 vs docs/plain-requests.md in flexirest-1.10.2
- old
+ new
@@ -5,10 +5,10 @@
```ruby
class Person < Flexirest::Base
end
people = Person._plain_request('http://api.example.com/v1/people') # Defaults to get with no parameters
-# people is a normal Flexirest object, implementing iteration, HAL loading, etc.
+# people is a string containing the response
Person._plain_request('http://api.example.com/v1/people', :post, {id:1234,name:"John"}) # Post with parameters
```
The parameters are the same as for `_request`, but it does no parsing on the response