nostr-gem/docs/getting-started/installation.md
2023-11-13 17:48:17 +07:00

22 lines
348 B
Markdown

# Installation
Install the gem and add to the application's Gemfile by executing:
```shell
bundle add nostr
```
If bundler is not being used to manage dependencies, install the gem by executing:
```shell
gem install nostr
```
## Requiring the gem
All examples in this guide assume that the gem has been required:
```ruby
require 'nostr'
```