Skip to content

Commit

Permalink
Update ruby gems
Browse files Browse the repository at this point in the history
  • Loading branch information
gangelo committed Feb 18, 2024
1 parent 4c10174 commit 46b44ef
Show file tree
Hide file tree
Showing 5 changed files with 77 additions and 31 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### 3.0.7 [2024-02-18]

Changes

- Update ruby gems.

### 3.0.6 [2024-01-18]

Changes
Expand Down
19 changes: 19 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,22 @@ source 'https://rubygems.org'

# Specify your gem's dependencies in mad_flatter.gemspec
gemspec

gem 'bundler', '~> 2.5', '>= 2.5.3'
gem 'rake', '~> 13.1'

group :development do
gem 'reek', '~> 6.1', '>= 6.1.1'
gem 'rubocop', '>= 1.31', '< 2.0'
gem 'rubocop-performance', '~> 1.14', '>= 1.14.3'
gem 'rubocop-rspec', '~> 2.12', '>= 2.12.1'
end

group :test do
gem 'rspec', '>= 3.12', '< 4.0'
gem 'simplecov', '~> 0.22.0'
end

group :development, :test do
gem 'pry-byebug', '~> 3.10', '>= 3.10.1'
end
42 changes: 21 additions & 21 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
mad_flatter (3.0.6)
mad_flatter (3.0.7)
activesupport (>= 7.0.8, < 7.2.0)
immutable_struct_ex (>= 1.0, < 2.0)

Expand All @@ -25,7 +25,7 @@ GEM
coderay (1.1.3)
concurrent-ruby (1.2.3)
connection_pool (2.4.1)
diff-lcs (1.5.0)
diff-lcs (1.5.1)
docile (1.4.0)
drb (2.2.0)
ruby2_keywords
Expand Down Expand Up @@ -58,14 +58,14 @@ GEM
zeitwerk (~> 2.6)
i18n (1.14.1)
concurrent-ruby (~> 1.0)
immutable_struct_ex (1.0.7)
immutable_struct_ex (1.0.9)
json (2.7.1)
language_server-protocol (3.17.0.3)
method_source (1.0.0)
minitest (5.21.2)
minitest (5.22.2)
mutex_m (0.2.0)
parallel (1.24.0)
parser (3.2.2.4)
parser (3.3.0.5)
ast (~> 2.4.1)
racc
pry (0.14.2)
Expand All @@ -77,31 +77,31 @@ GEM
racc (1.7.3)
rainbow (3.1.1)
rake (13.1.0)
reek (6.2.0)
reek (6.3.0)
dry-schema (~> 1.13.0)
parser (~> 3.2.0)
parser (~> 3.3.0)
rainbow (>= 2.0, < 4.0)
rexml (~> 3.1)
regexp_parser (2.9.0)
rexml (3.2.6)
rspec (3.12.0)
rspec-core (~> 3.12.0)
rspec-expectations (~> 3.12.0)
rspec-mocks (~> 3.12.0)
rspec-core (3.12.2)
rspec-support (~> 3.12.0)
rspec-expectations (3.12.3)
rspec (3.13.0)
rspec-core (~> 3.13.0)
rspec-expectations (~> 3.13.0)
rspec-mocks (~> 3.13.0)
rspec-core (3.13.0)
rspec-support (~> 3.13.0)
rspec-expectations (3.13.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0)
rspec-mocks (3.12.6)
rspec-support (~> 3.13.0)
rspec-mocks (3.13.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0)
rspec-support (3.12.1)
rubocop (1.59.0)
rspec-support (~> 3.13.0)
rspec-support (3.13.0)
rubocop (1.60.2)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.2.2.4)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
Expand Down Expand Up @@ -132,7 +132,7 @@ GEM
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (2.5.0)
zeitwerk (2.6.12)
zeitwerk (2.6.13)

PLATFORMS
x86_64-darwin-17
Expand Down
2 changes: 1 addition & 1 deletion lib/mad_flatter/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module MadFlatter
VERSION = '3.0.6'
VERSION = '3.0.7'
end
39 changes: 30 additions & 9 deletions mad_flatter.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,37 @@ Gem::Specification.new do |spec|

spec.add_runtime_dependency 'activesupport', '>= 7.0.8', '< 7.2.0'
spec.add_runtime_dependency 'immutable_struct_ex', '>= 1.0', '< 2.0'
spec.add_development_dependency 'bundler', '~> 2.5', '>= 2.5.3'
spec.add_development_dependency 'pry-byebug', '~> 3.10', '>= 3.10.1'
spec.add_development_dependency 'reek', '~> 6.1', '>= 6.1.1'
spec.add_development_dependency 'rspec', '>= 3.12', '< 4.0'
spec.add_development_dependency 'rubocop', '>= 1.31', '< 2.0'
spec.add_development_dependency 'rubocop-performance', '~> 1.14', '>= 1.14.3'
spec.add_development_dependency 'rubocop-rspec', '~> 2.12', '>= 2.12.1'
spec.add_development_dependency 'simplecov', '~> 0.22.0'
spec.add_development_dependency 'rake', '~> 13.1'

# For more information and examples about making a new gem, checkout our
# guide at: https://bundler.io/guides/creating_gem.html

spec.post_install_message = <<~POST_INSTALL
Thank you for installing mad_flatter.
View the mad_flatter README.md here: https://github.com/gangelo/mad_flatter
View the mad_flatter CHANGELOG.md: https://github.com/gangelo/mad_flatter/blob/main/CHANGELOG.md
*
***
*******
*********
***********************
*****************
*************
******* *******
***** *****
*** ***
** **
Using mad_flatter? mad_flatter is made available free of charge. Please consider giving mad_flatter a STAR on GitHub as well as sharing mad_flatter with your fellow developers on social media.
Knowing that mad_flatter is being used and appreciated is a great motivator to continue developing and improving mad_flatter.
>>> Star it on github: https://github.com/gangelo/mad_flatter
>>> Share on social media: https://rubygems.org/gems/mad_flatter
Thank you!
<3 Gene
POST_INSTALL
end

0 comments on commit 46b44ef

Please sign in to comment.