property.rb - simple properties scheme This library provides simple properties scheme for application configurations, resources, locale data, etc. In coding, I refered to java.util.Properties class on Java Language. example: default = Properties.new default.load('test.default') prop = Properties.new(default) prop.load('dot.testrc') print("dict_file = "); p(prop['dict_file']) The difference from Java Properties is that the properties is stored into a file with configuration line preserved. (Java standard one is stored into configuration lines in random order.) For further details, see the API Document. ------------------------------------------------------ Hiroshi IGARASHI e-mail: igarashi@ueda.info.waseda.ac.jp homepage: http://www.ueda.info.waseda.ac.jp/~igarashi/ruby/