Skip to content

Commit

Permalink
Release 1.0.2
Browse files Browse the repository at this point in the history
Move MAC files to mac folder.
  • Loading branch information
atygaev committed Mar 27, 2020
1 parent 8cbc4cc commit 7156562
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ ClassMethod isEven(value As %Numeric)
- [Installation](#installation)
- [Use ZPM](#use-zpm)
- [Use Docker](#use-docker)
- [Use XML](#use-xml)
- [Examples](#examples)
- [Iterate](#iterate) (zforeach)
- [Join](#join) ($zjoin)
Expand All @@ -65,6 +66,18 @@ $ docker-compose up -d
$ docker-compose exec iris iris session iris
```

### Use XML
Download the [install.declarative-os.xml](https://github.com/atygaev/declarative-objectscript/releases/latest/install.declarative-os.xml) from latest release.
```
https://github.com/atygaev/declarative-objectscript/releases/latest/install.declarative-os.xml
```

Install the project via terminal:
```objectscript
USER> set installFile = "<path to downloaded install.declarative-os.xml>"
USER> do $system.OBJ.Load(installFile)
```

## Examples
Let me show some examples.

Expand Down
10 changes: 5 additions & 5 deletions module.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<Document name="declarative-os.ZPM">
<Module>
<Name>declarative-os</Name>
<Version>1.0.1</Version>
<Version>1.0.2</Version>
<Packaging>module</Packaging>
<SourcesRoot>src</SourcesRoot>
<Resource Name="DeclarativeOS.PKG" Directory="cls"/>
<Resource Name="%ZLANGC01.MAC" Directory="mac"/>
<Resource Name="%ZLANGF00.MAC" Directory="mac"/>
<Resource Name="DeclarativeOS.PKG"/>
<Resource Name="%ZLANGC01.MAC"/>
<Resource Name="%ZLANGF00.MAC"/>
<UnitTest Name="/test" Package="Test.DeclarativeOS.PKG" Phase="test"/>
</Module>
</Document>
</Export>
</Export>

0 comments on commit 7156562

Please sign in to comment.