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: Play 0 (all is good) | |
hosts: all | |
become: false | |
connection: local | |
gather_facts: no | |
tasks: | |
- name: Task 1 -- Runs OK | |
command: date |
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/sh | |
USAGE="list | list-single | <types> ..." | |
LONG_USAGE="Generate/Append the repo's .gitignore file using the gitignore.io api | |
`curl -s http://gitignore.io/api/`" | |
SUBDIRECTORY_OK= | |
NONGIT_OK=1 | |
OPTIONS_SPEC= |
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
## | |
# This is an example of how one might go about monkey-patching custom syntax | |
# into the gollum wiki engine. | |
## | |
# Monkey Patch the gollum library to support {.css-class} syntax | |
# Mechanics derived from http://stackoverflow.com/questions/4470108/when-monkey-patching-a-method-can-you-call-the-overridden-method-from-the-new-i | |
class Gollum::Markup | |
# Add our class variable, cssmap. |
NewerOlder