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 ruby | |
module TAL | |
module Markdown | |
require 'fileutils' | |
require 'optparse' | |
require 'pathname' | |
require 'redcarpet' |
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
"use strict"; | |
/* Allows a nice way of manipulating property descriptors (e.g. making | |
* methods non-enumerable). | |
* | |
* Example: | |
* | |
* function TestClass() {}; | |
* TestClass.prototype.testFunction = function () {console.log("Hello!")}; | |
* TestClass.prototype.$("testFunction").setEnumerable(false); |
NewerOlder