nestedtext 4.3.0 → 4.3.1

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
2
  SHA256:
3
- metadata.gz: dd5afa48eaaac01ee16d751cd1cadc991c30caef74e63e97c599ce53efb7b50a
4
- data.tar.gz: 074a8cd224cf2e7698052771cc313cc50bfcf87845f81a26e5a0a3c7f5d85aff
3
+ metadata.gz: 56513304eda35a4c2f2c4f2c426e2660c9f83a910da5f1375a60ceb0108aa5a3
4
+ data.tar.gz: 5d17dba47a2a6e45f79337c987d94e8c59dc167d27066eb0c73865d0e3812df2
5
5
  SHA512:
6
- metadata.gz: 6334df88540082c91b218af86c1b45bd3253e71b21c7a0d9ee89522aca982bf1434455254d69f285b31831b8f3b2f0927b331a6483cdfe913db4ad08cc96963a
7
- data.tar.gz: f321ed027ac06a3f3d8cd0f2b4def9664942e1c22cca4fc8780b142bd0294cb2c22465ece6cd35c2427fefe9989776ed19f546eb63242c83db7c015dcf0a2e11
6
+ metadata.gz: d4b76b4d832c0a669dbbebb46bc6e7a5ce62ec47b4bfe2440ae40450fbd4370fc8ea438510b8ae990eebe458829d7f1af9812414149f329912f77983ae3ccb71
7
+ data.tar.gz: 3b3f0d7dd473beadbdf85c87ecef2f72c5b1634a9e3b93fbe7d5173a902815594e4f34f02b6ce00d0bc1eab842e8bdb08b852e416c12e1672b21c0ab6684db81
data/.yardopts ADDED
@@ -0,0 +1,18 @@
1
+ --title "NestedText API Documentation"
2
+ --readme README.md
3
+ --embed-mixin NTEncodeMixin
4
+ --exclude /server/templates/
5
+ --exclude /yard/rubygems/
6
+ --markup markdown
7
+ --markup-provider redcarpet
8
+ lib/nestedtext.rb
9
+ lib/nestedtext/core_ext.rb
10
+ lib/nestedtext/decode.rb
11
+ lib/nestedtext/encode_helpers.rb
12
+ lib/nestedtext/encode.rb
13
+ lib/nestedtext/error.rb
14
+ lib/nestedtext/version.rb
15
+ -
16
+ CHANGELOG.md
17
+ CONTRIBUTING.md
18
+ LICENSE.txt
data/CHANGELOG.md CHANGED
@@ -5,7 +5,12 @@ 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.3.1] - 2022-02-17
10
+ ### Fixed
11
+ - Include .yardopts in gem for rubydoc.info
12
+
13
+ ## [4.3.0] - 2022-02-17
9
14
  ### Fixed
10
15
  - Try fix rubydoc.info missing class methods.
11
16
 
data/README.md CHANGED
@@ -383,7 +383,7 @@ 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
387
  ```
388
388
 
389
389
 
@@ -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.3.1'
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.3.1
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