immutable_struct_ex 1.0.6 → 1.0.8

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: cd929528a3699d2fdb9351798117381df98eccf80c574eee1c695a0fa2663b76
4
- data.tar.gz: 3d693fcdcf727c9a577b6f85bf45333d75c8ceaa72d1c72751047482b64a7829
3
+ metadata.gz: afdfd3e622b8f97b15e3c39def4833728b519a7893e81612cb234d90ffb7c9ab
4
+ data.tar.gz: 21f4dab8565c11a676d0737e45cff55f2e15d2409d8082d1cf95bc305a4e7e33
5
5
  SHA512:
6
- metadata.gz: cf748ee6b9e5dbd362c319d589873180df8d75c24c63814b337b6c6384f085eae8981abc2f95f764af73a427d83551a13451a2ce10834d7b6625019d153a3b9f
7
- data.tar.gz: a558491229f539961e7645095a4c9da62a5b6e771400ffd1b146e111da40002312c0f3e451bb910f0628f8f7cd6beff0503abc0670db5b89daeff49b8656288e
6
+ metadata.gz: a072164385b78fa9d2673e8890840792bc5ddb0a2c60e93ad006f178bd45c292ec91161839b43a0765ca62b2f894cc9f2dc06622f407f895f8931701c8ab1e1b
7
+ data.tar.gz: 69c2a512c3298493a76efa34f9673f8860a4b2242441a0d1a00904c91b2d406d44386d211a0efa7da6b619b88c0f4dff55b2fb3781a476be32a9fb6f703dac77
data/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ ### [1.0.8] 2024-01-19
2
+
3
+ Changes
4
+
5
+ - Update ruby gems.
6
+
7
+ ### [1.0.7] 2024-01-12
8
+
9
+ Changes
10
+
11
+ - Add specs to cover comparing an ImmutableStructEx against another Struct.
12
+ - Update ruby gems.
13
+
1
14
  ### [1.0.6] 2024-01-07
2
15
 
3
16
  Changes
data/Gemfile.lock CHANGED
@@ -1,16 +1,16 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- immutable_struct_ex (1.0.6)
4
+ immutable_struct_ex (1.0.8)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
9
  ast (2.4.2)
10
- bigdecimal (3.1.5)
10
+ bigdecimal (3.1.6)
11
11
  byebug (11.1.3)
12
12
  coderay (1.1.3)
13
- concurrent-ruby (1.2.2)
13
+ concurrent-ruby (1.2.3)
14
14
  diff-lcs (1.5.0)
15
15
  docile (1.4.0)
16
16
  dry-configurable (1.1.0)
@@ -61,7 +61,7 @@ GEM
61
61
  parser (~> 3.2.0)
62
62
  rainbow (>= 2.0, < 4.0)
63
63
  rexml (~> 3.1)
64
- regexp_parser (2.8.3)
64
+ regexp_parser (2.9.0)
65
65
  rexml (3.2.6)
66
66
  rspec (3.12.0)
67
67
  rspec-core (~> 3.12.0)
@@ -91,9 +91,9 @@ GEM
91
91
  parser (>= 3.2.1.0)
92
92
  rubocop-capybara (2.20.0)
93
93
  rubocop (~> 1.41)
94
- rubocop-factory_bot (2.25.0)
95
- rubocop (~> 1.33)
96
- rubocop-performance (1.20.1)
94
+ rubocop-factory_bot (2.25.1)
95
+ rubocop (~> 1.41)
96
+ rubocop-performance (1.20.2)
97
97
  rubocop (>= 1.48.1, < 2.0)
98
98
  rubocop-ast (>= 1.30.0, < 2.0)
99
99
  rubocop-rspec (2.26.1)
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  [![Ruby](https://github.com/gangelo/immutable_struct_ex/actions/workflows/ruby.yml/badge.svg)](https://github.com/gangelo/immutable_struct_ex/actions/workflows/ruby.yml)
2
- [![GitHub version](http://badge.fury.io/gh/gangelo%2Fimmutable_struct_ex.svg?refresh=3)](https://badge.fury.io/gh/gangelo%2Fimmutable_struct_ex)
3
- [![Gem Version](https://badge.fury.io/rb/immutable_struct_ex.svg?refresh=3)](https://badge.fury.io/rb/immutable_struct_ex)
2
+ [![GitHub version](http://badge.fury.io/gh/gangelo%2Fimmutable_struct_ex.svg?refresh=5)](https://badge.fury.io/gh/gangelo%2Fimmutable_struct_ex)
3
+ [![Gem Version](https://badge.fury.io/rb/immutable_struct_ex.svg?refresh=5)](https://badge.fury.io/rb/immutable_struct_ex)
4
4
  [![](http://ruby-gem-downloads-badge.herokuapp.com/immutable_struct_ex?type=total)](http://www.rubydoc.info/gems/immutable_struct_ex/)
5
5
  [![Documentation](http://img.shields.io/badge/docs-rdoc.info-blue.svg)](http://www.rubydoc.info/gems/immutable_struct_ex/)
6
6
  [![Report Issues](https://img.shields.io/badge/report-issues-red.svg)](https://github.com/gangelo/immutable_struct_ex/issues)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ImmutableStructEx
4
- VERSION = '1.0.6'
4
+ VERSION = '1.0.8'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: immutable_struct_ex
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.0.8
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-07 00:00:00.000000000 Z
11
+ date: 2024-01-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler