Project

zold-score

0.01
Low commit activity in last 3 years
No release in over a year
Score calculating Ruby Gem for Zold
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

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

rake PDD status Gem Version Test Coverage License Hits-of-Code

Here is the White Paper.

Join our Telegram group to discuss it all live.

This small Ruby Gem calculates the score for Zold nodes. The idea of the "score" is explained in the White Paper. To get a better understanding of it you may want to read our blog.

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
$ bundle exec rake

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