psych 5.2.2 → 5.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +17 -10
- data/ext/psych/psych.c +0 -1
- data/ext/psych/psych_emitter.c +0 -1
- data/ext/psych/psych_parser.c +0 -1
- data/ext/psych/psych_to_ruby.c +0 -1
- data/ext/psych/psych_yaml_tree.c +0 -1
- data/lib/psych/versions.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e8c48b70d7c4ff53b1d536997a6e63173cb7e123e3f6e70f82c5de8596d93c4c
|
4
|
+
data.tar.gz: c49d610314f1628a1e84267010dcfac5a076276eac2cad8dbbba9079ede9e08f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d3d710995bfd6eb317994dd13024e5e3fd2967dbd379a1d510f86f7517177d2cc5e292a7d3b14c999071cc35ce625715ee3549fab90ce966567ba6e91f2475c
|
7
|
+
data.tar.gz: f1570e565d5dd8c9e5984155dfbc1418a594aaa871fab7b7fabe62f05bc0a3e72ab141dd9f39c09689f8f4949a5c6e58fa9b1ca99c26db3552b0c9866a6032ad
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Psych
|
2
2
|
|
3
|
-
*
|
4
|
-
*
|
3
|
+
* https://github.com/ruby/psych
|
4
|
+
* https://docs.ruby-lang.org/en/master/Psych.html
|
5
5
|
|
6
6
|
## Description
|
7
7
|
|
@@ -22,31 +22,38 @@ Psych.dump("foo") # => "--- foo\n...\n"
|
|
22
22
|
|
23
23
|
## Dependencies
|
24
24
|
|
25
|
-
*
|
25
|
+
* libyaml
|
26
26
|
|
27
27
|
## Installation
|
28
28
|
|
29
29
|
Psych has been included with MRI since 1.9.2, and is the default YAML parser
|
30
30
|
in 1.9.3.
|
31
31
|
|
32
|
-
If you want a newer gem release of Psych, you can use
|
33
|
-
|
34
|
-
gem install psych
|
32
|
+
If you want a newer gem release of Psych, you can use RubyGems:
|
35
33
|
|
34
|
+
```bash
|
35
|
+
gem install psych
|
36
|
+
```
|
36
37
|
|
37
38
|
Psych supported the static build with specific version of libyaml sources. You can build psych with libyaml-0.2.5 like this.
|
38
39
|
|
39
|
-
|
40
|
+
```bash
|
41
|
+
gem install psych -- --with-libyaml-source-dir=/path/to/libyaml-0.2.5
|
42
|
+
```
|
40
43
|
|
41
44
|
In order to use the gem release in your app, and not the stdlib version,
|
42
45
|
you'll need the following:
|
43
46
|
|
44
|
-
|
45
|
-
|
47
|
+
```ruby
|
48
|
+
gem 'psych'
|
49
|
+
require 'psych'
|
50
|
+
```
|
46
51
|
|
47
52
|
Or if you use Bundler add this to your `Gemfile`:
|
48
53
|
|
49
|
-
|
54
|
+
```ruby
|
55
|
+
gem 'psych'
|
56
|
+
```
|
50
57
|
|
51
58
|
JRuby ships with a pure Java implementation of Psych.
|
52
59
|
|
data/ext/psych/psych.c
CHANGED
data/ext/psych/psych_emitter.c
CHANGED
data/ext/psych/psych_parser.c
CHANGED
data/ext/psych/psych_to_ruby.c
CHANGED
data/ext/psych/psych_yaml_tree.c
CHANGED
data/lib/psych/versions.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: psych
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.2.
|
4
|
+
version: 5.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aaron Patterson
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2025-01-17 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: stringio
|