1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2025-02-17 15:45:32 -05:00
libkernaux/bindings/ruby/README.md

30 lines
697 B
Markdown
Raw Permalink Normal View History

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