Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Decot authored Aug 8, 2019
1 parent c4f1458 commit 5f1a823
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,17 @@ Or install it yourself as:
## Usage

```ruby
client = AppStoreConnect::Client.new(
AppStoreConnect.config = {
issuer_id: issuer_id,
key_id: key_id,
private_key: private_key
)
}

client.apps
client.app('1234')
client.builds('1234')
app_store_connect = AppStoreConnect::Client.new

app_store_connect.apps
app_store_connect.app('1234')
app_store_connect.builds('1234')
```

## Development
Expand Down

0 comments on commit 5f1a823

Please sign in to comment.