syck 1.3.0 → 1.4.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 3695b0bc7d3ca212a189b5884abf4b9a3ed97ac6
4
- data.tar.gz: d39d278600e6e49a7bf016d3bf9195eb0eda8bc2
2
+ SHA256:
3
+ metadata.gz: 47ef2a71c697cd9ff70d8be2b803eff6bb45f11b0549918995dcf7f4c4343fec
4
+ data.tar.gz: 0a27e549a48d74dbed250fd4bbd9438ac7374f274aa5909b773586b1818c74ba
5
5
  SHA512:
6
- metadata.gz: 3e9e72a1c8efe882c4d6275f4e06bd3219741eeeb46b22032477335b9f2764d5486d4789501131f6f482cb557696e1e12e6380d2bd8bd04f0f0c0ca4dd68d2b2
7
- data.tar.gz: d9c1e7c5528fbb3b190f5fd327a94cfdabc4d47af1631b1e56720cb217d7f92c3dabe8521e5916a72b59e68903369016f127d0563d6f3ef339ded9e091953786
6
+ metadata.gz: 1b0a63a2aa8831aa2df766ca38023bed8bc0382959c17f8622148b1960f3b9e9dc7964ba3a6c10ac8dc232ebe97b40c6fd305fabc7a1c0bb440adbf24feac5fb
7
+ data.tar.gz: 519bf7f1df35a2c8b81ac5293f5192559f1f9ecd7c87d625adcbeb8d375acaa8d9012e619fec95566ac59f0610d23b4e86e2e357802d6e322b743c0f7b5185a9
@@ -1,3 +1,7 @@
1
+ === 1.4.0 / 2019-01-04
2
+
3
+ * Support to build with Ruby 2.6.
4
+
1
5
  === 1.3.0 / 2017-05-02
2
6
 
3
7
  Compatibility Changes:
@@ -0,0 +1,26 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ syck (1.3.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ power_assert (1.1.3)
10
+ rake (12.3.2)
11
+ rake-compiler (1.0.7)
12
+ rake
13
+ test-unit (3.2.9)
14
+ power_assert
15
+
16
+ PLATFORMS
17
+ ruby
18
+
19
+ DEPENDENCIES
20
+ bundler
21
+ rake-compiler
22
+ syck!
23
+ test-unit
24
+
25
+ BUNDLED WITH
26
+ 1.17.2
@@ -17,7 +17,7 @@
17
17
  #include <stdio.h>
18
18
  #include <stdlib.h>
19
19
  #include <ctype.h>
20
- #include "ruby/st.h"
20
+ #include "ruby/ruby.h"
21
21
 
22
22
  #if defined(__cplusplus)
23
23
  extern "C" {
@@ -6,7 +6,7 @@ module Syck
6
6
  #
7
7
  # Constants
8
8
  #
9
- VERSION = '1.0.5'
9
+ VERSION = '1.4.0'
10
10
  SUPPORTED_YAML_VERSIONS = ['1.0']
11
11
 
12
12
  #
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: syck
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hiroshi SHIBATA
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2017-05-02 00:00:00.000000000 Z
13
+ date: 2019-01-04 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: bundler
@@ -70,6 +70,7 @@ extra_rdoc_files:
70
70
  files:
71
71
  - CHANGELOG.rdoc
72
72
  - Gemfile
73
+ - Gemfile.lock
73
74
  - README.rdoc
74
75
  - Rakefile
75
76
  - ext/syck/bytecode.c
@@ -139,24 +140,23 @@ required_rubygems_version: !ruby/object:Gem::Requirement
139
140
  - !ruby/object:Gem::Version
140
141
  version: 0.9.5
141
142
  requirements: []
142
- rubyforge_project:
143
- rubygems_version: 2.6.11
143
+ rubygems_version: 3.0.1
144
144
  signing_key:
145
145
  specification_version: 4
146
146
  summary: A gemified version of Syck from Ruby's stdlib
147
147
  test_files:
148
- - test/helper.rb
149
- - test/test_array.rb
150
- - test/test_boolean.rb
151
- - test/test_class.rb
148
+ - test/test_omap.rb
149
+ - test/test_symbol.rb
152
150
  - test/test_exception.rb
151
+ - test/helper.rb
152
+ - test/test_yaml.rb
153
+ - test/test_yaml_properties.rb
153
154
  - test/test_hash.rb
154
- - test/test_null.rb
155
- - test/test_omap.rb
156
155
  - test/test_set.rb
157
- - test/test_string.rb
156
+ - test/test_null.rb
158
157
  - test/test_struct.rb
159
- - test/test_symbol.rb
158
+ - test/test_string.rb
159
+ - test/test_boolean.rb
160
+ - test/test_array.rb
161
+ - test/test_class.rb
160
162
  - test/test_time.rb
161
- - test/test_yaml.rb
162
- - test/test_yaml_properties.rb