immutable_struct_ex_redactable 1.3.6 → 1.3.7

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: ec748f65bbac609bcc4480d3c342c4279da318eb646dff56e738c9632eecacfa
4
- data.tar.gz: 05eaf402ebe5d7ee31a92c7637d3f124467c3a133b393a885df2fd36481e7147
3
+ metadata.gz: 4a59c2fba915b27a63f53bc4b76ec72254cee873055332da1acd7ecf07553e3c
4
+ data.tar.gz: dece8756c7343304581afc2e38c80f016140d0d673ac41354517fca5c81f87d8
5
5
  SHA512:
6
- metadata.gz: b845c93352515c414639aeafa8dcc94273d9169f479919665e8a910109b148322d13a5abfb200035bfe2f250ed24a263e20597eaeb9eb17f33bab944aeb94ef7
7
- data.tar.gz: 75bcab8a26763b086be39de24e19395110f79dbbc9028812fce10679e0f517e3afd136976a38040dc42dd4f6f13138647db5e316c86d88c6f17fb2137ef856a7
6
+ metadata.gz: 416670240151affce8b1430129ebd1366fae982d61c3e79c7d1dc9a17f3ea36ebf55ea738f8b7d4f025882d50a641e0e97ed18a4a50a0941ea899d72127be06b
7
+ data.tar.gz: 47f407437ae8ee05838f4ddf95583c60b53ed8bd4406247293e5de95941b980d79a2e2147b904afbc0171160f8e2e81e422f989415a9f9f3adbddee7202d6eac
data/.rubocop.yml CHANGED
@@ -1,5 +1,6 @@
1
1
  require:
2
2
  - rubocop-performance
3
+ - rubocop-rake
3
4
  - rubocop-rspec
4
5
 
5
6
  AllCops:
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [1.3.7] - 2024-02-21
2
+
3
+ Changes
4
+
5
+ - Ruby gem updates.
6
+
1
7
  ## [1.3.6] - 2024-01-19
2
8
 
3
9
  Changes
data/Gemfile CHANGED
@@ -5,12 +5,22 @@ source 'https://rubygems.org'
5
5
  # Specify your gem's dependencies in immutable_struct_ex_redactable.gemspec
6
6
  gemspec
7
7
 
8
- gem 'bundler', '~> 2.4', '>= 2.4.21'
9
- gem 'pry-byebug', '~> 3.9'
10
- gem 'rake', '~> 13.0', '>= 13.0.6'
11
- gem 'reek', '~> 6.1', '>= 6.1.1'
12
- gem 'rspec', '>= 3.10'
13
- gem 'rubocop', '~> 1.35'
14
- gem 'rubocop-performance', '~> 1.14', '>= 1.14.3'
15
- gem 'rubocop-rspec', '~> 2.12', '>= 2.12.1'
16
- gem 'simplecov', '~> 0.22.0'
8
+ gem 'bundler', '>= 2.5', '< 3.0'
9
+ gem 'rake', '>= 13.0', '< 14.0'
10
+
11
+ group :development do
12
+ gem 'reek', '>= 6.1', '< 7.0'
13
+ gem 'rubocop', '>= 1.35', '< 2.0'
14
+ gem 'rubocop-performance', '>= 1.14', '< 2.0'
15
+ gem 'rubocop-rake', '>= 0.6', '< 1.0'
16
+ gem 'rubocop-rspec', '>= 2.12', '< 3.0'
17
+ end
18
+
19
+ group :test do
20
+ gem 'rspec', '>= 3.12', '< 4.0'
21
+ gem 'simplecov', '>= 0.22.0', '< 1.0'
22
+ end
23
+
24
+ group :development, :test do
25
+ gem 'pry-byebug', '>= 3.9', '< 4.0'
26
+ end
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- immutable_struct_ex_redactable (1.3.6)
4
+ immutable_struct_ex_redactable (1.3.7)
5
5
  immutable_struct_ex (~> 1.0, >= 1.0.5)
6
6
 
7
7
  GEM
@@ -12,7 +12,7 @@ GEM
12
12
  byebug (11.1.3)
13
13
  coderay (1.1.3)
14
14
  concurrent-ruby (1.2.3)
