2022-01-31 22:11:38 -05:00
::KernAux
=========
2022-01-18 05:20:37 -05:00
2022-01-31 04:27:39 -05: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 10:40:37 -05: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 08:27:03 -05:00
2022-02-03 11:32:38 -05:00
Binding to [libkernaux ](https://github.com/tailix/libkernaux ) - auxiliary
library for kernel development.
2022-02-09 17:55:30 -05:00
Install
-------
Add the following to your `Gemfile` :
```ruby
2022-05-28 06:00:59 -04:00
gem 'kernaux', '~> 0.3.0'
2022-02-09 17:55:30 -05:00
```
Or add the following to your `*.gemspec` :
```ruby
Gem::Specification.new do |spec|
# ...
2022-05-28 06:00:59 -04:00
spec.add_runtime_dependency 'kernaux', '~> 0.3.0'
2022-02-09 17:55:30 -05:00
# ...
end
```