libkernaux/bindings/ruby/README.md

30 lines
697 B
Markdown
Raw Normal View History

2022-02-01 03:11:38 +00:00
::KernAux
=========
2022-01-18 10:20:37 +00:00
2022-01-31 09:27:39 +00:00
[![Build status](https://github.com/tailix/libkernaux/actions/workflows/ruby.yml/badge.svg)](https://github.com/tailix/libkernaux/actions/workflows/ruby.yml)
2022-01-31 15:40:37 +00:00
[![Build status (FreeBSD)](https://api.cirrus-ci.com/github/tailix/libkernaux.svg?task=Ruby%20(FreeBSD))](https://cirrus-ci.com/github/tailix/libkernaux)
2022-01-21 13:27:03 +00:00
2022-02-03 16:32:38 +00:00
Binding to [libkernaux](https://github.com/tailix/libkernaux) - auxiliary
library for kernel development.
2022-02-09 22:55:30 +00:00
Install
-------
Add the following to your `Gemfile`:
```ruby
2022-06-16 15:27:48 +00:00
gem 'kernaux', '~> 0.4.0'
2022-02-09 22:55:30 +00:00
```
Or add the following to your `*.gemspec`:
```ruby
Gem::Specification.new do |spec|
# ...
2022-06-16 15:27:48 +00:00
spec.add_runtime_dependency 'kernaux', '~> 0.4.0'
2022-02-09 22:55:30 +00:00
# ...
end
```