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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dd5afa48eaaac01ee16d751cd1cadc991c30caef74e63e97c599ce53efb7b50a
4
- data.tar.gz: 074a8cd224cf2e7698052771cc313cc50bfcf87845f81a26e5a0a3c7f5d85aff
3
+ metadata.gz: 7af3d17e237978f9701fd101ac852ede7a3e698dd4b49d24405527d37226ecd9
4
+ data.tar.gz: e4547a6a03901f5a13361bd9279a89783d3d0397087420653799642bd4202345
5
5
  SHA512:
6
- metadata.gz: 6334df88540082c91b218af86c1b45bd3253e71b21c7a0d9ee89522aca982bf1434455254d69f285b31831b8f3b2f0927b331a6483cdfe913db4ad08cc96963a
7
- data.tar.gz: f321ed027ac06a3f3d8cd0f2b4def9664942e1c22cca4fc8780b142bd0294cb2c22465ece6cd35c2427fefe9989776ed19f546eb63242c83db7c015dcf0a2e11
6
+ metadata.gz: e9b2360b49e8fb6aa74be17fcf0a414399d78a0f56b53692dceb7cdf9ac1ca800d092188c69037948577f8e7c8b9554895eb25a4cf6ae7a55d2e2356eb03af99
7
+ data.tar.gz: edbfa6e513a1f1c9c605e1d06d0292d2c7b1a6ab7c9e1aa70ad4a501a6b109f826cd7621e63db68e971fc33c6c8c10d7513a4ed506c9000bf35e2f5f546ea97d
data/.yardopts ADDED
@@ -0,0 +1,9 @@
1
+ --title "NestedText API Documentation"
2
+ --readme README.md
3
+ --embed-mixin NTEncodeMixin
4
+ --markup markdown
5
+ --markup-provider redcarpet
6
+ -
7
+ CHANGELOG.md
8
+ CONTRIBUTING.md
9
+ LICENSE.txt
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
- ## [4.2.3] - 2022-02-17
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
- - Try fix rubydoc.info missing class methods.
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 --sign --push
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
 
@@ -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
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  module NestedText
4
4
  # The version of this library.
5
- VERSION = '4.3.0'
5
+ VERSION = '4.4.2'
6
6
  end
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.3.0
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