15
- diff-lcs (1.5.0)
15
+ diff-lcs (1.5.1)
16
16
  docile (1.4.0)
17
17
  dry-configurable (1.1.0)
18
18
  dry-core (~> 1.0, < 2)
@@ -41,12 +41,12 @@ GEM
41
41
  dry-inflector (~> 1.0)
42
42
  dry-logic (~> 1.4)
43
43
  zeitwerk (~> 2.6)
44
- immutable_struct_ex (1.0.8)
44
+ immutable_struct_ex (1.0.10)
45
45
  json (2.7.1)
46
46
  language_server-protocol (3.17.0.3)
47
47
  method_source (1.0.0)
48
48
  parallel (1.24.0)
49
- parser (3.2.2.4)
49
+ parser (3.3.0.5)
50
50
  ast (~> 2.4.1)
51
51
  racc
52
52
  pry (0.14.2)
@@ -58,31 +58,31 @@ GEM
58
58
  racc (1.7.3)
59
59
  rainbow (3.1.1)
60
60
  rake (13.1.0)
61
- reek (6.2.0)
61
+ reek (6.3.0)
62
62
  dry-schema (~> 1.13.0)
63
- parser (~> 3.2.0)
63
+ parser (~> 3.3.0)
64
64
  rainbow (>= 2.0, < 4.0)
65
65
  rexml (~> 3.1)
66
66
  regexp_parser (2.9.0)
67
67
  rexml (3.2.6)
68
- rspec (3.12.0)
69
- rspec-core (~> 3.12.0)
70
- rspec-expectations (~> 3.12.0)
71
- rspec-mocks (~> 3.12.0)
72
- rspec-core (3.12.2)
73
- rspec-support (~> 3.12.0)
74
- rspec-expectations (3.12.3)
68
+ rspec (3.13.0)
69
+ rspec-core (~> 3.13.0)
70
+ rspec-expectations (~> 3.13.0)
71
+ rspec-mocks (~> 3.13.0)
72
+ rspec-core (3.13.0)
73
+ rspec-support (~> 3.13.0)
74
+ rspec-expectations (3.13.0)
75
75
  diff-lcs (>= 1.2.0, < 2.0)
76
- rspec-support (~> 3.12.0)
77
- rspec-mocks (3.12.6)
76
+ rspec-support (~> 3.13.0)
77
+ rspec-mocks (3.13.0)
78
78
  diff-lcs (>= 1.2.0, < 2.0)
79
- rspec-support (~> 3.12.0)
80
- rspec-support (3.12.1)
81
- rubocop (1.59.0)
79
+ rspec-support (~> 3.13.0)
80
+ rspec-support (3.13.0)
81
+ rubocop (1.60.2)
82
82
  json (~> 2.3)
83
83
  language_server-protocol (>= 3.17.0)
84
84
  parallel (~> 1.10)
85
- parser (>= 3.2.2.4)
85
+ parser (>= 3.3.0.2)
86
86
  rainbow (>= 2.2.2, < 4.0)
87
87
  regexp_parser (>= 1.8, < 3.0)
88
88
  rexml (>= 3.2.5, < 4.0)
@@ -98,6 +98,8 @@ GEM
98
98
  rubocop-performance (1.20.2)
99
99
  rubocop (>= 1.48.1, < 2.0)
100
100
  rubocop-ast (>= 1.30.0, < 2.0)
101
+ rubocop-rake (0.6.0)
102
+ rubocop (~> 1.0)
101
103
  rubocop-rspec (2.26.1)
102
104
  rubocop (~> 1.40)
103
105
  rubocop-capybara (~> 2.17)
@@ -110,7 +112,7 @@ GEM
110
112
  simplecov-html (0.12.3)
111
113
  simplecov_json_formatter (0.1.4)
112
114
  unicode-display_width (2.5.0)
113
- zeitwerk (2.6.12)
115
+ zeitwerk (2.6.13)
114
116
 
115
117
  PLATFORMS
116
118
  x86_64-darwin-19
@@ -118,16 +120,17 @@ PLATFORMS
118
120
  x86_64-linux
119
121
 
120
122
  DEPENDENCIES
121
- bundler (~> 2.4, >= 2.4.21)
123
+ bundler (>= 2.5, < 3.0)
122
124
  immutable_struct_ex_redactable!
