Skip to content

Commit

Permalink
Pass on README. Write with latest Tonel. Added SUnit as Required Map
Browse files Browse the repository at this point in the history
  • Loading branch information
marianopeck committed May 19, 2020
1 parent 3974956 commit f55ffec
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# inform linguist that files with these extensions are indeed smalltalk files
* text eol=crlf
*.st linguist-language=Smalltalk
*.st text eol=crlf linguist-language=Smalltalk
*.project text eol=crlf
*.properties text eol=crlf
*.configmaps text eol=crlf
*.dat binary
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
- The documentation is licensed under [CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/).


## Installation
## Quick Start

To load the project in a Pharo image, or declare it as a dependency of your own project follow this [instructions](docs/Installation.md).
## Installation

## Contributing

Expand Down
7 changes: 7 additions & 0 deletions scripts/tonel-export.st
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
| writer path |
path := ((CfsPath named: CfsDirectoryDescriptor getcwd) append: '..\tonel-repos\sunit-extensions-vast').
writer := TonelWriter new.
writer
addLatestConfigurationMapNamed: 'VastSUnitExtensions';
addApplicationsFromConfigurationMaps.
writer writeProjectInto: path.
7 changes: 7 additions & 0 deletions scripts/tonel-import.st
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
| loader path |
path := ((CfsPath named: CfsDirectoryDescriptor getcwd) append: '..\tonel-repos\sunit-extensions-vast').
loader := TonelLoader readFromPath: path.
loader
beUnattended;
useGitVersion.
loader loadAllMapsWithRequiredMaps.
11 changes: 9 additions & 2 deletions source/.configmaps
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,16 @@
'VastSUnitExtensionsApp' : '1.0',
'VastSUnitExtensionsExamplesApp' : '1.0'
],
#conditions : [ ],
#conditions : [
{
#condition : 'true',
#requiredMaps : [
'z.ST: SUnit' : 'V 9.2.1 [457]'
]
}
],
#name : 'VastSUnitExtensions',
#versionName : '1.0',
#versionName : '1.1',
#comment : ''
}
]

0 comments on commit f55ffec

Please sign in to comment.