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
= Doc Title | |
This is an example of embedding Pikchr in asciidoc with live preview | |
.A silly little Pikchr diagram | |
[pikchr] | |
---- | |
arrow | |
box "foo" | |
down |
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
require 'json' | |
require 'time' | |
require_relative '../api/diagram' | |
module Asciidoctor | |
module Diagram | |
# @private | |
module Cacoo | |
def self.get_diagram_metadata(diagram_id, api_key) | |
# NOTE: See API document at https://cacoo.com/lang/en/api and |
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
require 'buildr' | |
module Buildr | |
class ProguardTask < Rake::FileTask | |
# Proguard version number. | |
VERSION = '4.7' | |
OPTIONS = [:configuration, | |
:target, | |
:forceprocessing, |