psych 3.0.0.beta2-x86-mingw32
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.
- checksums.yaml +7 -0
- data/.gitignore +16 -0
- data/.travis.yml +20 -0
- data/CHANGELOG.rdoc +576 -0
- data/Gemfile +3 -0
- data/Mavenfile +7 -0
- data/README.md +73 -0
- data/Rakefile +46 -0
- data/bin/console +7 -0
- data/bin/setup +6 -0
- data/ext/psych/.gitignore +11 -0
- data/ext/psych/depend +3 -0
- data/ext/psych/extconf.rb +39 -0
- data/ext/psych/psych.c +34 -0
- data/ext/psych/psych.h +17 -0
- data/ext/psych/psych_emitter.c +554 -0
- data/ext/psych/psych_emitter.h +8 -0
- data/ext/psych/psych_parser.c +568 -0
- data/ext/psych/psych_parser.h +6 -0
- data/ext/psych/psych_to_ruby.c +39 -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 +1392 -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 +444 -0
- data/ext/psych/yaml/parser.c +1374 -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 +662 -0
- data/lib/2.2/psych.so +0 -0
- data/lib/2.3/psych.so +0 -0
- data/lib/2.4/psych.so +0 -0
- data/lib/psych/class_loader.rb +102 -0
- data/lib/psych/coder.rb +95 -0
- data/lib/psych/core_ext.rb +19 -0
- data/lib/psych/exception.rb +14 -0
- data/lib/psych/handler.rb +250 -0
- data/lib/psych/handlers/document_stream.rb +23 -0
- data/lib/psych/handlers/recorder.rb +40 -0
- data/lib/psych/json/ruby_events.rb +20 -0
- data/lib/psych/json/stream.rb +17 -0
- data/lib/psych/json/tree_builder.rb +13 -0
- data/lib/psych/json/yaml_events.rb +30 -0
- data/lib/psych/nodes/alias.rb +19 -0
- data/lib/psych/nodes/document.rb +61 -0
- data/lib/psych/nodes/mapping.rb +57 -0
- data/lib/psych/nodes/node.rb +56 -0
- data/lib/psych/nodes/scalar.rb +68 -0
- data/lib/psych/nodes/sequence.rb +82 -0
- data/lib/psych/nodes/stream.rb +38 -0
- data/lib/psych/nodes.rb +78 -0
- data/lib/psych/omap.rb +5 -0
- data/lib/psych/parser.rb +52 -0
- data/lib/psych/scalar_scanner.rb +149 -0
- data/lib/psych/set.rb +5 -0
- data/lib/psych/stream.rb +38 -0
- data/lib/psych/streaming.rb +28 -0
- data/lib/psych/syntax_error.rb +22 -0
- data/lib/psych/tree_builder.rb +97 -0
- data/lib/psych/versions.rb +9 -0
- data/lib/psych/visitors/depth_first.rb +27 -0
- data/lib/psych/visitors/emitter.rb +52 -0
- data/lib/psych/visitors/json_tree.rb +25 -0
- data/lib/psych/visitors/to_ruby.rb +401 -0
- data/lib/psych/visitors/visitor.rb +20 -0
- data/lib/psych/visitors/yaml_tree.rb +551 -0
- data/lib/psych/visitors.rb +7 -0
- data/lib/psych/y.rb +10 -0
- data/lib/psych.rb +511 -0
- data/psych.gemspec +64 -0
- metadata +175 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 42ec9a92fcf1d59119ade3dcff51bb7a105483c5
|
4
|
+
data.tar.gz: 6e81007e70f70ef0e650a7fcb9febca8d74604e7
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 0b4b97be0da898f294a2a019bf29736c7265098a011e63c215ccfab8673976d7bda6e9c17153e6cbd5abaac0dc79408eb17559e2a4261b1635f14f6eb39672a1
|
7
|
+
data.tar.gz: ed7a46b92c87a569887bd895aa6798ebd6c02f1862f838448d0c88338c6572dcff73402111de81c7baf869a91434ffc07053d0a93045c488496d2fe4b7abf612
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/CHANGELOG.rdoc
ADDED
@@ -0,0 +1,576 @@
|
|
1
|
+
Fri Feb 6 17:47:05 2015 Aaron Patterson <aaron@tenderlovemaking.com>
|
2
|
+
|
3
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: register nodes when
|
4
|
+
dumping objects with custom coders. [ruby-core:66215] [Bug #10496]
|
5
|
+
|
6
|
+
* test/psych/test_coder.rb: test for fix
|
7
|
+
|
8
|
+
Fri Feb 6 16:58:31 2015 Aaron Patterson <aaron@tenderlovemaking.com>
|
9
|
+
|
10
|
+
* ext/psych/lib/psych/visitors/to_ruby.rb: fix support for regular
|
11
|
+
expressions with newlines. tenderlove/psych#222
|
12
|
+
|
13
|
+
* test/psych/test_yaml.rb: test for change.
|
14
|
+
|
15
|
+
Thu Jan 29 02:34:27 2015 Aaron Patterson <aaron@tenderlovemaking.com>
|
16
|
+
|
17
|
+
* ext/psych/lib/psych/visitors/to_ruby.rb: fix parsing hashes with
|
18
|
+
instance variables when it is referenced multiple times.
|
19
|
+
* ext/psych/lib/psych.rb: bump version
|
20
|
+
* ext/psych/psych.gemspec: bump version
|
21
|
+
* test/psych/test_hash.rb: test for fix
|
22
|
+
|
23
|
+
Fri Jan 9 07:13:55 2015 Aaron Patterson <aaron@tenderlovemaking.com>
|
24
|
+
|
25
|
+
* ext/psych/lib/psych/visitors/to_ruby.rb: call `allocate` on hash
|
26
|
+
subclasses. Fixes github.com/tenderlove/psych/issues/196
|
27
|
+
|
28
|
+
* test/psych/test_hash.rb: test for change
|
29
|
+
|
30
|
+
Fri Jan 9 06:58:43 2015 Aaron Patterson <aaron@tenderlovemaking.com>
|
31
|
+
|
32
|
+
* ext/psych/lib/psych/visitors/to_ruby.rb: revive hashes with ivars
|
33
|
+
|
34
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: dump hashes with ivars.
|
35
|
+
Fixes github.com/psych/issues/43
|
36
|
+
|
37
|
+
* test/psych/test_hash.rb: test for change
|
38
|
+
|
39
|
+
Sun Nov 23 13:11:24 2014 Sean Griffin <sean@thoughtbot.com>
|
40
|
+
|
41
|
+
* lib/psych/visitors/to_ruby.rb: Allow loading any BasicObject that
|
42
|
+
defines #marshal_load, fixes #100
|
43
|
+
* lib/psych/visitors/yaml_tree.rb: Allow dumping any BasicObject that
|
44
|
+
defines #marshal_dump
|
45
|
+
|
46
|
+
Sat Aug 30 06:39:48 2014 Aaron Patterson <aaron@tenderlovemaking.com>
|
47
|
+
|
48
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: fix NameError dumping and
|
49
|
+
loading. Fixes GH #85. Thanks @brentdax for the patch!
|
50
|
+
* test/psych/test_exception.rb: test for fix
|
51
|
+
|
52
|
+
Sat Aug 30 06:23:40 2014 Aaron Patterson <aaron@tenderlovemaking.com>
|
53
|
+
|
54
|
+
* ext/psych/lib/psych/scalar_scanner.rb: fix loading strings that
|
55
|
+
look like integers but have a newline. Fixes GH #189
|
56
|
+
* test/psych/test_string.rb: test for fix
|
57
|
+
|
58
|
+
Sat Aug 30 06:10:39 2014 Aaron Patterson <aaron@tenderlovemaking.com>
|
59
|
+
|
60
|
+
* ext/psych/lib/psych/visitors/to_ruby.rb: merge keys with a hash
|
61
|
+
should merge the hash in to the parent.
|
62
|
+
* test/psych/test_merge_keys.rb: test for change. Fixes GH #202
|
63
|
+
|
64
|
+
Sat Aug 30 06:00:26 2014 Aaron Patterson <aaron@tenderlovemaking.com>
|
65
|
+
|
66
|
+
* ext/psych/lib/psych/visitors/to_ruby.rb: quoted "<<" strings
|
67
|
+
should not be treated as merge keys.
|
68
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: hashes with keys
|
69
|
+
containing "<<" should roundtrip.
|
70
|
+
* test/psych/test_merge_keys.rb: test for change. Fixes GH #203
|
71
|
+
|
72
|
+
Wed Aug 6 03:41:21 2014 Aaron Patterson <aaron@tenderlovemaking.com>
|
73
|
+
|
74
|
+
* ext/psych/lib/psych/visitors/to_ruby.rb: backwards compatibility for
|
75
|
+
hashes emitted by Syck. Github #198
|
76
|
+
* test/psych/test_hash.rb: test for change.
|
77
|
+
|
78
|
+
Fri Jun 6 07:41:41 2014 Aaron Patterson <aaron@tenderlovemaking.com>
|
79
|
+
|
80
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: dump empty symbols with a
|
81
|
+
tag so that they can be parsed on input. [Bug #9873] [ruby-core:62825]
|
82
|
+
* test/psych/test_symbol.rb: test for change
|
83
|
+
|
84
|
+
Sun May 25 11:35:41 2014 Zachary Scott <e@zzak.io>
|
85
|
+
|
86
|
+
* test/psych/*: YAML::ENGINE was removed in [Bug #8344]
|
87
|
+
|
88
|
+
2014-03-27 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
|
89
|
+
|
90
|
+
* ext/psych/yaml/scanner.c: merge libyaml 0.1.6
|
91
|
+
* ext/psych/yaml/yaml_private.h: ditto
|
92
|
+
|
93
|
+
Sat Mar 1 11:08:00 2014 Aaron Patterson <aaron@tenderlovemaking.com>
|
94
|
+
|
95
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: support dumping Encoding
|
96
|
+
objects.
|
97
|
+
|
98
|
+
* ext/psych/lib/psych/visitors/to_ruby.rb: support loading Encoding
|
99
|
+
objects.
|
100
|
+
|
101
|
+
* test/psych/test_encoding.rb: add test
|
102
|
+
|
103
|
+
* ext/psych/lib/psych.rb: add version
|
104
|
+
|
105
|
+
Wed Feb 5 10:11:36 2014 Zachary Scott <e@zzak.io>
|
106
|
+
|
107
|
+
* ext/psych/yaml/config.h: bump libyaml to 0.1.5
|
108
|
+
|
109
|
+
Wed Feb 5 04:16:41 2014 Aaron Patterson <aaron@tenderlovemaking.com>
|
110
|
+
|
111
|
+
* ext/psych/yaml/emitter.c: merge libyaml 0.1.5
|
112
|
+
* ext/psych/yaml/loader.c: ditto
|
113
|
+
* ext/psych/yaml/parser.c: ditto
|
114
|
+
* ext/psych/yaml/reader.c: ditto
|
115
|
+
* ext/psych/yaml/scanner.c: ditto
|
116
|
+
* ext/psych/yaml/writer.c: ditto
|
117
|
+
* ext/psych/yaml/yaml_private.h: ditto
|
118
|
+
|
119
|
+
Thu Jan 9 09:55:20 2014 Aaron Patterson <aaron@tenderlovemaking.com>
|
120
|
+
|
121
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: dumping strings with
|
122
|
+
quotes should not have changed. [ruby-core:59316] [Bug #9300]
|
123
|
+
|
124
|
+
* ext/psych/lib/psych.rb: fixed missing require.
|
125
|
+
|
126
|
+
* test/psych/test_string.rb: test
|
127
|
+
|
128
|
+
Wed Nov 27 06:40:18 2013 Aaron Patterson <aaron@tenderlovemaking.com>
|
129
|
+
|
130
|
+
* ext/psych/lib/psych/scalar_scanner.rb: fix support for negative
|
131
|
+
years.
|
132
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: ditto
|
133
|
+
* test/psych/test_date_time.rb: test for change.
|
134
|
+
Fixes: https://github.com/tenderlove/psych/issues/168
|
135
|
+
|
136
|
+
Wed Nov 27 04:46:55 2013 Aaron Patterson <aaron@tenderlovemaking.com>
|
137
|
+
|
138
|
+
* ext/psych/lib/psych/scalar_scanner.rb: fix regexp for matching TIME
|
139
|
+
strings.
|
140
|
+
* test/psych/test_date_time.rb: test for change.
|
141
|
+
Fixes: https://github.com/tenderlove/psych/issues/171
|
142
|
+
|
143
|
+
Wed Nov 6 04:14:25 2013 Aaron Patterson <aaron@tenderlovemaking.com>
|
144
|
+
|
145
|
+
* ext/psych/lib/psych/visitors/to_ruby.rb: process merge keys before
|
146
|
+
reviving objects. Fixes GH psych #168
|
147
|
+
* test/psych/test_merge_keys.rb: test for change
|
148
|
+
https://github.com/tenderlove/psych/issues/168
|
149
|
+
|
150
|
+
Wed Oct 30 03:25:10 2013 Aaron Patterson <aaron@tenderlovemaking.com>
|
151
|
+
|
152
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: make less garbage when
|
153
|
+
testing if a string is binary.
|
154
|
+
|
155
|
+
Wed Oct 30 03:08:24 2013 Aaron Patterson <aaron@tenderlovemaking.com>
|
156
|
+
|
157
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: string subclasses should
|
158
|
+
not be considered to be binary. Fixes Psych / GH 166
|
159
|
+
https://github.com/tenderlove/psych/issues/166
|
160
|
+
|
161
|
+
* test/psych/test_string.rb: test for fix
|
162
|
+
|
163
|
+
Fri Sep 20 23:44:07 2013 Zachary Scott <e@zzak.io>
|
164
|
+
|
165
|
+
* ext/psych/yaml/yaml.h: [DOC] fix typo by @GreenGeorge [Fixes GH-161]
|
166
|
+
https://github.com/tenderlove/psych/pull/161
|
167
|
+
|
168
|
+
Fri Sep 6 02:37:22 2013 Aaron Patterson <aaron@tenderlovemaking.com>
|
169
|
+
|
170
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: use double quotes when
|
171
|
+
strings start with special characters.
|
172
|
+
[Fixes GH-157] https://github.com/tenderlove/psych/issues/157
|
173
|
+
|
174
|
+
* test/psych/test_string.rb: test for change.
|
175
|
+
|
176
|
+
Thu Aug 29 02:40:45 2013 Aaron Patterson <aaron@tenderlovemaking.com>
|
177
|
+
|
178
|
+
* ext/psych/lib/psych/scalar_scanner.rb: invalid floats should be
|
179
|
+
treated as strings.
|
180
|
+
[Fixes GH-156] https://github.com/tenderlove/psych/issues/156
|
181
|
+
|
182
|
+
* test/psych/test_string.rb: test for change
|
183
|
+
|
184
|
+
Sat Jul 6 04:49:38 2013 Aaron Patterson <aaron@tenderlovemaking.com>
|
185
|
+
|
186
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: register time objects so
|
187
|
+
they are referenced as ids during output.
|
188
|
+
* test/psych/test_date_time.rb: corresponding test.
|
189
|
+
|
190
|
+
Wed May 15 02:22:16 2013 Aaron Patterson <aaron@tenderlovemaking.com>
|
191
|
+
|
192
|
+
* ext/psych/lib/psych.rb: Adding Psych.safe_load for loading a user
|
193
|
+
defined, restricted subset of Ruby object types.
|
194
|
+
* ext/psych/lib/psych/class_loader.rb: A class loader for
|
195
|
+
encapsulating the logic for which objects are allowed to be
|
196
|
+
deserialized.
|
197
|
+
* ext/psych/lib/psych/deprecated.rb: Changes to use the class loader
|
198
|
+
* ext/psych/lib/psych/exception.rb: ditto
|
199
|
+
* ext/psych/lib/psych/json/stream.rb: ditto
|
200
|
+
* ext/psych/lib/psych/nodes/node.rb: ditto
|
201
|
+
* ext/psych/lib/psych/scalar_scanner.rb: ditto
|
202
|
+
* ext/psych/lib/psych/stream.rb: ditto
|
203
|
+
* ext/psych/lib/psych/streaming.rb: ditto
|
204
|
+
* ext/psych/lib/psych/visitors/json_tree.rb: ditto
|
205
|
+
* ext/psych/lib/psych/visitors/to_ruby.rb: ditto
|
206
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: ditto
|
207
|
+
* ext/psych/psych_to_ruby.c: ditto
|
208
|
+
* test/psych/helper.rb: ditto
|
209
|
+
* test/psych/test_safe_load.rb: tests for restricted subset.
|
210
|
+
* test/psych/test_scalar_scanner.rb: ditto
|
211
|
+
* test/psych/visitors/test_to_ruby.rb: ditto
|
212
|
+
* test/psych/visitors/test_yaml_tree.rb: ditto
|
213
|
+
|
214
|
+
Sat Apr 6 02:54:08 2013 Aaron Patterson <aaron@tenderlovemaking.com>
|
215
|
+
|
216
|
+
* ext/psych/lib/psych/exception.rb: there should be only one exception
|
217
|
+
base class. Fixes tenderlove/psych #125
|
218
|
+
* ext/psych/lib/psych.rb: require the correct exception class
|
219
|
+
* ext/psych/lib/psych/syntax_error.rb: ditto
|
220
|
+
* ext/psych/lib/psych/visitors/to_ruby.rb: ditto
|
221
|
+
|
222
|
+
Sat Apr 6 02:06:04 2013 Aaron Patterson <aaron@tenderlovemaking.com>
|
223
|
+
|
224
|
+
* ext/psych/lib/psych/visitors/to_ruby.rb: correctly register
|
225
|
+
self-referential strings. Fixes tenderlove/psych #135
|
226
|
+
|
227
|
+
* test/psych/test_string.rb: appropriate test.
|
228
|
+
|
229
|
+
Fri Mar 1 09:15:00 2013 Zachary Scott <zachary@zacharyscott.net>
|
230
|
+
|
231
|
+
* lib/psych.rb: specify in rdoc what object is returned in parser
|
232
|
+
By Adam Stankiewicz [Github Fixes #133]
|
233
|
+
|
234
|
+
Fri Mar 1 03:22:00 2013 Zachary Scott <zachary@zacharyscott.net>
|
235
|
+
|
236
|
+
* lib/psych.rb: rdoc for Psych overview by Adam Stankiewicz
|
237
|
+
[Github Fixes #134]
|
238
|
+
|
239
|
+
Sun Feb 17 01:13:00 2013 Zachary Scott <zachary@zacharyscott.net>
|
240
|
+
|
241
|
+
* lib/psych/y.rb: Document Kernel#y by Adam Stankiewicz
|
242
|
+
[Github Fixes #127]
|
243
|
+
|
244
|
+
Fri Feb 8 08:53:27 2013 Aaron Patterson <aaron@tenderlovemaking.com>
|
245
|
+
|
246
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: fixing string quotation
|
247
|
+
when dumping Ruby strings. Thanks Ingy
|
248
|
+
|
249
|
+
* test/psych/test_psych.rb: appropriate tests.
|
250
|
+
|
251
|
+
* test/psych/test_yaml.rb: ditto
|
252
|
+
|
253
|
+
Fri Feb 8 08:50:42 2013 Aaron Patterson <aaron@tenderlovemaking.com>
|
254
|
+
|
255
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: change output reference
|
256
|
+
ids to be sequential numbers.
|
257
|
+
|
258
|
+
Thu Jan 17 10:48:56 2013 Aaron Patterson <aaron@tenderlovemaking.com>
|
259
|
+
|
260
|
+
* ext/psych/lib/psych/scalar_scanner.rb: use constants rather than
|
261
|
+
calculating Inf and NaN.
|
262
|
+
|
263
|
+
Sun Jan 13 16:40:00 2013 Zachary Scott <zachary@zacharyscott.net>
|
264
|
+
|
265
|
+
* ext/psych/yaml/scanner.c: Typos by James Dabbs [Github Fixes #118]
|
266
|
+
|
267
|
+
Sat Jan 12 08:58:47 2013 Aaron Patterson <aaron@tenderlovemaking.com>
|
268
|
+
|
269
|
+
* ext/psych/lib/psych/visitors/to_ruby.rb: merge key values that
|
270
|
+
contain something besides a hash should be left in tact.
|
271
|
+
|
272
|
+
* test/psych/test_merge_keys.rb: test for change
|
273
|
+
|
274
|
+
Thu Jan 10 04:23:07 2013 Aaron Patterson <aaron@tenderlovemaking.com>
|
275
|
+
|
276
|
+
* ext/psych/lib/psych/scalar_scanner.rb: strip trailing dots from
|
277
|
+
floats so that Float() will not raise an exception.
|
278
|
+
|
279
|
+
* test/psych/test_numeric.rb: test to ensure "1." can be loaded
|
280
|
+
|
281
|
+
* test/psych/test_string.rb: make sure "1." can round trip
|
282
|
+
|
283
|
+
Sat Nov 17 12:03:41 2012 Aaron Patterson <aaron@tenderlovemaking.com>
|
284
|
+
|
285
|
+
* ext/psych/lib/psych/scalar_scanner.rb: avoid raising exceptions when
|
286
|
+
parsing Floats and Integers. Thanks riffraff [ruby-core:44426]
|
287
|
+
* test/psych/test_numeric.rb: associated test
|
288
|
+
|
289
|
+
Sat Nov 17 11:26:36 2012 Aaron Patterson <aaron@tenderlovemaking.com>
|
290
|
+
|
291
|
+
* ext/psych/lib/psych/core_ext.rb: move Kernel#y so that it can
|
292
|
+
manually be required as 'psych/y'.
|
293
|
+
|
294
|
+
* ext/psych/lib/psych/y.rb: ditto
|
295
|
+
|
296
|
+
Tue Nov 6 09:37:57 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
297
|
+
|
298
|
+
* ruby.c (load_file_internal): set default source encoding as
|
299
|
+
UTF-8 instead of US-ASCII. [ruby-core:46021] [Feature #6679]
|
300
|
+
|
301
|
+
* parse.y (parser_initialize): set default parser encoding as
|
302
|
+
UTF-8 instead of US-ASCII.
|
303
|
+
|
304
|
+
Mon Oct 29 10:22:00 2012 Aaron Patterson <aaron@tenderlovemaking.com>
|
305
|
+
|
306
|
+
* ext/psych/lib/psych/handlers/recorder.rb: added a class for
|
307
|
+
recording YAML parse and emit events.
|
308
|
+
|
309
|
+
* ext/psych/lib/psych/handler.rb: adding a list of events so that
|
310
|
+
handler classes can more easily be meta-programmed.
|
311
|
+
|
312
|
+
* test/psych/handlers/test_recorder.rb: tests for the change.
|
313
|
+
|
314
|
+
Sun Oct 28 10:12:15 2012 Aaron Patterson <aaron@tenderlovemaking.com>
|
315
|
+
|
316
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: `tree` should return the
|
317
|
+
same thing on every call.
|
318
|
+
|
319
|
+
* test/psych/visitors/test_yaml_tree.rb: related test.
|
320
|
+
|
321
|
+
Sun Oct 28 10:05:03 2012 Aaron Patterson <aaron@tenderlovemaking.com>
|
322
|
+
|
323
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: YAML Tree object should
|
324
|
+
be able to take an emitter object as it's output.
|
325
|
+
|
326
|
+
* test/psych/visitors/test_yaml_tree.rb: related test.
|
327
|
+
|
328
|
+
Thu Jul 19 09:33:46 2012 Aaron Patterson <aaron@tenderlovemaking.com>
|
329
|
+
|
330
|
+
* ext/psych/emitter.c (initialize): allow a configuration object to be
|
331
|
+
passed to the constructor so that mutation isn't required after
|
332
|
+
instantiation.
|
333
|
+
|
334
|
+
* ext/psych/lib/psych/handler.rb: add configuration object
|
335
|
+
|
336
|
+
* ext/psych/lib/psych/visitors/emitter.rb: use configuration object if
|
337
|
+
extra configuration is present.
|
338
|
+
|
339
|
+
Fri May 18 01:28:21 2012 Aaron Patterson <aaron@tenderlovemaking.com>
|
340
|
+
|
341
|
+
* ext/psych/parser.c (transcode_string): fix encoding index names.
|
342
|
+
Thanks markizko for reporting.
|
343
|
+
|
344
|
+
Wed May 16 05:11:29 2012 Aaron Patterson <aaron@tenderlovemaking.com>
|
345
|
+
|
346
|
+
* ext/psych/lib/psych/visitors/to_ruby.rb: fix a bug with string
|
347
|
+
subclass dumping and loading.
|
348
|
+
|
349
|
+
* test/psych/test_array.rb: pertinent tests
|
350
|
+
|
351
|
+
* test/psych/test_string.rb: ditto
|
352
|
+
|
353
|
+
Wed May 16 01:31:21 2012 Aaron Patterson <aaron@tenderlovemaking.com>
|
354
|
+
|
355
|
+
* ext/psych/lib/psych/visitors/to_ruby.rb: convert omap tagged maps to
|
356
|
+
Psych::Omap objects rather than hashes. [Bug #6425]
|
357
|
+
|
358
|
+
* test/psych/test_omap.rb: pertinent test.
|
359
|
+
|
360
|
+
Wed May 16 01:15:45 2012 Aaron Patterson <aaron@tenderlovemaking.com>
|
361
|
+
|
362
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: keep a reference to
|
363
|
+
custom coders so that GC does not impact dumped yaml reference ids.
|
364
|
+
|
365
|
+
Mon Apr 30 04:43:53 2012 Aaron Patterson <aaron@tenderlovemaking.com>
|
366
|
+
|
367
|
+
* ext/psych/lib/psych/json/yaml_events.rb: implicit styles should not
|
368
|
+
be changeable for JSON events.
|
369
|
+
|
370
|
+
Sat Apr 7 02:07:00 2012 Aaron Patterson <aaron@tenderlovemaking.com>
|
371
|
+
|
372
|
+
* ext/psych/parser.c: fall back to any encoding if the external
|
373
|
+
encoding is wrong. [ruby-core:44163]
|
374
|
+
* test/psych/test_encoding.rb: fix test
|
375
|
+
|
376
|
+
Fri Mar 9 06:29:22 2012 Aaron Patterson <aaron@tenderlovemaking.com>
|
377
|
+
|
378
|
+
* ext/psych/lib/psych.rb (load, parse): stop parsing or loading after
|
379
|
+
the first document has been parsed.
|
380
|
+
|
381
|
+
* test/psych/test_stream.rb: pertinent tests.
|
382
|
+
|
383
|
+
Fri Mar 9 06:17:05 2012 Aaron Patterson <aaron@tenderlovemaking.com>
|
384
|
+
|
385
|
+
* ext/psych/lib/psych.rb (parse_stream, load_stream): if a block is
|
386
|
+
given, documents will be yielded to the block as they are parsed.
|
387
|
+
[ruby-core:42404] [Bug #5978]
|
388
|
+
|
389
|
+
* ext/psych/lib/psych/handlers/document_stream.rb: add a handler that
|
390
|
+
yields documents as they are parsed
|
391
|
+
|
392
|
+
* test/psych/test_stream.rb: corresponding tests.
|
393
|
+
|
394
|
+
Tue Mar 6 02:31:20 2012 Aaron Patterson <aaron@tenderlovemaking.com>
|
395
|
+
|
396
|
+
* ext/psych/lib/psych/core_ext.rb: only extend Kernel if IRB is loaded
|
397
|
+
in order to stop method pollution.
|
398
|
+
|
399
|
+
Tue Feb 28 10:28:51 2012 Aaron Patterson <aaron@tenderlovemaking.com>
|
400
|
+
|
401
|
+
* ext/psych/lib/psych.rb: default open YAML files with utf8 external
|
402
|
+
encoding. [ruby-core:42967]
|
403
|
+
* test/psych/test_tainted.rb: ditto
|
404
|
+
|
405
|
+
Fri Feb 24 13:54:33 2012 Aaron Patterson <aaron@tenderlovemaking.com>
|
406
|
+
|
407
|
+
* ext/psych/parser.c: prevent a memory leak by protecting calls to
|
408
|
+
handler callbacks.
|
409
|
+
* test/psych/test_parser.rb: test to demonstrate leak.
|
410
|
+
|
411
|
+
Fri Feb 24 08:08:38 2012 Aaron Patterson <aaron@tenderlovemaking.com>
|
412
|
+
|
413
|
+
* ext/psych/parser.c: set parser encoding based on the YAML input
|
414
|
+
rather than user configuration.
|
415
|
+
* test/psych/test_encoding.rb: corresponding tests.
|
416
|
+
* test/psych/test_parser.rb: ditto
|
417
|
+
* test/psych/test_tainted.rb: ditto
|
418
|
+
|
419
|
+
Fri Feb 10 03:41:31 2012 Aaron Patterson <aaron@tenderlovemaking.com>
|
420
|
+
|
421
|
+
* ext/psych/parser.c: removed external encoding setter, allow parser
|
422
|
+
to be reused.
|
423
|
+
* ext/psych/lib/psych/parser.rb: added external encoding setter.
|
424
|
+
* test/psych/test_parser.rb: test parser reuse
|
425
|
+
|
426
|
+
Wed Jan 18 12:49:15 2012 Aaron Patterson <aaron@tenderlovemaking.com>
|
427
|
+
|
428
|
+
* ext/psych/lib/psych/visitors/to_ruby.rb: Added support for loading
|
429
|
+
subclasses of String with ivars
|
430
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: Added support for dumping
|
431
|
+
subclasses of String with ivars
|
432
|
+
* test/psych/test_string.rb: corresponding tests
|
433
|
+
|
434
|
+
Sun Dec 18 12:42:48 2011 Aaron Patterson <aaron@tenderlovemaking.com>
|
435
|
+
|
436
|
+
* ext/psych/lib/psych/visitors/to_ruby.rb: BigDecimals can be restored
|
437
|
+
from YAML.
|
438
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: BigDecimals can be dumped
|
439
|
+
to YAML.
|
440
|
+
* test/psych/test_numeric.rb: tests for BigDecimal serialization
|
441
|
+
|
442
|
+
Sun Dec 18 12:03:13 2011 Aaron Patterson <aaron@tenderlovemaking.com>
|
443
|
+
|
444
|
+
* ext/psych/lib/psych/scalar_scanner.rb: Strings that look like dates
|
445
|
+
should be treated as strings and not dates.
|
446
|
+
|
447
|
+
* test/psych/test_scalar_scanner.rb: corresponding tests.
|
448
|
+
|
449
|
+
Wed Dec 7 08:04:31 2011 Aaron Patterson <aaron@tenderlovemaking.com>
|
450
|
+
|
451
|
+
* ext/psych/lib/psych.rb (module Psych): parse and load methods take
|
452
|
+
an optional file name that is used when raising Psych::SyntaxError
|
453
|
+
exceptions
|
454
|
+
* ext/psych/lib/psych/syntax_error.rb (module Psych): allow nil file
|
455
|
+
names and handle nil file names in the exception message
|
456
|
+
* test/psych/test_exception.rb (module Psych): Tests for changes.
|
457
|
+
|
458
|
+
Wed Nov 30 09:09:37 2011 Aaron Patterson <aaron@tenderlovemaking.com>
|
459
|
+
|
460
|
+
* ext/psych/parser.c (parse): parse method can take an option file
|
461
|
+
name for use in exception messages.
|
462
|
+
* test/psych/test_parser.rb: corresponding tests.
|
463
|
+
|
464
|
+
Tue Nov 22 04:46:22 2011 Aaron Patterson <aaron@tenderlovemaking.com>
|
465
|
+
|
466
|
+
* ext/psych/lib/psych.rb: remove autoload from psych
|
467
|
+
* ext/psych/lib/psych/json.rb: ditto
|
468
|
+
|
469
|
+
Thu Nov 17 10:36:46 2011 Aaron Patterson <aaron@tenderlovemaking.com>
|
470
|
+
|
471
|
+
* ext/psych/lib/psych.rb (load_file): make sure opened yaml files are
|
472
|
+
also closed. [ruby-core:41088]
|
473
|
+
|
474
|
+
Wed Nov 9 04:52:16 2011 Aaron Patterson <aaron@tenderlovemaking.com>
|
475
|
+
|
476
|
+
* ext/psych/lib/psych/tree_builder.rb: dump complex numbers,
|
477
|
+
rationals, etc with reference ids.
|
478
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: ditto
|
479
|
+
* ext/psych/lib/psych/visitors/to_ruby.rb: loading complex numbers,
|
480
|
+
rationals, etc with reference ids.
|
481
|
+
* test/psych/test_object_references.rb: corresponding tests
|
482
|
+
|
483
|
+
Mon Nov 7 20:31:52 2011 Aaron Patterson <aaron@tenderlovemaking.com>
|
484
|
+
|
485
|
+
* ext/psych/lib/psych/scalar_scanner.rb: make sure strings that look
|
486
|
+
like base 60 numbers are serialized as quoted strings.
|
487
|
+
* test/psych/test_string.rb: test for change.
|
488
|
+
|
489
|
+
Wed Oct 5 02:50:27 2011 Aaron Patterson <aaron@tenderlovemaking.com>
|
490
|
+
|
491
|
+
* ext/psych/lib/psych/syntax_error.rb: Add file, line, offset, and
|
492
|
+
message attributes during parse failure.
|
493
|
+
* ext/psych/parser.c: Update parser to raise exception with correct
|
494
|
+
values.
|
495
|
+
* test/psych/test_exception.rb: corresponding tests.
|
496
|
+
|
497
|
+
Wed Oct 5 01:52:16 2011 Aaron Patterson <aaron@tenderlovemaking.com>
|
498
|
+
|
499
|
+
* ext/psych/parser.c (parse): Use context_mark for indicating error
|
500
|
+
line and column.
|
501
|
+
|
502
|
+
Tue Oct 4 06:29:55 2011 Aaron Patterson <aaron@tenderlovemaking.com>
|
503
|
+
|
504
|
+
* ext/psych/lib/psych.rb: calling `yaml` rather than `to_yaml`.
|
505
|
+
* ext/psych/lib/psych/nodes/node.rb: Rename `to_yaml` to just `yaml`
|
506
|
+
in order to avoid YAML::ENGINE switching from replacing this method.
|
507
|
+
* test/psych/helper.rb: fix tests for method name change.
|
508
|
+
* test/psych/test_document.rb: ditto
|
509
|
+
* test/psych/visitors/test_emitter.rb: ditto
|
510
|
+
|
511
|
+
Tue Oct 4 06:20:19 2011 Aaron Patterson <aaron@tenderlovemaking.com>
|
512
|
+
|
513
|
+
* ext/psych/lib/psych/scalar_scanner.rb: Match values against the
|
514
|
+
floating point spec defined in YAML to avoid erronious parses.
|
515
|
+
* test/psych/test_numeric.rb: corresponding test.
|
516
|
+
|
517
|
+
Tue Oct 4 05:59:24 2011 Aaron Patterson <aaron@tenderlovemaking.com>
|
518
|
+
|
519
|
+
* ext/psych/lib/psych/visitors/to_ruby.rb: ToRuby visitor can be
|
520
|
+
constructed with a ScalarScanner.
|
521
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: ScalarScanner can be
|
522
|
+
passed to the YAMLTree visitor.
|
523
|
+
|
524
|
+
Tue Oct 4 05:47:23 2011 Aaron Patterson <aaron@tenderlovemaking.com>
|
525
|
+
|
526
|
+
* ext/psych/lib/psych/visitors/to_ruby.rb: Define Regexp::NOENCODING
|
527
|
+
for 1.9.2 backwards compatibility.
|
528
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: Fix Date string
|
529
|
+
generation for 1.9.2 backwards compatibility.
|
530
|
+
|
531
|
+
Fri Sep 2 04:05:25 2011 Aaron Patterson <aaron@tenderlovemaking.com>
|
532
|
+
|
533
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: emit strings tagged as
|
534
|
+
ascii-8bit as binary in YAML.
|
535
|
+
* test/psych/test_string.rb: corresponding test.
|
536
|
+
|
537
|
+
Thu Aug 25 06:11:35 2011 Aaron Patterson <aaron@tenderlovemaking.com>
|
538
|
+
|
539
|
+
* ext/psych/lib/psych/nodes/node.rb: default `to_yaml` encoding to be
|
540
|
+
UTF-8.
|
541
|
+
* test/psych/test_encoding.rb: test yaml dump encoding.
|
542
|
+
|
543
|
+
Wed Jun 22 03:20:52 2011 Aaron Patterson <aaron@tenderlovemaking.com>
|
544
|
+
|
545
|
+
* ext/psych/lib/psych/visitors/to_ruby.rb: Fix cyclic references of
|
546
|
+
objects. Thanks to CvX for reporting the bug and a test case.
|
547
|
+
* test/psych/test_object.rb: test for cyclic object references.
|
548
|
+
|
549
|
+
Thu Jun 9 10:57:03 2011 Aaron Patterson <aaron@tenderlovemaking.com>
|
550
|
+
|
551
|
+
* ext/psych/lib/psych/visitors/to_ruby.rb: Hash subclasses can be read
|
552
|
+
from YAML files.
|
553
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: Hash subclasses can be
|
554
|
+
dumped to YAML files.
|
555
|
+
* test/psych/test_hash.rb: corresponding test.
|
556
|
+
|
557
|
+
Thu Jun 9 09:18:51 2011 Aaron Patterson <aaron@tenderlovemaking.com>
|
558
|
+
|
559
|
+
* ext/psych/lib/psych/visitors/to_ruby.rb: Ruby modules can be loaded
|
560
|
+
from YAML files.
|
561
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: Ruby modules can be
|
562
|
+
dumped to YAML files.
|
563
|
+
* test/psych/test_class.rb: corresponding test.
|
564
|
+
|
565
|
+
Thu Jun 9 09:05:04 2011 Aaron Patterson <aaron@tenderlovemaking.com>
|
566
|
+
|
567
|
+
* ext/psych/lib/psych/visitors/to_ruby.rb: Ruby classes can be loaded
|
568
|
+
from YAML files.
|
569
|
+
* ext/psych/lib/psych/visitors/yaml_tree.rb: Ruby classes can be
|
570
|
+
dumped to YAML files.
|
571
|
+
* test/psych/test_class.rb: corresponding test.
|
572
|
+
|
573
|
+
Mon Jun 6 09:39:43 2011 Aaron Patterson <aaron@tenderlovemaking.com>
|
574
|
+
|
575
|
+
* ext/psych/parser.c (parse): release event objects to plug memory
|
576
|
+
leak. Thanks Mark J. Titorenko!
|
data/Gemfile
ADDED