File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 1
1
# random-numbers
2
+
3
+ [ ![ CI] ( https://github.com/PolyMathOrg/random-numbers/actions/workflows/continuous.yml/badge.svg )] ( https://github.com/PolyMathOrg/random-numbers/actions/workflows/continuous.yml )
4
+ [ ![ Coverage Status] ( https://coveralls.io/repos/github/PolyMathOrg/random-numbers/badge.svg?branch=main )] ( https://coveralls.io/github/PolyMathOrg/random-numbers?branch=main )
5
+ [ ![ Pharo version] ( https://img.shields.io/badge/Pharo-11-%23aac9ff.svg )] ( https://pharo.org/download )
6
+ [ ![ Pharo version] ( https://img.shields.io/badge/Pharo-10-%23aac9ff.svg )] ( https://pharo.org/download )
7
+ [ ![ Pharo version] ( https://img.shields.io/badge/Pharo-9-%23aac9ff.svg )] ( https://pharo.org/download )
8
+
2
9
Project to provide different random number generators for the Pharo programming language
10
+
11
+ ## Installation
12
+
13
+ To install this project on your Pharo image, execute the following script:
14
+
15
+ ``` Smalltalk
16
+ Metacello new
17
+ githubUser: 'PolyMathOrg' project: 'random-numbers' commitish: 'v1.x.x' path: 'src';
18
+ baseline: 'MathRandomNumbers';
19
+ load
20
+ ```
21
+
22
+ To add TinyLogger to your baseline:
23
+
24
+ ``` Smalltalk
25
+ spec
26
+ baseline: 'MathRandomNumbers'
27
+ with: [ spec repository: 'github://PolyMathOrg/random-numbers:v1.x.x/src' ]
28
+ ```
29
+
30
+ Note you can replace the #master by another branch such as #development or a tag such as #v1.0.0, #v1.? or #v1.2.? .
31
+
32
+ ## Quick start
33
+
34
+ > TODO
35
+
36
+ ## Smalltalk versions compatibility
37
+
38
+ | Version | Compatible Pharo versions |
39
+ | ------------- | ------------------------------|
40
+ | 1.x.x | Pharo 90, 10, 11 |
You can’t perform that action at this time.
0 commit comments