Skip to content

Commit

Permalink
add shorthand for gem name
Browse files Browse the repository at this point in the history
  • Loading branch information
svoboda-jan committed Nov 30, 2015
1 parent fb97451 commit 5595931
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ It uses the swagger ARI json definitions to generate ruby classes.
Add this line to your application's Gemfile:

```ruby
gem 'asterisk-ari-client'
gem 'asterisk'
# or older way:
# gem 'asterisk-ari-client'
```

And then execute:
Expand All @@ -19,12 +21,16 @@ And then execute:

Or install it yourself as:

$ gem install asterisk-ari-client
$ gem install asterisk
# or older way:
# $ gem install asterisk-ari-client

and then require it:

```ruby
require 'asterisk/ari/client'
require 'asterisk'
# or older way:
# require 'asterisk/ari/client'
```

## Usage
Expand Down

0 comments on commit 5595931

Please sign in to comment.