Initial commit

This commit is contained in:
Peter Niederwieser
2016-01-19 14:51:19 +01:00
committed by Dan Chao
commit ecad035dca
2972 changed files with 211653 additions and 0 deletions
@@ -0,0 +1,27 @@
{
"schemaVersion": 1,
"name": "birds",
"packageUri": "package://localhost:12110/birds@0.5.0",
"packageZipUrl": "https://localhost:12110/birds@0.5.0/birds@0.5.0.zip",
"dependencies": {
"fruities": {
"uri": "package://localhost:12110/fruit@1.0.5",
"checksums": {
"sha256": "b4ea243de781feeab7921227591e6584db5d0673340f30fab2ffe8ad5c9f75f5"
}
}
},
"version": "0.5.0",
"packageZipChecksums": {
"sha256": "$computedChecksum"
},
"sourceCodeUrlScheme": "https://example.com/birds/v0.5.0/blob%{path}#L%{line}-L%{endLine}",
"sourceCode": "https://example.com/birds",
"documentation": "https://example.com/bird-docs",
"license": "UNLICENSED",
"authors": [
"petey-bird@example.com",
"polly-bird@example.com"
],
"issueTracker": "https://example.com/birds/issues"
}
@@ -0,0 +1,7 @@
open module birds.Bird
import "@fruities/Fruit.pkl"
name: String
favoriteFruit: Fruit
@@ -0,0 +1,4 @@
module birds.allFruit
fruit = import*("@fruities/catalog/*.pkl")
fruitFiles = read*("@fruities/catalog/*.pkl")
@@ -0,0 +1,4 @@
module birds.catalog
catalog = import*("catalog/*.pkl")
catalogFiles = read*("catalog/*.pkl")
@@ -0,0 +1,7 @@
amends "../Bird.pkl"
name = "Ostritch"
favoriteFruit {
name = "Orange"
}
@@ -0,0 +1,7 @@
amends "../Bird.pkl"
import "@fruities/catalog/apple.pkl"
name = "Swallow"
favoriteFruit = apple
@@ -0,0 +1,7 @@
amends "..."
name = "Bird"
favoriteFruit {
name = "Fruit"
}