nestedtext 0.3.0 → 0.4.0

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: 5fe5a1d88543266b69827809288cd9f23841fa664fa3568aad6e452804f14a40
4
- data.tar.gz: 313cece746c092cc5a5468f6e95fe7da2d151762575bf9e3356d1c30914f8efb
3
+ metadata.gz: 4ead461a4a23e4c1c481c2e7c4459055031c7455ebdb5706ebb16f16a727f3ae
4
+ data.tar.gz: a432bba7b1e8051f796b4420e7312e863c4d559724c8aa4b997e7ef6b70e1f68
5
5
  SHA512:
6
- metadata.gz: ce3a5a3ec78d7eb23b6e33f1c4299dadd064db01afc3827e3f17d7012186ed365efda05acbc748a4133816aeed89922c5a2d0724644e6134bbc30a3420db30ae
7
- data.tar.gz: d1d96f587888f0befbf2cd7963a5e8ab51ed2a2f9f6e40187426d3dfe7b3a72c5b9710ac0fbf2ab9350a31f5953c310816ce8ede8e2832cd0618daa7dcdfa941
6
+ metadata.gz: d63fab4ee04eb32e5bf1a74a4888ccb42f8bb998167a9ee51ae9e2a4832290489b0295de23273601f2ed4d90e75d58dd3c59253ecdec585f8c0789441d52d692
7
+ data.tar.gz: d24c235aaf77b2c776856647783395a5ab8e9a97ef3d4e2e08b1bca37df4fe0d92e87a60a5c0b595660cee011499397e341b13f2b2dee445f1e54e09cd19f6fd
data/.gitignore CHANGED
@@ -1,12 +1,14 @@
1
1
  # Contrary to ruby apps, ruby gems should not check in Gemfile.lock.
2
2
  # Reference: https://yehudakatz.com/2010/12/16/clarifying-the-roles-of-the-gemspec-and-gemfile/
3
- Gemfile.lock
3
+ /Gemfile.lock
4
4
 
5
5
  # Bundle local config
6
- .bundle/
6
+ /.bundle/
7
7
 
8
8
  # Package gem from $(rake install)
9
- pkg/
9
+ /pkg/
10
+ # When built from $(gem build *.gemspec)
11
+ /*.gem
10
12
 
11
13
  # minitest
12
14
  /test/html_reports/
data/CHANGELOG.md CHANGED
@@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.4.0] - 2022-01-24
10
+ - Iteration on CD GitHub Actins workflow.
11
+
9
12
  ## [0.3.0] - 2022-01-24
10
13
  - Iteration on CD GitHub Actins workflow.
11
14
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module NestedText
4
- VERSION = "0.3.0"
4
+ VERSION = "0.4.0"
5
5
  end
data/nestedtext.gemspec CHANGED
@@ -18,6 +18,12 @@ Gem::Specification.new do |spec|
18
18
  spec.metadata["source_code_uri"] = "https://github.com/erikw/nestedtext-ruby/"
19
19
  spec.metadata["changelog_uri"] = "https://github.com/erikw/nestedtext-ruby/blob/main/CHANGELOG.md"
20
20
 
21
+ # For push to GitHub packages to work.
22
+ # Reference: https://github.community/t/unable-to-push-rubygem-to-package-registry-the-expected-resource-was-not-found/14596/7
23
+ spec.metadata = {
24
+ "github_repo" => "git@github.com:erikw/nestedtext-ruby.git"
25
+ }
26
+
21
27
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
22
28
  `git ls-files -z`.split("\x0").reject do |f|
23
29
  f.match(%r{\A(?:test/|script/|\.github/|\.gitmodules|Rakefile|TODO\.txt|\.codeclimate\.yml|\.vimlocal|\.simplecov)})
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: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Erik Westrup
@@ -49,9 +49,7 @@ homepage: https://github.com/erikw/nestedtext-ruby/
49
49
  licenses:
50
50
  - MIT
51
51
  metadata:
52
- homepage_uri: https://github.com/erikw/nestedtext-ruby/
53
- source_code_uri: https://github.com/erikw/nestedtext-ruby/
54
- changelog_uri: https://github.com/erikw/nestedtext-ruby/blob/main/CHANGELOG.md
52
+ github_repo: git@github.com:erikw/nestedtext-ruby.git
55
53
  post_install_message:
56
54
  rdoc_options: []
57
55
  require_paths: