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
package de.uwefleischer.statemachines; | |
import java.util.Set; | |
import java.util.TreeSet; | |
public class Sql { | |
private static Set<String> tables; | |
%%{ |
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
/** | |
* usage: ringo fs_to_json.js | |
* ringo fs_to_json.js path | |
* ringo fs_to_json.js path outputfile | |
* result: | |
* [{"name":"filename"},{"name": "directoryname", files:[]}] | |
*/ | |
var system = require("system"); | |
var fs = require("fs"); |