Skip to content

Commit

Permalink
fixed note on how to install opentelemetry-api and opentelemetry-sdk (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
mwlang authored Jun 30, 2020
1 parent 5ec6ff5 commit a109554
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,22 @@ depend on `opentelemetry-sdk` or another package that implements the API.
**Please note** that this library is currently in _alpha_, and shouldn't be
used in production environments.

The API and SDK packages are available on RubyGems.org, and can be installed via `bundle`:
The API and SDK packages are available on RubyGems.org, and can be installed via `gem`:

```sh
bundle install opentelemetry-api
bundle install opentelemetry-sdk
gem install opentelemetry-api
gem install opentelemetry-sdk
```

or via `Bundler` by adding the following to your `Gemfile`:

```ruby
gem 'opentelemetry-api'
gem 'opentelemetry-sdk'
```
followed by:
```sh
bundle install
```

To install development versions of these packages, follow the "Developer Setup" section (below).
Expand Down

0 comments on commit a109554

Please sign in to comment.