-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,40 @@ | ||
# random-numbers | ||
|
||
[![CI](https://github.com/PolyMathOrg/random-numbers/actions/workflows/continuous.yml/badge.svg)](https://github.com/PolyMathOrg/random-numbers/actions/workflows/continuous.yml) | ||
[![Coverage Status](https://coveralls.io/repos/github/PolyMathOrg/random-numbers/badge.svg?branch=main)](https://coveralls.io/github/PolyMathOrg/random-numbers?branch=main) | ||
[![Pharo version](https://img.shields.io/badge/Pharo-11-%23aac9ff.svg)](https://pharo.org/download) | ||
[![Pharo version](https://img.shields.io/badge/Pharo-10-%23aac9ff.svg)](https://pharo.org/download) | ||
[![Pharo version](https://img.shields.io/badge/Pharo-9-%23aac9ff.svg)](https://pharo.org/download) | ||
|
||
Project to provide different random number generators for the Pharo programming language | ||
|
||
## Installation | ||
|
||
To install this project on your Pharo image, execute the following script: | ||
|
||
```Smalltalk | ||
Metacello new | ||
githubUser: 'PolyMathOrg' project: 'random-numbers' commitish: 'v1.x.x' path: 'src'; | ||
baseline: 'MathRandomNumbers'; | ||
load | ||
``` | ||
|
||
To add TinyLogger to your baseline: | ||
|
||
```Smalltalk | ||
spec | ||
baseline: 'MathRandomNumbers' | ||
with: [ spec repository: 'github://PolyMathOrg/random-numbers:v1.x.x/src' ] | ||
``` | ||
|
||
Note you can replace the #master by another branch such as #development or a tag such as #v1.0.0, #v1.? or #v1.2.? . | ||
|
||
## Quick start | ||
|
||
> TODO | ||
## Smalltalk versions compatibility | ||
|
||
| Version | Compatible Pharo versions | | ||
|------------- |------------------------------| | ||
| 1.x.x | Pharo 90, 10, 11 | |