Donate via Zerocracy

EO principles respected here Managed by Zerocracy DevOps By Rultor.com We recommend RubyMine

Build Status Build status PDD status Gem Version Test Coverage

Here is the White Paper.

Join our Telegram group to discuss it all live.

The license is MIT.

This small Ruby Gem calculates the score for Zold nodes.

To calculate a new Score you create an object first:

score = Zold::Score.new(
  host: 'example.com',
  port: 4096,
  invoice: 'MYPREFIX@ffffffffffffffff',
  strength: 6
)

This score has zero value and the strength of six. Then you just ask it to calculate the next score:

n = score.next

That's it.

This project is actively used in our main Ruby repo.

How to contribute

Read these guidelines. Make sure you build is green before you contribute your pull request. You will need to have Ruby 2.3+ and Bundler installed. Then:

$ bundle update
$ rake

If it's clean and you don't see any error messages, submit your pull request.