Skip to content

Commit

Permalink
Relax ruby version requirements and update gems
Browse files Browse the repository at this point in the history
  • Loading branch information
gangelo committed Jan 7, 2024
1 parent ca0a9b3 commit 0682fc4
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### 1.5.10 2024-01-07

* Changes
* Update ruby gems
* Relax ruby version requirement to Gem::Requirement.new('>= 3.0.1', '< 4.0')

### 1.5.9 2023-12-27

* Changes
Expand Down
42 changes: 35 additions & 7 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
deco_lite (1.5.9)
deco_lite (1.5.10)
activemodel (>= 7.0.8, <= 7.12.0)
activesupport (>= 7.0.8, <= 7.12.0)
immutable_struct_ex (>= 1.0, < 2.0)
Expand Down Expand Up @@ -33,11 +33,37 @@ GEM
docile (1.4.0)
drb (2.2.0)
ruby2_keywords
dry-configurable (1.1.0)
dry-core (~> 1.0, < 2)
zeitwerk (~> 2.6)
dry-core (1.0.1)
concurrent-ruby (~> 1.0)
zeitwerk (~> 2.6)
dry-inflector (1.0.0)
dry-initializer (3.1.1)
dry-logic (1.5.0)
concurrent-ruby (~> 1.0)
dry-core (~> 1.0, < 2)
zeitwerk (~> 2.6)
dry-schema (1.13.3)
concurrent-ruby (~> 1.0)
dry-configurable (~> 1.0, >= 1.0.1)
dry-core (~> 1.0, < 2)
dry-initializer (~> 3.0)
dry-logic (>= 1.4, < 2)
dry-types (>= 1.7, < 2)
zeitwerk (~> 2.6)
dry-types (1.7.2)
bigdecimal (~> 3.0)
concurrent-ruby (~> 1.0)
dry-core (~> 1.0)
dry-inflector (~> 1.0)
dry-logic (~> 1.4)
zeitwerk (~> 2.6)
i18n (1.14.1)
concurrent-ruby (~> 1.0)
immutable_struct_ex (1.0.5)
json (2.7.1)
kwalify (0.7.2)
language_server-protocol (3.17.0.3)
mad_flatter (3.0.5)
activesupport (>= 7.0.8, < 7.2.0)
Expand All @@ -58,10 +84,11 @@ GEM
racc (1.7.3)
rainbow (3.1.1)
rake (13.1.0)
reek (6.1.4)
kwalify (~> 0.7.0)
reek (6.2.0)
dry-schema (~> 1.13.0)
parser (~> 3.2.0)
rainbow (>= 2.0, < 4.0)
rexml (~> 3.1)
regexp_parser (2.8.3)
rexml (3.2.6)
rspec (3.12.0)
Expand Down Expand Up @@ -90,14 +117,14 @@ GEM
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.30.0)
parser (>= 3.2.1.0)
rubocop-capybara (2.19.0)
rubocop-capybara (2.20.0)
rubocop (~> 1.41)
rubocop-factory_bot (2.24.0)
rubocop-factory_bot (2.25.0)
rubocop (~> 1.33)
rubocop-performance (1.20.1)
rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0)
rubocop-rspec (2.25.0)
rubocop-rspec (2.26.1)
rubocop (~> 1.40)
rubocop-capybara (~> 2.17)
rubocop-factory_bot (~> 2.22)
Expand All @@ -112,6 +139,7 @@ GEM
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (2.5.0)
zeitwerk (2.6.12)

PLATFORMS
x86_64-darwin-19
Expand Down
2 changes: 1 addition & 1 deletion deco_lite.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.required_ruby_version = Gem::Requirement.new("~> 3.0")
spec.required_ruby_version = Gem::Requirement.new('>= 3.0.1', '< 4.0')

spec.add_runtime_dependency 'activemodel', '>= 7.0.8', '<= 7.12.0'
spec.add_runtime_dependency 'activesupport', '>= 7.0.8', '<= 7.12.0'
Expand Down
2 changes: 1 addition & 1 deletion lib/deco_lite/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

# Defines the version of this gem.
module DecoLite
VERSION = '1.5.9'
VERSION = '1.5.10'
end

0 comments on commit 0682fc4

Please sign in to comment.