wakizashi 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +8 -0
- data/Gemfile +4 -0
- data/README.md +54 -0
- data/Rakefile +24 -0
- data/app/app_delegate.rb +9 -0
- data/lib/wakizashi/base.rb +13 -0
- data/lib/wakizashi/version.rb +3 -0
- data/lib/wakizashi/xml_document.rb +148 -0
- data/lib/wakizashi/xml_element.rb +45 -0
- data/lib/wakizashi/xml_node.rb +5 -0
- data/lib/wakizashi.rb +15 -0
- data/spec/wakizashi_spec.rb +28 -0
- data/spec/xml_document_spec.rb +24 -0
- data/spec/xml_element_spec.rb +16 -0
- data/spec/xml_node_spec.rb +2 -0
- data/vendor/Podfile.lock +5 -0
- data/vendor/Pods/GDataXML-HTML/.gitignore +13 -0
- data/vendor/Pods/GDataXML-HTML/GDataXML-HTML/GDataXML-HTML-Info.plist +38 -0
- data/vendor/Pods/GDataXML-HTML/GDataXML-HTML/GDataXML-HTML-Prefix.pch +14 -0
- data/vendor/Pods/GDataXML-HTML/GDataXML-HTML/GDataXML_HTMLAppDelegate.h +28 -0
- data/vendor/Pods/GDataXML-HTML/GDataXML-HTML/GDataXML_HTMLAppDelegate.m +82 -0
- data/vendor/Pods/GDataXML-HTML/GDataXML-HTML/GDataXML_HTMLViewController.h +29 -0
- data/vendor/Pods/GDataXML-HTML/GDataXML-HTML/GDataXML_HTMLViewController.m +89 -0
- data/vendor/Pods/GDataXML-HTML/GDataXML-HTML/en.lproj/GDataXML_HTMLViewController.xib +351 -0
- data/vendor/Pods/GDataXML-HTML/GDataXML-HTML/en.lproj/InfoPlist.strings +2 -0
- data/vendor/Pods/GDataXML-HTML/GDataXML-HTML/en.lproj/MainWindow.xib +444 -0
- data/vendor/Pods/GDataXML-HTML/GDataXML-HTML/html.html +34 -0
- data/vendor/Pods/GDataXML-HTML/GDataXML-HTML/lib/GDataXMLNode.h +229 -0
- data/vendor/Pods/GDataXML-HTML/GDataXML-HTML/lib/GDataXMLNode.m +1910 -0
- data/vendor/Pods/GDataXML-HTML/GDataXML-HTML/main.m +24 -0
- data/vendor/Pods/GDataXML-HTML/GDataXML-HTML/xml.xml +15 -0
- data/vendor/Pods/GDataXML-HTML/GDataXML-HTML.xcodeproj/project.pbxproj +317 -0
- data/vendor/Pods/GDataXML-HTML/GDataXML-HTML.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/vendor/Pods/GDataXML-HTML/README.markdown +55 -0
- data/vendor/Pods/Headers/GDataXML-HTML/GDataXMLNode.h +229 -0
- data/vendor/Pods/Pods-prefix.pch +3 -0
- data/vendor/Pods/Pods-resources.sh +15 -0
- data/vendor/Pods/Pods.bridgesupport +231 -0
- data/vendor/Pods/Pods.xcconfig +4 -0
- data/vendor/Pods/build-iPhoneSimulator/libPods.a +0 -0
- data/wakizashi.gemspec +18 -0
- metadata +124 -0
@@ -0,0 +1,231 @@
|
|
1
|
+
<?xml version='1.0'?>
|
2
|
+
<signatures version='1.0'>
|
3
|
+
<constant name='kGDataXMLXPathDefaultNamespacePrefix' declared_type='char*' const='true' type='*'/>
|
4
|
+
<enum name='GDataXMLAttributeDeclarationKind' value='10'/>
|
5
|
+
<enum name='GDataXMLAttributeKind' value='3'/>
|
6
|
+
<enum name='GDataXMLCommentKind' value='6'/>
|
7
|
+
<enum name='GDataXMLDTDKind' value='8'/>
|
8
|
+
<enum name='GDataXMLDocumentKind' value='1'/>
|
9
|
+
<enum name='GDataXMLElementDeclarationKind' value='11'/>
|
10
|
+
<enum name='GDataXMLElementKind' value='2'/>
|
11
|
+
<enum name='GDataXMLEntityDeclarationKind' value='9'/>
|
12
|
+
<enum name='GDataXMLInvalidKind' value='0'/>
|
13
|
+
<enum name='GDataXMLNamespaceKind' value='4'/>
|
14
|
+
<enum name='GDataXMLNotationDeclarationKind' value='12'/>
|
15
|
+
<enum name='GDataXMLProcessingInstructionKind' value='5'/>
|
16
|
+
<enum name='GDataXMLTextKind' value='7'/>
|
17
|
+
<class name='GDataXMLDocument'>
|
18
|
+
<method selector='XMLData'>
|
19
|
+
<retval declared_type='NSData*' type='@'/>
|
20
|
+
</method>
|
21
|
+
<method selector='description'>
|
22
|
+
<retval declared_type='NSString*' type='@'/>
|
23
|
+
</method>
|
24
|
+
<method selector='initWithData:options:error:'>
|
25
|
+
<arg name='data' declared_type='NSData*' type='@' index='0'/>
|
26
|
+
<arg name='mask' declared_type='unsigned int' type='I' index='1'/>
|
27
|
+
<arg name='error' declared_type='NSError**' type='^@' index='2'/>
|
28
|
+
<retval declared_type='id' type='@'/>
|
29
|
+
</method>
|
30
|
+
<method selector='initWithHTMLData:options:error:'>
|
31
|
+
<arg name='data' declared_type='NSData*' type='@' index='0'/>
|
32
|
+
<arg name='mask' declared_type='unsigned int' type='I' index='1'/>
|
33
|
+
<arg name='error' declared_type='NSError**' type='^@' index='2'/>
|
34
|
+
<retval declared_type='id' type='@'/>
|
35
|
+
</method>
|
36
|
+
<method selector='initWithHTMLString:options:error:'>
|
37
|
+
<arg name='str' declared_type='NSString*' type='@' index='0'/>
|
38
|
+
<arg name='mask' declared_type='unsigned int' type='I' index='1'/>
|
39
|
+
<arg name='error' declared_type='NSError**' type='^@' index='2'/>
|
40
|
+
<retval declared_type='id' type='@'/>
|
41
|
+
</method>
|
42
|
+
<method selector='initWithRootElement:'>
|
43
|
+
<arg name='element' declared_type='GDataXMLElement*' type='@' index='0'/>
|
44
|
+
<retval declared_type='id' type='@'/>
|
45
|
+
</method>
|
46
|
+
<method selector='initWithXMLString:options:error:'>
|
47
|
+
<arg name='str' declared_type='NSString*' type='@' index='0'/>
|
48
|
+
<arg name='mask' declared_type='unsigned int' type='I' index='1'/>
|
49
|
+
<arg name='error' declared_type='NSError**' type='^@' index='2'/>
|
50
|
+
<retval declared_type='id' type='@'/>
|
51
|
+
</method>
|
52
|
+
<method selector='nodesForXPath:error:'>
|
53
|
+
<arg name='xpath' declared_type='NSString*' type='@' index='0'/>
|
54
|
+
<arg name='error' declared_type='NSError**' type='^@' index='1'/>
|
55
|
+
<retval declared_type='NSArray*' type='@'/>
|
56
|
+
</method>
|
57
|
+
<method selector='nodesForXPath:namespaces:error:'>
|
58
|
+
<arg name='xpath' declared_type='NSString*' type='@' index='0'/>
|
59
|
+
<arg name='namespaces' declared_type='NSDictionary*' type='@' index='1'/>
|
60
|
+
<arg name='error' declared_type='NSError**' type='^@' index='2'/>
|
61
|
+
<retval declared_type='NSArray*' type='@'/>
|
62
|
+
</method>
|
63
|
+
<method selector='rootElement'>
|
64
|
+
<retval declared_type='GDataXMLElement*' type='@'/>
|
65
|
+
</method>
|
66
|
+
<method selector='setCharacterEncoding:'>
|
67
|
+
<arg name='encoding' declared_type='NSString*' type='@' index='0'/>
|
68
|
+
<retval declared_type='void' type='v'/>
|
69
|
+
</method>
|
70
|
+
<method selector='setVersion:'>
|
71
|
+
<arg name='version' declared_type='NSString*' type='@' index='0'/>
|
72
|
+
<retval declared_type='void' type='v'/>
|
73
|
+
</method>
|
74
|
+
</class>
|
75
|
+
<class name='GDataXMLElement'>
|
76
|
+
<method selector='addAttribute:'>
|
77
|
+
<arg name='attribute' declared_type='GDataXMLNode*' type='@' index='0'/>
|
78
|
+
<retval declared_type='void' type='v'/>
|
79
|
+
</method>
|
80
|
+
<method selector='addChild:'>
|
81
|
+
<arg name='child' declared_type='GDataXMLNode*' type='@' index='0'/>
|
82
|
+
<retval declared_type='void' type='v'/>
|
83
|
+
</method>
|
84
|
+
<method selector='addNamespace:'>
|
85
|
+
<arg name='aNamespace' declared_type='GDataXMLNode*' type='@' index='0'/>
|
86
|
+
<retval declared_type='void' type='v'/>
|
87
|
+
</method>
|
88
|
+
<method selector='attributeForLocalName:URI:'>
|
89
|
+
<arg name='name' declared_type='NSString*' type='@' index='0'/>
|
90
|
+
<arg name='attributeURI' declared_type='NSString*' type='@' index='1'/>
|
91
|
+
<retval declared_type='GDataXMLNode*' type='@'/>
|
92
|
+
</method>
|
93
|
+
<method selector='attributeForName:'>
|
94
|
+
<arg name='name' declared_type='NSString*' type='@' index='0'/>
|
95
|
+
<retval declared_type='GDataXMLNode*' type='@'/>
|
96
|
+
</method>
|
97
|
+
<method selector='attributes'>
|
98
|
+
<retval declared_type='NSArray*' type='@'/>
|
99
|
+
</method>
|
100
|
+
<method selector='elementsForLocalName:URI:'>
|
101
|
+
<arg name='localName' declared_type='NSString*' type='@' index='0'/>
|
102
|
+
<arg name='URI' declared_type='NSString*' type='@' index='1'/>
|
103
|
+
<retval declared_type='NSArray*' type='@'/>
|
104
|
+
</method>
|
105
|
+
<method selector='elementsForName:'>
|
106
|
+
<arg name='name' declared_type='NSString*' type='@' index='0'/>
|
107
|
+
<retval declared_type='NSArray*' type='@'/>
|
108
|
+
</method>
|
109
|
+
<method selector='initWithHTMLString:error:'>
|
110
|
+
<arg name='str' declared_type='NSString*' type='@' index='0'/>
|
111
|
+
<arg name='error' declared_type='NSError**' type='^@' index='1'/>
|
112
|
+
<retval declared_type='id' type='@'/>
|
113
|
+
</method>
|
114
|
+
<method selector='initWithXMLString:error:'>
|
115
|
+
<arg name='str' declared_type='NSString*' type='@' index='0'/>
|
116
|
+
<arg name='error' declared_type='NSError**' type='^@' index='1'/>
|
117
|
+
<retval declared_type='id' type='@'/>
|
118
|
+
</method>
|
119
|
+
<method selector='namespaces'>
|
120
|
+
<retval declared_type='NSArray*' type='@'/>
|
121
|
+
</method>
|
122
|
+
<method selector='removeChild:'>
|
123
|
+
<arg name='child' declared_type='GDataXMLNode*' type='@' index='0'/>
|
124
|
+
<retval declared_type='void' type='v'/>
|
125
|
+
</method>
|
126
|
+
<method selector='resolvePrefixForNamespaceURI:'>
|
127
|
+
<arg name='namespaceURI' declared_type='NSString*' type='@' index='0'/>
|
128
|
+
<retval declared_type='NSString*' type='@'/>
|
129
|
+
</method>
|
130
|
+
<method selector='setNamespaces:'>
|
131
|
+
<arg name='namespaces' declared_type='NSArray*' type='@' index='0'/>
|
132
|
+
<retval declared_type='void' type='v'/>
|
133
|
+
</method>
|
134
|
+
</class>
|
135
|
+
<class name='GDataXMLNode'>
|
136
|
+
<method selector='URI'>
|
137
|
+
<retval declared_type='NSString*' type='@'/>
|
138
|
+
</method>
|
139
|
+
<method selector='XMLNode'>
|
140
|
+
<retval declared_type='id' type='@'/>
|
141
|
+
</method>
|
142
|
+
<method selector='XMLString'>
|
143
|
+
<retval declared_type='NSString*' type='@'/>
|
144
|
+
</method>
|
145
|
+
<method selector='attributeWithName:URI:stringValue:' class_method='true'>
|
146
|
+
<arg name='name' declared_type='NSString*' type='@' index='0'/>
|
147
|
+
<arg name='attributeURI' declared_type='NSString*' type='@' index='1'/>
|
148
|
+
<arg name='value' declared_type='NSString*' type='@' index='2'/>
|
149
|
+
<retval declared_type='id' type='@'/>
|
150
|
+
</method>
|
151
|
+
<method selector='attributeWithName:stringValue:' class_method='true'>
|
152
|
+
<arg name='name' declared_type='NSString*' type='@' index='0'/>
|
153
|
+
<arg name='value' declared_type='NSString*' type='@' index='1'/>
|
154
|
+
<retval declared_type='id' type='@'/>
|
155
|
+
</method>
|
156
|
+
<method selector='childAtIndex:'>
|
157
|
+
<arg name='index' declared_type='unsigned int' type='I' index='0'/>
|
158
|
+
<retval declared_type='GDataXMLNode*' type='@'/>
|
159
|
+
</method>
|
160
|
+
<method selector='childCount'>
|
161
|
+
<retval declared_type='NSUInteger' type='I'/>
|
162
|
+
</method>
|
163
|
+
<method selector='children'>
|
164
|
+
<retval declared_type='NSArray*' type='@'/>
|
165
|
+
</method>
|
166
|
+
<method selector='elementWithName:' class_method='true'>
|
167
|
+
<arg name='name' declared_type='NSString*' type='@' index='0'/>
|
168
|
+
<retval declared_type='GDataXMLElement*' type='@'/>
|
169
|
+
</method>
|
170
|
+
<method selector='elementWithName:URI:' class_method='true'>
|
171
|
+
<arg name='name' declared_type='NSString*' type='@' index='0'/>
|
172
|
+
<arg name='value' declared_type='NSString*' type='@' index='1'/>
|
173
|
+
<retval declared_type='GDataXMLElement*' type='@'/>
|
174
|
+
</method>
|
175
|
+
<method selector='elementWithName:stringValue:' class_method='true'>
|
176
|
+
<arg name='name' declared_type='NSString*' type='@' index='0'/>
|
177
|
+
<arg name='value' declared_type='NSString*' type='@' index='1'/>
|
178
|
+
<retval declared_type='GDataXMLElement*' type='@'/>
|
179
|
+
</method>
|
180
|
+
<method selector='kind'>
|
181
|
+
<retval declared_type='GDataXMLNodeKind' type='I'/>
|
182
|
+
</method>
|
183
|
+
<method selector='localName'>
|
184
|
+
<retval declared_type='NSString*' type='@'/>
|
185
|
+
</method>
|
186
|
+
<method selector='localNameForName:' class_method='true'>
|
187
|
+
<arg name='name' declared_type='NSString*' type='@' index='0'/>
|
188
|
+
<retval declared_type='NSString*' type='@'/>
|
189
|
+
</method>
|
190
|
+
<method selector='name'>
|
191
|
+
<retval declared_type='NSString*' type='@'/>
|
192
|
+
</method>
|
193
|
+
<method selector='namespaceWithName:stringValue:' class_method='true'>
|
194
|
+
<arg name='name' declared_type='NSString*' type='@' index='0'/>
|
195
|
+
<arg name='value' declared_type='NSString*' type='@' index='1'/>
|
196
|
+
<retval declared_type='id' type='@'/>
|
197
|
+
</method>
|
198
|
+
<method selector='nodesForXPath:error:'>
|
199
|
+
<arg name='xpath' declared_type='NSString*' type='@' index='0'/>
|
200
|
+
<arg name='error' declared_type='NSError**' type='^@' index='1'/>
|
201
|
+
<retval declared_type='NSArray*' type='@'/>
|
202
|
+
</method>
|
203
|
+
<method selector='nodesForXPath:namespaces:error:'>
|
204
|
+
<arg name='xpath' declared_type='NSString*' type='@' index='0'/>
|
205
|
+
<arg name='namespaces' declared_type='NSDictionary*' type='@' index='1'/>
|
206
|
+
<arg name='error' declared_type='NSError**' type='^@' index='2'/>
|
207
|
+
<retval declared_type='NSArray*' type='@'/>
|
208
|
+
</method>
|
209
|
+
<method selector='prefix'>
|
210
|
+
<retval declared_type='NSString*' type='@'/>
|
211
|
+
</method>
|
212
|
+
<method selector='prefixForName:' class_method='true'>
|
213
|
+
<arg name='name' declared_type='NSString*' type='@' index='0'/>
|
214
|
+
<retval declared_type='NSString*' type='@'/>
|
215
|
+
</method>
|
216
|
+
<method selector='releaseCachedValues'>
|
217
|
+
<retval declared_type='void' type='v'/>
|
218
|
+
</method>
|
219
|
+
<method selector='setStringValue:'>
|
220
|
+
<arg name='str' declared_type='NSString*' type='@' index='0'/>
|
221
|
+
<retval declared_type='void' type='v'/>
|
222
|
+
</method>
|
223
|
+
<method selector='stringValue'>
|
224
|
+
<retval declared_type='NSString*' type='@'/>
|
225
|
+
</method>
|
226
|
+
<method selector='textWithStringValue:' class_method='true'>
|
227
|
+
<arg name='value' declared_type='NSString*' type='@' index='0'/>
|
228
|
+
<retval declared_type='id' type='@'/>
|
229
|
+
</method>
|
230
|
+
</class>
|
231
|
+
</signatures>
|
Binary file
|
data/wakizashi.gemspec
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/wakizashi/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ["Francis Chong"]
|
6
|
+
gem.email = ["francis@ignition.hk"]
|
7
|
+
gem.description = "HTML/XML parser for RubyMotion, based on GDataXML-HTML."
|
8
|
+
gem.summary = "HTML/XML parser for RubyMotion, based on GDataXML-HTML, which is based on GDataXML and HTMLparser module of libxml2. It allows you to deal with non validating XML or HTML."
|
9
|
+
gem.homepage = "https://github.com/siuying/wakizashi"
|
10
|
+
|
11
|
+
gem.files = `git ls-files`.split($\)
|
12
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
13
|
+
gem.name = "wakizashi"
|
14
|
+
gem.require_paths = ["lib"]
|
15
|
+
gem.version = Wakizashi::VERSION
|
16
|
+
gem.add_dependency 'motion-cocoapods', '>= 1.0.1'
|
17
|
+
gem.add_development_dependency 'motion-redgreen'
|
18
|
+
end
|
metadata
ADDED
@@ -0,0 +1,124 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: wakizashi
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Francis Chong
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-05-24 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: motion-cocoapods
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 1.0.1
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 1.0.1
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: motion-redgreen
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
description: HTML/XML parser for RubyMotion, based on GDataXML-HTML.
|
47
|
+
email:
|
48
|
+
- francis@ignition.hk
|
49
|
+
executables: []
|
50
|
+
extensions: []
|
51
|
+
extra_rdoc_files: []
|
52
|
+
files:
|
53
|
+
- .gitignore
|
54
|
+
- Gemfile
|
55
|
+
- README.md
|
56
|
+
- Rakefile
|
57
|
+
- app/app_delegate.rb
|
58
|
+
- lib/wakizashi.rb
|
59
|
+
- lib/wakizashi/base.rb
|
60
|
+
- lib/wakizashi/version.rb
|
61
|
+
- lib/wakizashi/xml_document.rb
|
62
|
+
- lib/wakizashi/xml_element.rb
|
63
|
+
- lib/wakizashi/xml_node.rb
|
64
|
+
- spec/wakizashi_spec.rb
|
65
|
+
- spec/xml_document_spec.rb
|
66
|
+
- spec/xml_element_spec.rb
|
67
|
+
- spec/xml_node_spec.rb
|
68
|
+
- vendor/Podfile.lock
|
69
|
+
- vendor/Pods/GDataXML-HTML/.gitignore
|
70
|
+
- vendor/Pods/GDataXML-HTML/GDataXML-HTML.xcodeproj/project.pbxproj
|
71
|
+
- vendor/Pods/GDataXML-HTML/GDataXML-HTML.xcodeproj/project.xcworkspace/contents.xcworkspacedata
|
72
|
+
- vendor/Pods/GDataXML-HTML/GDataXML-HTML/GDataXML-HTML-Info.plist
|
73
|
+
- vendor/Pods/GDataXML-HTML/GDataXML-HTML/GDataXML-HTML-Prefix.pch
|
74
|
+
- vendor/Pods/GDataXML-HTML/GDataXML-HTML/GDataXML_HTMLAppDelegate.h
|
75
|
+
- vendor/Pods/GDataXML-HTML/GDataXML-HTML/GDataXML_HTMLAppDelegate.m
|
76
|
+
- vendor/Pods/GDataXML-HTML/GDataXML-HTML/GDataXML_HTMLViewController.h
|
77
|
+
- vendor/Pods/GDataXML-HTML/GDataXML-HTML/GDataXML_HTMLViewController.m
|
78
|
+
- vendor/Pods/GDataXML-HTML/GDataXML-HTML/en.lproj/GDataXML_HTMLViewController.xib
|
79
|
+
- vendor/Pods/GDataXML-HTML/GDataXML-HTML/en.lproj/InfoPlist.strings
|
80
|
+
- vendor/Pods/GDataXML-HTML/GDataXML-HTML/en.lproj/MainWindow.xib
|
81
|
+
- vendor/Pods/GDataXML-HTML/GDataXML-HTML/html.html
|
82
|
+
- vendor/Pods/GDataXML-HTML/GDataXML-HTML/lib/GDataXMLNode.h
|
83
|
+
- vendor/Pods/GDataXML-HTML/GDataXML-HTML/lib/GDataXMLNode.m
|
84
|
+
- vendor/Pods/GDataXML-HTML/GDataXML-HTML/main.m
|
85
|
+
- vendor/Pods/GDataXML-HTML/GDataXML-HTML/xml.xml
|
86
|
+
- vendor/Pods/GDataXML-HTML/README.markdown
|
87
|
+
- vendor/Pods/Headers/GDataXML-HTML/GDataXMLNode.h
|
88
|
+
- vendor/Pods/Pods-prefix.pch
|
89
|
+
- vendor/Pods/Pods-resources.sh
|
90
|
+
- vendor/Pods/Pods.bridgesupport
|
91
|
+
- vendor/Pods/Pods.xcconfig
|
92
|
+
- vendor/Pods/build-iPhoneSimulator/libPods.a
|
93
|
+
- wakizashi.gemspec
|
94
|
+
homepage: https://github.com/siuying/wakizashi
|
95
|
+
licenses: []
|
96
|
+
post_install_message:
|
97
|
+
rdoc_options: []
|
98
|
+
require_paths:
|
99
|
+
- lib
|
100
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
101
|
+
none: false
|
102
|
+
requirements:
|
103
|
+
- - ! '>='
|
104
|
+
- !ruby/object:Gem::Version
|
105
|
+
version: '0'
|
106
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
107
|
+
none: false
|
108
|
+
requirements:
|
109
|
+
- - ! '>='
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: '0'
|
112
|
+
requirements: []
|
113
|
+
rubyforge_project:
|
114
|
+
rubygems_version: 1.8.24
|
115
|
+
signing_key:
|
116
|
+
specification_version: 3
|
117
|
+
summary: HTML/XML parser for RubyMotion, based on GDataXML-HTML, which is based on
|
118
|
+
GDataXML and HTMLparser module of libxml2. It allows you to deal with non validating
|
119
|
+
XML or HTML.
|
120
|
+
test_files:
|
121
|
+
- spec/wakizashi_spec.rb
|
122
|
+
- spec/xml_document_spec.rb
|
123
|
+
- spec/xml_element_spec.rb
|
124
|
+
- spec/xml_node_spec.rb
|