Skip to content

Commit

Permalink
Update ruby gems && bump version to 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
gangelo committed Nov 1, 2023
1 parent 9a1e078 commit 2235fc2
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 20 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### [1.0.3] 2023-11-01

Changes

- Ruby gem updates

### [1.0.2] 2023-08-29

Changes
Expand Down
34 changes: 16 additions & 18 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
PATH
remote: .
specs:
immutable_struct_ex (1.0.2)
immutable_struct_ex (1.0.3)

GEM
remote: https://rubygems.org/
specs:
ast (2.4.2)
base64 (0.1.1)
byebug (11.1.3)
coderay (1.1.3)
diff-lcs (1.5.0)
Expand All @@ -17,7 +16,7 @@ GEM
language_server-protocol (3.17.0.3)
method_source (1.0.0)
parallel (1.23.0)
parser (3.2.2.3)
parser (3.2.2.4)
ast (~> 2.4.1)
racc
pry (0.14.2)
Expand All @@ -26,14 +25,14 @@ GEM
pry-byebug (3.10.1)
byebug (~> 11.0)
pry (>= 0.13, < 0.15)
racc (1.7.1)
racc (1.7.2)
rainbow (3.1.1)
rake (13.0.6)
rake (13.1.0)
reek (6.1.4)
kwalify (~> 0.7.0)
parser (~> 3.2.0)
rainbow (>= 2.0, < 4.0)
regexp_parser (2.8.1)
regexp_parser (2.8.2)
rexml (3.2.6)
rspec (3.12.0)
rspec-core (~> 3.12.0)
Expand All @@ -48,29 +47,28 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0)
rspec-support (3.12.1)
rubocop (1.56.2)
base64 (~> 0.1.1)
rubocop (1.57.2)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.2.2.3)
parser (>= 3.2.2.4)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.28.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.29.0)
rubocop-ast (1.30.0)
parser (>= 3.2.1.0)
rubocop-capybara (2.18.0)
rubocop-capybara (2.19.0)
rubocop (~> 1.41)
rubocop-factory_bot (2.23.1)
rubocop-factory_bot (2.24.0)
rubocop (~> 1.33)
rubocop-performance (1.19.0)
rubocop-performance (1.19.1)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
rubocop-rspec (2.23.2)
rubocop (~> 1.33)
rubocop-rspec (2.25.0)
rubocop (~> 1.40)
rubocop-capybara (~> 2.17)
rubocop-factory_bot (~> 2.22)
ruby-progressbar (1.13.0)
Expand All @@ -80,15 +78,15 @@ GEM
simplecov_json_formatter (~> 0.1)
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.4)
unicode-display_width (2.4.2)
unicode-display_width (2.5.0)

PLATFORMS
x86_64-darwin-19
x86_64-darwin-21
x86_64-linux

DEPENDENCIES
bundler (~> 2.2, >= 2.2.17)
bundler (~> 2.4, >= 2.4.21)
immutable_struct_ex!
pry-byebug (~> 3.9)
rake (~> 13.0, >= 13.0.6)
Expand All @@ -100,4 +98,4 @@ DEPENDENCIES
simplecov (~> 0.22.0)

BUNDLED WITH
2.3.22
2.4.21
2 changes: 1 addition & 1 deletion immutable_struct_ex.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.add_development_dependency 'bundler', '~> 2.2', '>= 2.2.17'
spec.add_development_dependency 'bundler', '~> 2.4', '>= 2.4.21'
spec.add_development_dependency 'pry-byebug', '~> 3.9'
spec.add_development_dependency 'reek', '~> 6.1', '>= 6.1.1'
spec.add_development_dependency 'rspec', '>= 3.10'
Expand Down
2 changes: 1 addition & 1 deletion lib/immutable_struct_ex/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module ImmutableStructEx
VERSION = '1.0.2'
VERSION = '1.0.3'
end

0 comments on commit 2235fc2

Please sign in to comment.