yaml 0.1.1 → 0.2.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 +4 -4
- data/.github/workflows/test.yml +2 -4
- data/README.md +4 -4
- data/Rakefile +1 -1
- data/lib/yaml/store.rb +1 -1
- data/yaml.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6e6a2f22aae247b3218ae649b1deaab313db312f3f97857f79122b2bd9c782d5
|
4
|
+
data.tar.gz: f1fd242c3e4699f88310faa8b41434d7739e820452c986427fcc6fbf31dec9a5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea7c6c85d8bb976b949f0a96db1c9b3102132ad50333d7df9678eb77e9f78577ec549d9e91ea15a494dca0d2dbfa71f5e4dd24ad75dc15df4d11b34c320c7e00
|
7
|
+
data.tar.gz: '05298e1632fb1a2cb3b76d31b17fa1af61710f25b28a07334fe97226b50c90a58ea7b3defad75f01bbda0fd97400bf5aab286d9268ec6ec3e72735ea44048ae7'
|
data/.github/workflows/test.yml
CHANGED
@@ -11,14 +11,12 @@ jobs:
|
|
11
11
|
os: [ ubuntu-latest, macos-latest ]
|
12
12
|
runs-on: ${{ matrix.os }}
|
13
13
|
steps:
|
14
|
-
- uses: actions/checkout@
|
14
|
+
- uses: actions/checkout@v2
|
15
15
|
- name: Set up Ruby
|
16
16
|
uses: ruby/setup-ruby@v1
|
17
17
|
with:
|
18
18
|
ruby-version: ${{ matrix.ruby }}
|
19
19
|
- name: Install dependencies
|
20
|
-
run:
|
21
|
-
gem install bundler --no-document
|
22
|
-
bundle install
|
20
|
+
run: bundle install
|
23
21
|
- name: Run test
|
24
22
|
run: rake test
|
data/README.md
CHANGED
@@ -2,9 +2,9 @@
|
|
2
2
|
|
3
3
|
This module provides a Ruby interface for data serialization in YAML format.
|
4
4
|
|
5
|
-
The
|
6
|
-
|
7
|
-
the
|
5
|
+
The `YAML` module is an alias for
|
6
|
+
[Psych](https://ruby-doc.org/stdlib/libdoc/psych/rdoc/index.html),
|
7
|
+
the `YAML` engine for Ruby.
|
8
8
|
|
9
9
|
## Installation
|
10
10
|
|
@@ -38,7 +38,7 @@ YAML.dump("foo") # => "--- foo\n...\n"
|
|
38
38
|
```
|
39
39
|
|
40
40
|
For detailed documentation, see
|
41
|
-
|
41
|
+
[Psych](https://ruby-doc.org/stdlib/libdoc/psych/rdoc/index.html).
|
42
42
|
|
43
43
|
## Security
|
44
44
|
|
data/Rakefile
CHANGED
@@ -9,7 +9,7 @@ end
|
|
9
9
|
|
10
10
|
task :sync_tool do
|
11
11
|
require 'fileutils'
|
12
|
-
FileUtils.cp "../ruby/tool/lib/
|
12
|
+
FileUtils.cp "../ruby/tool/lib/core_assertions.rb", "./test/lib"
|
13
13
|
FileUtils.cp "../ruby/tool/lib/envutil.rb", "./test/lib"
|
14
14
|
FileUtils.cp "../ruby/tool/lib/find_executable.rb", "./test/lib"
|
15
15
|
end
|
data/lib/yaml/store.rb
CHANGED
data/yaml.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: yaml
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aaron Patterson
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2021-10-14 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: YAML Ain't Markup Language
|
15
15
|
email:
|
@@ -53,7 +53,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
55
|
requirements: []
|
56
|
-
rubygems_version: 3.
|
56
|
+
rubygems_version: 3.3.0.dev
|
57
57
|
signing_key:
|
58
58
|
specification_version: 4
|
59
59
|
summary: YAML Ain't Markup Language
|