nestedtext 4.3.0 → 4.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +9 -0
- data/CHANGELOG.md +19 -2
- data/README.md +6 -1
- data/lib/nestedtext/encode.rb +0 -1
- data/lib/nestedtext/version.rb +1 -1
- data/nestedtext.gemspec +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7af3d17e237978f9701fd101ac852ede7a3e698dd4b49d24405527d37226ecd9
|
4
|
+
data.tar.gz: e4547a6a03901f5a13361bd9279a89783d3d0397087420653799642bd4202345
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e9b2360b49e8fb6aa74be17fcf0a414399d78a0f56b53692dceb7cdf9ac1ca800d092188c69037948577f8e7c8b9554895eb25a4cf6ae7a55d2e2356eb03af99
|
7
|
+
data.tar.gz: edbfa6e513a1f1c9c605e1d06d0292d2c7b1a6ab7c9e1aa70ad4a501a6b109f826cd7621e63db68e971fc33c6c8c10d7513a4ed506c9000bf35e2f5f546ea97d
|
data/.yardopts
ADDED
data/CHANGELOG.md
CHANGED
@@ -5,9 +5,26 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
|
-
|
8
|
+
|
9
|
+
## [4.4.2] - 2022-02-17
|
10
|
+
### Fixed
|
11
|
+
- rubydoc.info: try includ all of lib/**/*.rb
|
12
|
+
|
13
|
+
## [4.4.1] - 2022-02-17
|
14
|
+
### Fixed
|
15
|
+
- rubydoc.info: try fix missing class methods.
|
16
|
+
|
17
|
+
## [4.4.0] - 2022-02-17
|
18
|
+
### Fixed
|
19
|
+
- rubydoc.info: not re-generating for patch versions?
|
20
|
+
|
21
|
+
## [4.3.1] - 2022-02-17
|
22
|
+
### Fixed
|
23
|
+
- rubydoc.info: Include .yardopts in gem
|
24
|
+
|
25
|
+
## [4.3.0] - 2022-02-17
|
9
26
|
### Fixed
|
10
|
-
-
|
27
|
+
- rubydoc.info: try fix missing class methods.
|
11
28
|
|
12
29
|
## [4.2.2] - 2022-02-12
|
13
30
|
### Fixed
|
data/README.md
CHANGED
@@ -383,7 +383,12 @@ or combined with gem-release:
|
|
383
383
|
```console
|
384
384
|
$ vi CHANGELOG.md
|
385
385
|
$ git commit -am "Update CHANGELOG.md" && git push
|
386
|
-
$ gem bump --version minor --tag --
|
386
|
+
$ gem bump --version minor --tag --push --sign
|
387
|
+
```
|
388
|
+
|
389
|
+
then watch progress with [gh](https://cli.github.com/)
|
390
|
+
```console
|
391
|
+
$ gh run watch
|
387
392
|
```
|
388
393
|
|
389
394
|
|
data/lib/nestedtext/encode.rb
CHANGED
@@ -37,7 +37,6 @@ module NestedText
|
|
37
37
|
# @return (see dump)
|
38
38
|
# @raise (see dump)
|
39
39
|
# @raise [IOError] on issues opening the `filename` for writing in text mode.
|
40
|
-
#
|
41
40
|
def self.dump_file(obj, filename, **kwargs)
|
42
41
|
raise Errors::DumpFileBadPathError, filename unless filename.is_a? String
|
43
42
|
|
data/lib/nestedtext/version.rb
CHANGED
data/nestedtext.gemspec
CHANGED
@@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
|
|
27
27
|
|
28
28
|
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
29
29
|
`git ls-files -z`.split("\x0").select do |f|
|
30
|
-
f.match(%r{\A(?:lib/|CHANGELOG.md|CONTRIBUTING.md|LICENSE.txt|README.md|SECURITY.md|nestedtext.gemspec)})
|
30
|
+
f.match(%r{\A(?:lib/|CHANGELOG.md|CONTRIBUTING.md|LICENSE.txt|README.md|SECURITY.md|nestedtext.gemspec|.yardopts)})
|
31
31
|
end
|
32
32
|
end
|
33
33
|
spec.require_paths = ['lib']
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nestedtext
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Erik Westrup
|
@@ -63,6 +63,7 @@ executables: []
|
|
63
63
|
extensions: []
|
64
64
|
extra_rdoc_files: []
|
65
65
|
files:
|
66
|
+
- ".yardopts"
|
66
67
|
- CHANGELOG.md
|
67
68
|
- CONTRIBUTING.md
|
68
69
|
- LICENSE.txt
|