-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update library definitions, update example comments
- Loading branch information
1 parent
7038eca
commit 735aed2
Showing
4 changed files
with
72 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"name": "Ministache", | ||
"version": "1.0.0", | ||
"description": "Ministache is a small, fast and spec-complete implementation of the Mustache templating language for Arduino. All core Mustache tags are supported: interpolation, partials, sections, inverted sections, custom delimiters, and comments.", | ||
"keywords": ["mustache", "moustache", "text", "text processor", "template", "logic-less", "html"], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/floatplane/ministache" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Brian Sharon", | ||
"url": "https://github.com/floatplane", | ||
"maintainer": true | ||
} | ||
], | ||
"license": "MIT", | ||
"platforms": "*", | ||
"headers": "Ministache.h", | ||
"examples": [ | ||
{ | ||
"name": "Basic", | ||
"base": "examples/basic", | ||
"files": ["basic.ino"] | ||
}, | ||
{ | ||
"name": "Partials", | ||
"base": "examples/partials", | ||
"files": ["partials.ino"] | ||
} | ||
], | ||
"dependencies": { | ||
"bblanchon/ArduinoJson": "^7.0.0" | ||
}, | ||
"build": { | ||
"unflags": "-std=gnu++11", | ||
"flags": "-std=gnu++17" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ version=1.0.0 | |
author=Brian Sharon <[email protected]> | ||
maintainer=Brian Sharon <[email protected]> | ||
sentence=Implementation of the Mustache templating language for Arduino | ||
paragraph=Ministache is a small, fast and complete implementation of the Mustache templating language for Arduino. | ||
paragraph=Ministache is a small, fast and spec-complete implementation of the Mustache templating language for Arduino. | ||
category=Data Processing | ||
url=https://github.com/floatplane/ministache | ||
architectures=* | ||
|