README.md in lipseys-0.1.1 vs README.md in lipseys-0.2.0
- old
+ new
@@ -30,11 +30,11 @@
```
### Lipseys::Catalog
There are several methods you can use to fetch different kinds (or all) items in the catalog.
-All of the listed methods return the same response structure. See Lipseys::Catalog for details.
+All of the listed methods return the same response structure. See `Lipseys::Catalog` for details.
```ruby
# All items
catalog = Lipseys::Catalog.all(options)
@@ -52,11 +52,11 @@
```
### Lipseys::Inventory
There are similar methods for getting your account's inventory (availability, price, etc.).
-All methods return the same response structure. See Lipseys::Inventory for details.
+All methods return the same response structure. See `Lipseys::Inventory` for details.
```ruby
inventory = Lipseys::Inventory.all(options)
firearms = Lipseys::Inventory.firearms(options)
nfa = Lipseys::Inventory.nfa(options)
@@ -87,11 +87,11 @@
}
response = Lipseys::Order.submit!(options)
```
-The response will have this structure: (See Lipseys::Order for more details)
+The response will have this structure: (See `Lipseys::Order` for more details)
```ruby
{
order_number: '...',
new_order: (true/false),
@@ -117,10 +117,10 @@
}
invoice = Lipseys::Invoice.all(options)
```
-See Lipseys::Invoice for the response structure details.
+See `Lipseys::Invoice` for the response structure details.
## Development
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.