vcdom 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,11 @@
1
+ require File.dirname(__FILE__) + '/test_helper.rb'
2
+
3
+ class TestVcdom < Test::Unit::TestCase
4
+
5
+ def setup
6
+ end
7
+
8
+ def test_truth
9
+ assert true
10
+ end
11
+ end
metadata ADDED
@@ -0,0 +1,122 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: vcdom
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Y. NOBUOKA
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2010-01-17 00:00:00 +09:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rubyforge
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 2.0.3
24
+ version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: gemcutter
27
+ type: :development
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 0.3.0
34
+ version:
35
+ - !ruby/object:Gem::Dependency
36
+ name: hoe
37
+ type: :development
38
+ version_requirement:
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: 2.5.0
44
+ version:
45
+ description: This library provides DOM implementation(s).
46
+ email:
47
+ - nobuoka@r-definition.com
48
+ executables: []
49
+
50
+ extensions: []
51
+
52
+ extra_rdoc_files:
53
+ - History.txt
54
+ - Manifest.txt
55
+ - PostInstall.txt
56
+ files:
57
+ - History.txt
58
+ - Manifest.txt
59
+ - PostInstall.txt
60
+ - README.rdoc
61
+ - Rakefile
62
+ - lib/vcdom.rb
63
+ - lib/vcdom/minidom.rb
64
+ - lib/vcdom/minidom/attr.rb
65
+ - lib/vcdom/minidom/attr_ns.rb
66
+ - lib/vcdom/minidom/cdata_section.rb
67
+ - lib/vcdom/minidom/character_data.rb
68
+ - lib/vcdom/minidom/comment.rb
69
+ - lib/vcdom/minidom/document.rb
70
+ - lib/vcdom/minidom/dom_exception.rb
71
+ - lib/vcdom/minidom/dom_implementation.rb
72
+ - lib/vcdom/minidom/element.rb
73
+ - lib/vcdom/minidom/element_ns.rb
74
+ - lib/vcdom/minidom/mini_parser.rb
75
+ - lib/vcdom/minidom/mini_serializer.rb
76
+ - lib/vcdom/minidom/minidom_standard_error.rb
77
+ - lib/vcdom/minidom/mod_child_node.rb
78
+ - lib/vcdom/minidom/mod_parent_node.rb
79
+ - lib/vcdom/minidom/mod_elements_getter.rb
80
+ - lib/vcdom/minidom/mod_namespaceuri_manageable.rb
81
+ - lib/vcdom/minidom/named_node_map_attr.rb
82
+ - lib/vcdom/minidom/node_list.rb
83
+ - lib/vcdom/minidom/node.rb
84
+ - lib/vcdom/minidom/text.rb
85
+ - lib/vcdom/minidom/xml_reg_exp.rb
86
+ - script/console
87
+ - script/destroy
88
+ - script/generate
89
+ - test/test_helper.rb
90
+ - test/test_vcdom.rb
91
+ has_rdoc: true
92
+ homepage: http://vcdom.rubyforge.org/
93
+ licenses: []
94
+
95
+ post_install_message: PostInstall.txt
96
+ rdoc_options:
97
+ - --main
98
+ - README.rdoc
99
+ require_paths:
100
+ - lib
101
+ required_ruby_version: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ">="
104
+ - !ruby/object:Gem::Version
105
+ version: "0"
106
+ version:
107
+ required_rubygems_version: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ">="
110
+ - !ruby/object:Gem::Version
111
+ version: "0"
112
+ version:
113
+ requirements: []
114
+
115
+ rubyforge_project: vcdom
116
+ rubygems_version: 1.3.5
117
+ signing_key:
118
+ specification_version: 3
119
+ summary: This library provides DOM implementation(s).
120
+ test_files:
121
+ - test/test_vcdom.rb
122
+ - test/test_helper.rb