Skip to content

Commit b490550

Browse files
committed
Follow the new community guidelines
1 parent b8a0af0 commit b490550

8 files changed

+31
-23
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.st linguist-language=Smalltalk

.project

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
22
'srcDirectory' : 'source'
3-
}
3+
}

.smalltalk.ston

+6-9
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,13 @@ SmalltalkCISpec {
33
SCIMetacelloLoadSpec {
44
#baseline : 'Kepler',
55
#directory : 'source',
6-
#load : [ 'Development' ],
7-
#platforms : [ #pharo ]
8-
}
9-
],
6+
#load : [ 'CI' ],
7+
#platforms : [ #pharo ]
8+
}
9+
],
1010
#testing : {
1111
#coverage : {
12-
#packages : [ 'Kepler*' ]
13-
},
14-
#include : {
15-
#packages : [ 'Kepler-Tests*' ]
16-
}
12+
#packages : [ 'Kepler*' ]
13+
}
1714
}
1815
}

.travis.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ os:
55
- linux
66

77
smalltalk:
8-
- Pharo-6.1
9-
- Pharo-7.0
10-
- Pharo64-7.0
8+
- Pharo64-8.0
9+
- Pharo64-7.0
10+
- Pharo32-7.0
11+
- Pharo32-6.1
1112

1213
matrix:
1314
allow_failures:
14-
- smalltalk: Pharo-7.0
15-
- smalltalk: Pharo64-7.0
15+
- smalltalk: Pharo64-8.0
1616
fast_finish: true

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ You can report issues [here](https://github.com/ba-st/Kepler/issues/new)
1111
- This project is MIT licensed, so any code contribution MUST be under the same license.
1212
- This project uses [Semantic Versioning](http://semver.org/), so keep it in mind when you make backwards-incompatible changes. If some backwards incompatible change is made the major version MUST be increased.
1313
- The source code is hosted in this repository using the Tonel format in the `source` folder.
14-
- The master branch contains the latest changes and should always be in a releasable state.
14+
- The `release-candidate` branch contains the latest changes and should always be in a releasable state.
1515
- Feel free to send pull requests or fork the project.
1616
- Code contributions without test cases have a lower probability of being merged into the main branch.
1717

@@ -25,7 +25,7 @@ You can report issues [here](https://github.com/ba-st/Kepler/issues/new)
2525
7. Do the changes
2626
8. Run the test cases
2727
9. Commit and push your changes to the branch using the Iceberg UI
28-
10. Create a Pull Request against the master branch
28+
10. Create a Pull Request against the `release-candidate` branch
2929

3030
## Contributing documentation
3131

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2017 Cosmos
3+
Copyright (c) 2017-2019 Buenos Aires Smalltalk Contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212
</p>
1313
</p>
1414

15-
[![Build Status](https://travis-ci.org/ba-st/Kepler.svg?branch=master)](https://travis-ci.org/iot-uca/Kepler)
16-
[![Coverage Status](https://coveralls.io/repos/github/ba-st/Kepler/badge.svg?branch=master)](https://coveralls.io/github/iot-uca/Kepler?branch=master)
15+
[![GitHub release](https://img.shields.io/github/release/ba-st/Kepler.svg)](https://github.com/ba-st/Kepler/releases/latest)
16+
[![Build Status](https://travis-ci.org/ba-st/Kepler.svg?branch=release-candidate)](https://travis-ci.org/ba-st/Kepler)
17+
[![Coverage Status](https://coveralls.io/repos/github/ba-st/Kepler/badge.svg?branch=release-candidate)](https://coveralls.io/github/ba-st/Kepler?branch=release-candidate)
1718

1819
> *Name origin*: Mathematician and astronomer [Johannes Kepler](https://en.wikipedia.org/wiki/Johannes_Kepler) is best known for his laws of planetary motion that describes how planets move around the Sun.
1920

docs/Installation.md

+12-3
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
You can load **Kepler** evaluating:
66
```smalltalk
77
Metacello new
8-
baseline: 'Kepler';
9-
repository: 'github://ba-st/Kepler:master/source';
8+
baseline: 'Kepler';
9+
repository: 'github://ba-st/Kepler:release-candidate/source';
1010
load.
1111
```
12-
> Change `master` to some released version if you want a pinned version
12+
> Change `release-candidate` to some released version if you want a pinned version
1313
1414
## Using as dependency
1515

@@ -36,3 +36,12 @@ baseline: spec
3636
do: [ self setUpDependencies: spec.
3737
spec package: 'My-Package' with: [ spec requires: #('Kepler') ] ]
3838
```
39+
40+
## Provided groups
41+
42+
- `Deployment` will load all the packages needed in a deployed application
43+
- `Tests` will load the test cases
44+
- `Dependent-SUnit-Extensions` will load the extensions to the SUnit framework
45+
- `Tools` will load the extensions to the SUnit framework and development tools (inspector and spotter extensions)
46+
- `CI` is the group loaded in the continuous integration setup
47+
- `Development` will load all the needed packages to develop and contribute to the project

0 commit comments

Comments
 (0)