This file contains hidden or 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
!yamlscript/v0/data | |
:: use(schema-country) | |
# Annotate countries list: | |
countries: !:countries | |
- name: foo | |
population: 1000 | |
area: 42334.11 | |
climate: Foggy wet. |
This file contains hidden or 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
name: Ingy döt Net | |
email: [email protected] | |
github: https://github.com/ingydotnet | |
matrix: https://matrix.to/#/@ingy:yaml.io |
This file contains hidden or 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
echo O HAI |
This file contains hidden or 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
#!/bin/bash | |
die() { echo "$*"; exit 1; } | |
main() { | |
program=$0 | |
[[ $# -ge 2 ]] || | |
die "usage: $program <watch-file> <command> [<command-args>]" | |
file=${1:?first arg must be file path}; shift |
This file contains hidden or 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
From: https://groups.yahoo.com/neo/groups/sml-dev/conversations/messages/4729 | |
On Sun, May 13, 2001 at 03:39:53PM -0000, jimfl@... wrote: | |
| This looks very similar to the format of the Perl module | |
Data::Denter | |
| (by Brian Ingerson) for which there is already a fine parser | |
available | |
| (in perl, of course). | |
Thank you so much for taking the time to |
This file contains hidden or 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
#!/usr/bin/env testml v0.2.0 | |
*in-yaml.parse.to-event == *test-event | |
*in-yaml.load.dump == *out-yaml | |
*in-yaml.load.to-json == *in-json.load-json.to-json | |
This file contains hidden or 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
Fri May 27 20:28:35 UTC 2016 |
I suggest we call our "Getting YAML Moving Forward" project "yaml-io" or "yio" for short. I own yaml.io domain and we can use that for public facing things. I also got the https://github.com/organizations/yamlio/ org. Let's use yamlio as a staging area for the yaml org.
I think that we need to simultaneously:
- Do stuff (create doc, tests, websites, implementations)
- Get more and more people involved
Here is a list of first steps that we could start on to get yio moving forward:
- Add to the test suite for 1.2, 1.3 and 2.0 tests (tag the tests appropriately)
This file contains hidden or 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
diff --git a/ext/App-Spec-p5/lib/App/Spec/Completion/Bash.pm b/ext/App-Spec-p5/lib/App/Spec/Completion/Bash.pm | |
index 56ca853..a1f4246 100644 | |
--- a/ext/App-Spec-p5/lib/App/Spec/Completion/Bash.pm | |
+++ b/ext/App-Spec-p5/lib/App/Spec/Completion/Bash.pm | |
@@ -261,6 +261,7 @@ sub dynamic_completion { | |
my $name = $p->name; | |
my $def = $p->completion; | |
my $command = $def->{command}; | |
+ my $command_string = $def->{command_string}; | |
my $op = $def->{op}; |
NewerOlder