source: extensions/gsdl-video/trunk/installed/cmdline/lib/ruby/site_ruby/1.8/miyaml.rb@ 18425

Last change on this file since 18425 was 18425, checked in by davidb, 15 years ago

Video extension to Greenstone

File size: 2.4 KB
Line 
1# Copyright (c) 2005 Norman Timmler (inlet media e.K., Hamburg, Germany)
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions
6# are met:
7# 1. Redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer.
9# 2. Redistributions in binary form must reproduce the above copyright
10# notice, this list of conditions and the following disclaimer in the
11# documentation and/or other materials provided with the distribution.
12# 3. The name of the author may not be used to endorse or promote products
13# derived from this software without specific prior written permission.
14#
15# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25
26class MiYAML
27
28 def self.dump(object, options = {})
29 options = { :indent => 0, :boundaries => true }.merge( options )
30
31 out = (options[:boundaries] ? "---\n" : '')
32 out << dump_object(object, options[:indent]).strip
33 out << (options[:boundaries] ? "\n...\n" : '')
34 out
35 end
36
37 def self.dump_object(object, indent = 0)
38 yaml = ''
39
40 if object.class == Object
41 object = object.instance_variables.inject( {} ) { |hash, var| hash[var.gsub('@', '')] = object.instance_variable_get(var); hash }
42 end
43
44 case object
45 when Array
46 object.each do |value|
47 yaml << indenter(indent) << '- ' << dump_object( value, indent + 1 )
48 end
49 when Hash
50 object.each do |key, value|
51 yaml << indenter(indent) << "#{key}: " << dump_object( value, indent + 1 )
52 end
53 else
54 yaml << object.to_s
55 end
56
57 return yaml
58 end
59
60 def self.indenter(indent = 0)
61 "\n" << ' ' * indent
62 end
63end
Note: See TracBrowser for help on using the repository browser.