psych-shopifork 2.0.0

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