psych 2.0.7 → 2.0.8

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 163fb9a33cd5288edcf15b1fab6557d2a850e317
4
- data.tar.gz: 1b5b162695a85cd2eb4e1908628fb8de47a1c4a2
3
+ metadata.gz: 9f4c0db7eb15a38300a2e0b67f1a7ed0684f1f04
4
+ data.tar.gz: f93f68a1a66f579da0f09def436544d5becdad70
5
5
  SHA512:
6
- metadata.gz: 978a354b0030d9454d1f24e7c4fa2a5224960777a5fa488cf8197d01d5362ce45aa48ef7c734a50c1d0bb4beb3b9740aeaa85dd3a248d9c6b2078f9674f90013
7
- data.tar.gz: 4d246b34357ab91db5fad9333b08d842cf2f18a9e893efdf446b3db1eaa24d4dd78a7d4f0762b82bada7fcbc971667b357e1d449bb7b140cb1aaceaddf94145e
6
+ metadata.gz: a1fc55b8c18c01b5cebec82f87e9e767ae2aaf9332d72c876f8b848f489001f307c4020c7730d32afd38c63f0a444da4371c11d3bfd8e3836a78482e1e531c0c
7
+ data.tar.gz: 3e1e6663119da44e991eeba5391945d0443feaeaf9c72a43053d6cda0887bbf735cd3a040eb8da48634d9b41a01ab917b09aa29156c59ccb01f3ef8b026e0f1b
@@ -42,7 +42,9 @@ static const rb_data_type_t psych_emitter_type = {
42
42
  "Psych/emitter",
43
43
  {0, dealloc, 0,},
44
44
  0, 0,
45
+ #ifdef RUBY_TYPED_FREE_IMMEDIATELY
45
46
  RUBY_TYPED_FREE_IMMEDIATELY,
47
+ #endif
46
48
  };
47
49
 
48
50
  static VALUE allocate(VALUE klass)
@@ -62,7 +62,9 @@ static const rb_data_type_t psych_parser_type = {
62
62
  "Psych/parser",
63
63
  {0, dealloc, 0,},
64
64
  0, 0,
65
+ #ifdef RUBY_TYPED_FREE_IMMEDIATELY
65
66
  RUBY_TYPED_FREE_IMMEDIATELY,
67
+ #endif
66
68
  };
67
69
 
68
70
  static VALUE allocate(VALUE klass)
@@ -217,7 +217,7 @@ require 'psych/class_loader'
217
217
 
218
218
  module Psych
219
219
  # The version is Psych you're using
220
- VERSION = '2.0.7'
220
+ VERSION = '2.0.8'
221
221
 
222
222
  # The version of libyaml Psych is using
223
223
  LIBYAML_VERSION = Psych.libyaml_version.join '.'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: psych
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.7
4
+ version: 2.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron Patterson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-01 00:00:00.000000000 Z
11
+ date: 2014-12-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rdoc
@@ -203,7 +203,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
203
203
  version: '0'
204
204
  requirements: []
205
205
  rubyforge_project:
206
- rubygems_version: 2.4.4
206
+ rubygems_version: 2.4.5
207
207
  signing_key:
208
208
  specification_version: 4
209
209
  summary: Psych is a YAML parser and emitter