Ruby: add instruction to README.md

This commit is contained in:
Alex Kotov 2022-02-10 03:55:30 +05:00
parent e38c9c9bb0
commit a011137832
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
1 changed files with 21 additions and 0 deletions

View File

@ -6,3 +6,24 @@
Binding to [libkernaux](https://github.com/tailix/libkernaux) - auxiliary
library for kernel development.
Install
-------
Add the following to your `Gemfile`:
```ruby
gem 'kernaux', '~> 0.1.0'
```
Or add the following to your `*.gemspec`:
```ruby
Gem::Specification.new do |spec|
# ...
spec.add_runtime_dependency 'kernaux', '~> 0.1.0'
# ...
end
```