psych 2.0.14-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.autotest +18 -0
- data/.gemtest +0 -0
- data/.travis.yml +16 -0
- data/CHANGELOG.rdoc +576 -0
- data/Manifest.txt +114 -0
- data/README.rdoc +71 -0
- data/Rakefile +123 -0
- data/ext/psych/depend +3 -0
- data/ext/psych/extconf.rb +38 -0
- data/ext/psych/psych.c +34 -0
- data/ext/psych/psych.h +20 -0
- data/ext/psych/psych_emitter.c +555 -0
- data/ext/psych/psych_emitter.h +8 -0
- data/ext/psych/psych_parser.c +597 -0
- data/ext/psych/psych_parser.h +6 -0
- data/ext/psych/psych_to_ruby.c +43 -0
- data/ext/psych/psych_to_ruby.h +8 -0
- data/ext/psych/psych_yaml_tree.c +24 -0
- data/ext/psych/psych_yaml_tree.h +8 -0
- data/ext/psych/yaml/LICENSE +19 -0
- data/ext/psych/yaml/api.c +1415 -0
- data/ext/psych/yaml/config.h +10 -0
- data/ext/psych/yaml/dumper.c +394 -0
- data/ext/psych/yaml/emitter.c +2329 -0
- data/ext/psych/yaml/loader.c +459 -0
- data/ext/psych/yaml/parser.c +1370 -0
- data/ext/psych/yaml/reader.c +469 -0
- data/ext/psych/yaml/scanner.c +3576 -0
- data/ext/psych/yaml/writer.c +141 -0
- data/ext/psych/yaml/yaml.h +1971 -0
- data/ext/psych/yaml/yaml_private.h +664 -0
- data/lib/psych.jar +0 -0
- data/lib/psych.rb +504 -0
- data/lib/psych/class_loader.rb +101 -0
- data/lib/psych/coder.rb +94 -0
- data/lib/psych/core_ext.rb +35 -0
- data/lib/psych/deprecated.rb +85 -0
- data/lib/psych/exception.rb +13 -0
- data/lib/psych/handler.rb +249 -0
- data/lib/psych/handlers/document_stream.rb +22 -0
- data/lib/psych/handlers/recorder.rb +39 -0
- data/lib/psych/json/ruby_events.rb +19 -0
- data/lib/psych/json/stream.rb +16 -0
- data/lib/psych/json/tree_builder.rb +12 -0
- data/lib/psych/json/yaml_events.rb +29 -0
- data/lib/psych/nodes.rb +77 -0
- data/lib/psych/nodes/alias.rb +18 -0
- data/lib/psych/nodes/document.rb +60 -0
- data/lib/psych/nodes/mapping.rb +56 -0
- data/lib/psych/nodes/node.rb +55 -0
- data/lib/psych/nodes/scalar.rb +67 -0
- data/lib/psych/nodes/sequence.rb +81 -0
- data/lib/psych/nodes/stream.rb +37 -0
- data/lib/psych/omap.rb +4 -0
- data/lib/psych/parser.rb +51 -0
- data/lib/psych/scalar_scanner.rb +149 -0
- data/lib/psych/set.rb +4 -0
- data/lib/psych/stream.rb +37 -0
- data/lib/psych/streaming.rb +27 -0
- data/lib/psych/syntax_error.rb +21 -0
- data/lib/psych/tree_builder.rb +96 -0
- data/lib/psych/versions.rb +3 -0
- data/lib/psych/visitors.rb +6 -0
- data/lib/psych/visitors/depth_first.rb +26 -0
- data/lib/psych/visitors/emitter.rb +51 -0
- data/lib/psych/visitors/json_tree.rb +24 -0
- data/lib/psych/visitors/to_ruby.rb +404 -0
- data/lib/psych/visitors/visitor.rb +19 -0
- data/lib/psych/visitors/yaml_tree.rb +605 -0
- data/lib/psych/y.rb +9 -0
- data/lib/psych_jars.rb +5 -0
- data/test/psych/handlers/test_recorder.rb +25 -0
- data/test/psych/helper.rb +121 -0
- data/test/psych/json/test_stream.rb +109 -0
- data/test/psych/nodes/test_enumerable.rb +43 -0
- data/test/psych/test_alias_and_anchor.rb +96 -0
- data/test/psych/test_array.rb +57 -0
- data/test/psych/test_boolean.rb +36 -0
- data/test/psych/test_class.rb +36 -0
- data/test/psych/test_coder.rb +206 -0
- data/test/psych/test_date_time.rb +38 -0
- data/test/psych/test_deprecated.rb +214 -0
- data/test/psych/test_document.rb +46 -0
- data/test/psych/test_emitter.rb +93 -0
- data/test/psych/test_encoding.rb +259 -0
- data/test/psych/test_exception.rb +157 -0
- data/test/psych/test_hash.rb +94 -0
- data/test/psych/test_json_tree.rb +65 -0
- data/test/psych/test_merge_keys.rb +180 -0
- data/test/psych/test_nil.rb +18 -0
- data/test/psych/test_null.rb +19 -0
- data/test/psych/test_numeric.rb +45 -0
- data/test/psych/test_object.rb +44 -0
- data/test/psych/test_object_references.rb +71 -0
- data/test/psych/test_omap.rb +75 -0
- data/test/psych/test_parser.rb +339 -0
- data/test/psych/test_psych.rb +168 -0
- data/test/psych/test_safe_load.rb +97 -0
- data/test/psych/test_scalar.rb +11 -0
- data/test/psych/test_scalar_scanner.rb +106 -0
- data/test/psych/test_serialize_subclasses.rb +38 -0
- data/test/psych/test_set.rb +49 -0
- data/test/psych/test_stream.rb +93 -0
- data/test/psych/test_string.rb +226 -0
- data/test/psych/test_struct.rb +49 -0
- data/test/psych/test_symbol.rb +25 -0
- data/test/psych/test_tainted.rb +130 -0
- data/test/psych/test_to_yaml_properties.rb +63 -0
- data/test/psych/test_tree_builder.rb +79 -0
- data/test/psych/test_yaml.rb +1292 -0
- data/test/psych/test_yamldbm.rb +193 -0
- data/test/psych/test_yamlstore.rb +85 -0
- data/test/psych/visitors/test_depth_first.rb +49 -0
- data/test/psych/visitors/test_emitter.rb +144 -0
- data/test/psych/visitors/test_to_ruby.rb +333 -0
- data/test/psych/visitors/test_yaml_tree.rb +173 -0
- metadata +240 -0
metadata
ADDED
@@ -0,0 +1,240 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: psych
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.0.14
|
5
|
+
platform: java
|
6
|
+
authors:
|
7
|
+
- Aaron Patterson
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-08-21 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: jar-dependencies
|
15
|
+
version_requirements: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.1.7
|
20
|
+
requirement: !ruby/object:Gem::Requirement
|
21
|
+
requirements:
|
22
|
+
- - ">="
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 0.1.7
|
25
|
+
prerelease: false
|
26
|
+
type: :runtime
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rdoc
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '4.0'
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
35
|
+
requirements:
|
36
|
+
- - "~>"
|
37
|
+
- !ruby/object:Gem::Version
|
38
|
+
version: '4.0'
|
39
|
+
prerelease: false
|
40
|
+
type: :development
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake-compiler
|
43
|
+
version_requirements: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 0.4.1
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 0.4.1
|
53
|
+
prerelease: false
|
54
|
+
type: :development
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: minitest
|
57
|
+
version_requirements: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '5.0'
|
62
|
+
requirement: !ruby/object:Gem::Requirement
|
63
|
+
requirements:
|
64
|
+
- - "~>"
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: '5.0'
|
67
|
+
prerelease: false
|
68
|
+
type: :development
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: hoe
|
71
|
+
version_requirements: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '3.13'
|
76
|
+
requirement: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - "~>"
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: '3.13'
|
81
|
+
prerelease: false
|
82
|
+
type: :development
|
83
|
+
description: |-
|
84
|
+
Psych is a YAML parser and emitter. Psych leverages libyaml[http://pyyaml.org/wiki/LibYAML]
|
85
|
+
for its YAML parsing and emitting capabilities. In addition to wrapping
|
86
|
+
libyaml, Psych also knows how to serialize and de-serialize most Ruby objects
|
87
|
+
to and from the YAML format.
|
88
|
+
email:
|
89
|
+
- aaron@tenderlovemaking.com
|
90
|
+
executables: []
|
91
|
+
extensions: []
|
92
|
+
extra_rdoc_files:
|
93
|
+
- CHANGELOG.rdoc
|
94
|
+
- Manifest.txt
|
95
|
+
- README.rdoc
|
96
|
+
files:
|
97
|
+
- ".autotest"
|
98
|
+
- ".gemtest"
|
99
|
+
- ".travis.yml"
|
100
|
+
- CHANGELOG.rdoc
|
101
|
+
- Manifest.txt
|
102
|
+
- README.rdoc
|
103
|
+
- Rakefile
|
104
|
+
- ext/psych/depend
|
105
|
+
- ext/psych/extconf.rb
|
106
|
+
- ext/psych/psych.c
|
107
|
+
- ext/psych/psych.h
|
108
|
+
- ext/psych/psych_emitter.c
|
109
|
+
- ext/psych/psych_emitter.h
|
110
|
+
- ext/psych/psych_parser.c
|
111
|
+
- ext/psych/psych_parser.h
|
112
|
+
- ext/psych/psych_to_ruby.c
|
113
|
+
- ext/psych/psych_to_ruby.h
|
114
|
+
- ext/psych/psych_yaml_tree.c
|
115
|
+
- ext/psych/psych_yaml_tree.h
|
116
|
+
- ext/psych/yaml/LICENSE
|
117
|
+
- ext/psych/yaml/api.c
|
118
|
+
- ext/psych/yaml/config.h
|
119
|
+
- ext/psych/yaml/dumper.c
|
120
|
+
- ext/psych/yaml/emitter.c
|
121
|
+
- ext/psych/yaml/loader.c
|
122
|
+
- ext/psych/yaml/parser.c
|
123
|
+
- ext/psych/yaml/reader.c
|
124
|
+
- ext/psych/yaml/scanner.c
|
125
|
+
- ext/psych/yaml/writer.c
|
126
|
+
- ext/psych/yaml/yaml.h
|
127
|
+
- ext/psych/yaml/yaml_private.h
|
128
|
+
- lib/psych.jar
|
129
|
+
- lib/psych.rb
|
130
|
+
- lib/psych/class_loader.rb
|
131
|
+
- lib/psych/coder.rb
|
132
|
+
- lib/psych/core_ext.rb
|
133
|
+
- lib/psych/deprecated.rb
|
134
|
+
- lib/psych/exception.rb
|
135
|
+
- lib/psych/handler.rb
|
136
|
+
- lib/psych/handlers/document_stream.rb
|
137
|
+
- lib/psych/handlers/recorder.rb
|
138
|
+
- lib/psych/json/ruby_events.rb
|
139
|
+
- lib/psych/json/stream.rb
|
140
|
+
- lib/psych/json/tree_builder.rb
|
141
|
+
- lib/psych/json/yaml_events.rb
|
142
|
+
- lib/psych/nodes.rb
|
143
|
+
- lib/psych/nodes/alias.rb
|
144
|
+
- lib/psych/nodes/document.rb
|
145
|
+
- lib/psych/nodes/mapping.rb
|
146
|
+
- lib/psych/nodes/node.rb
|
147
|
+
- lib/psych/nodes/scalar.rb
|
148
|
+
- lib/psych/nodes/sequence.rb
|
149
|
+
- lib/psych/nodes/stream.rb
|
150
|
+
- lib/psych/omap.rb
|
151
|
+
- lib/psych/parser.rb
|
152
|
+
- lib/psych/scalar_scanner.rb
|
153
|
+
- lib/psych/set.rb
|
154
|
+
- lib/psych/stream.rb
|
155
|
+
- lib/psych/streaming.rb
|
156
|
+
- lib/psych/syntax_error.rb
|
157
|
+
- lib/psych/tree_builder.rb
|
158
|
+
- lib/psych/versions.rb
|
159
|
+
- lib/psych/visitors.rb
|
160
|
+
- lib/psych/visitors/depth_first.rb
|
161
|
+
- lib/psych/visitors/emitter.rb
|
162
|
+
- lib/psych/visitors/json_tree.rb
|
163
|
+
- lib/psych/visitors/to_ruby.rb
|
164
|
+
- lib/psych/visitors/visitor.rb
|
165
|
+
- lib/psych/visitors/yaml_tree.rb
|
166
|
+
- lib/psych/y.rb
|
167
|
+
- lib/psych_jars.rb
|
168
|
+
- test/psych/handlers/test_recorder.rb
|
169
|
+
- test/psych/helper.rb
|
170
|
+
- test/psych/json/test_stream.rb
|
171
|
+
- test/psych/nodes/test_enumerable.rb
|
172
|
+
- test/psych/test_alias_and_anchor.rb
|
173
|
+
- test/psych/test_array.rb
|
174
|
+
- test/psych/test_boolean.rb
|
175
|
+
- test/psych/test_class.rb
|
176
|
+
- test/psych/test_coder.rb
|
177
|
+
- test/psych/test_date_time.rb
|
178
|
+
- test/psych/test_deprecated.rb
|
179
|
+
- test/psych/test_document.rb
|
180
|
+
- test/psych/test_emitter.rb
|
181
|
+
- test/psych/test_encoding.rb
|
182
|
+
- test/psych/test_exception.rb
|
183
|
+
- test/psych/test_hash.rb
|
184
|
+
- test/psych/test_json_tree.rb
|
185
|
+
- test/psych/test_merge_keys.rb
|
186
|
+
- test/psych/test_nil.rb
|
187
|
+
- test/psych/test_null.rb
|
188
|
+
- test/psych/test_numeric.rb
|
189
|
+
- test/psych/test_object.rb
|
190
|
+
- test/psych/test_object_references.rb
|
191
|
+
- test/psych/test_omap.rb
|
192
|
+
- test/psych/test_parser.rb
|
193
|
+
- test/psych/test_psych.rb
|
194
|
+
- test/psych/test_safe_load.rb
|
195
|
+
- test/psych/test_scalar.rb
|
196
|
+
- test/psych/test_scalar_scanner.rb
|
197
|
+
- test/psych/test_serialize_subclasses.rb
|
198
|
+
- test/psych/test_set.rb
|
199
|
+
- test/psych/test_stream.rb
|
200
|
+
- test/psych/test_string.rb
|
201
|
+
- test/psych/test_struct.rb
|
202
|
+
- test/psych/test_symbol.rb
|
203
|
+
- test/psych/test_tainted.rb
|
204
|
+
- test/psych/test_to_yaml_properties.rb
|
205
|
+
- test/psych/test_tree_builder.rb
|
206
|
+
- test/psych/test_yaml.rb
|
207
|
+
- test/psych/test_yamldbm.rb
|
208
|
+
- test/psych/test_yamlstore.rb
|
209
|
+
- test/psych/visitors/test_depth_first.rb
|
210
|
+
- test/psych/visitors/test_emitter.rb
|
211
|
+
- test/psych/visitors/test_to_ruby.rb
|
212
|
+
- test/psych/visitors/test_yaml_tree.rb
|
213
|
+
homepage: http://github.com/tenderlove/psych
|
214
|
+
licenses:
|
215
|
+
- MIT
|
216
|
+
metadata: {}
|
217
|
+
post_install_message:
|
218
|
+
rdoc_options:
|
219
|
+
- "--main"
|
220
|
+
- README.rdoc
|
221
|
+
require_paths:
|
222
|
+
- lib
|
223
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
224
|
+
requirements:
|
225
|
+
- - ">="
|
226
|
+
- !ruby/object:Gem::Version
|
227
|
+
version: 1.9.2
|
228
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
229
|
+
requirements:
|
230
|
+
- - ">="
|
231
|
+
- !ruby/object:Gem::Version
|
232
|
+
version: '0'
|
233
|
+
requirements:
|
234
|
+
- jar org.yaml:snakeyaml, 1.14
|
235
|
+
rubyforge_project:
|
236
|
+
rubygems_version: 2.4.8
|
237
|
+
signing_key:
|
238
|
+
specification_version: 4
|
239
|
+
summary: Psych is a YAML parser and emitter
|
240
|
+
test_files: []
|