123
- pry-byebug (~> 3.9)
124
- rake (~> 13.0, >= 13.0.6)
125
- reek (~> 6.1, >= 6.1.1)
126
- rspec (>= 3.10)
127
- rubocop (~> 1.35)
128
- rubocop-performance (~> 1.14, >= 1.14.3)
129
- rubocop-rspec (~> 2.12, >= 2.12.1)
130
- simplecov (~> 0.22.0)
125
+ pry-byebug (>= 3.9, < 4.0)
126
+ rake (>= 13.0, < 14.0)
127
+ reek (>= 6.1, < 7.0)
128
+ rspec (>= 3.12, < 4.0)
129
+ rubocop (>= 1.35, < 2.0)
130
+ rubocop-performance (>= 1.14, < 2.0)
131
+ rubocop-rake (>= 0.6, < 1.0)
132
+ rubocop-rspec (>= 2.12, < 3.0)
133
+ simplecov (>= 0.22.0, < 1.0)
131
134
 
132
135
  BUNDLED WITH
133
136
  2.5.3
data/README.md CHANGED
@@ -1,9 +1,9 @@
1
1
  # `immutable_struct_ex_redactable`
2
2
 
3
- [![Ruby](https://github.com/gangelo/immutable_struct_ex_redactable/actions/workflows/ruby.yml/badge.svg)](https://github.com/gangelo/immutable_struct_ex_redactable/actions/workflows/ruby.yml)
4
- [![GitHub version](http://badge.fury.io/gh/gangelo%2Fimmutable_struct_ex_redactable.svg?version=4)](https://badge.fury.io/gh/gangelo%2Fimmutable_struct_ex_redactable)
5
- [![Gem Version](https://badge.fury.io/rb/immutable_struct_ex_redactable.svg?version=4)](https://badge.fury.io/rb/immutable_struct_ex_redactable)
6
- [![Documentation](http://img.shields.io/badge/docs-rdoc.info-blue.svg)](http://www.rubydoc.info/gems/immutable_struct_ex_redactable/) [![Report Issues](https://img.shields.io/badge/report-issues-red.svg)](https://github.com/gangelo/immutable_struct_ex_redactable/issues)
3
+ [![Ruby](https://github.com/gangelo/immutable_struct_ex_redactable/actions/workflows/ruby.yml/badge.svg)](https://github.com/gangelo/immutable_struct_ex_redactable/actions/workflows/ruby.yml)
4
+ [![GitHub version](http://badge.fury.io/gh/gangelo%2Fimmutable_struct_ex_redactable.svg?version=6)](https://badge.fury.io/gh/gangelo%2Fimmutable_struct_ex_redactable)
5
+ [![Gem Version](https://badge.fury.io/rb/immutable_struct_ex_redactable.svg?version=6)](https://badge.fury.io/rb/immutable_struct_ex_redactable)
6
+ [![Documentation](http://img.shields.io/badge/docs-rdoc.info-blue.svg)](http://www.rubydoc.info/gems/immutable_struct_ex_redactable/) [![Report Issues](https://img.shields.io/badge/report-issues-red.svg)](https://github.com/gangelo/immutable_struct_ex_redactable/issues)
7
7
  [![License](http://img.shields.io/badge/license-MIT-yellowgreen.svg)](#license)
8
8
 
9
9
  ## Introduction
data/Rakefile CHANGED
@@ -2,11 +2,9 @@
2
2
 
3
3
  require "bundler/gem_tasks"
4
4
  require "rspec/core/rake_task"
5
-
6
- RSpec::Core::RakeTask.new(:spec)
7
-
8
5
  require "rubocop/rake_task"
9
6
 
7
+ RSpec::Core::RakeTask.new(:spec)
10
8
  RuboCop::RakeTask.new
11
9
 
12
10
  task default: %i[spec rubocop]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ImmutableStructExRedactable
4
- VERSION = '1.3.6'
4
+ VERSION = '1.3.7'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: immutable_struct_ex_redactable
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.6
4
+ version: 1.3.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gene M. Angelo, Jr.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-01-20 00:00:00.000000000 Z
11
+ date: 2024-02-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: immutable_struct_ex