README.md in assaydepot-0.0.1 vs README.md in assaydepot-0.0.2
- old
+ new
@@ -1,9 +1,13 @@
-# AssayDepot
+# Assay Depot
Ruby interface for Assay Depot's online laboratory (http://www.assaydepot.com).
+## Assay Depot Developer Program
+
+An authentication token is required for the API to function. If you would like access to the API, please email cpetersen@assaydepot.com.
+
## Installation
Add this line to your application's Gemfile:
gem 'assaydepot'
@@ -19,12 +23,12 @@
## Basic Usage
```ruby
require 'assaydepot'
AssayDepot.configure do |config|
- config.auth_token = "1234567890"
- config.url = "http://localhost:3000/api"
+ config.access_token = "1234567890"
+ config.url = "https://www.assaydepot.com/api"
end
wares = AssayDepot::Ware.find("Antibody")
wares.total
```
@@ -43,10 +47,10 @@
```
## Providers
```ruby
-providers = AssayDepot::Provider.where(:starts_with => "a").per_page(600)
+providers = AssayDepot::Provider.where(:starts_with => "a").per_page(50)
providers.count
```
## Get Details
```ruby