Skip to content

Commit 63b2fec

Browse files
committed
drop old rubies
1 parent bd40999 commit 63b2fec

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
ruby: ["3.0", "3.1", "3.2", "3.3", "3.4"]
15+
ruby: ["3.2", "3.3", "3.4"]
1616

1717
name: ${{ matrix.ruby }}
1818

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ inherit_gem:
33

44
AllCops:
55
DisplayCopNames: true
6-
TargetRubyVersion: 3.0
6+
TargetRubyVersion: 3.2
77

88
Naming/MethodParameterName:
99
AllowedNames: ["x", "y", "z"]

Gemfile.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ PATH
66
GEM
77
remote: https://rubygems.org/
88
specs:
9-
activesupport (7.1.5.2)
9+
activesupport (8.0.2.1)
1010
base64
1111
benchmark (>= 0.3)
1212
bigdecimal
13-
concurrent-ruby (~> 1.0, >= 1.0.2)
13+
concurrent-ruby (~> 1.0, >= 1.3.1)
1414
connection_pool (>= 2.2.5)
1515
drb
1616
i18n (>= 1.6, < 2)
1717
logger (>= 1.4.2)
1818
minitest (>= 5.1)
19-
mutex_m
2019
securerandom (>= 0.3)
21-
tzinfo (~> 2.0)
20+
tzinfo (~> 2.0, >= 2.0.5)
21+
uri (>= 0.13.1)
2222
ast (2.4.3)
2323
base64 (0.3.0)
2424
benchmark (0.4.1)
@@ -38,10 +38,9 @@ GEM
3838
language_server-protocol (3.17.0.5)
3939
lint_roller (1.1.0)
4040
logger (1.7.0)
41-
memory_profiler (1.0.2)
41+
memory_profiler (1.1.0)
4242
method_source (1.1.0)
4343
minitest (5.25.5)
44-
mutex_m (0.3.0)
4544
parallel (1.27.0)
4645
parser (3.3.9.0)
4746
ast (~> 2.4.1)
@@ -113,7 +112,7 @@ GEM
113112
lint_roller (~> 1.1)
114113
rubocop (>= 1.72.1, < 2)
115114
ruby-progressbar (1.13.0)
116-
securerandom (0.3.2)
115+
securerandom (0.4.1)
117116
simplecov (0.22.0)
118117
docile (~> 1.1)
119118
simplecov-html (~> 0.11)
@@ -126,6 +125,7 @@ GEM
126125
unicode-display_width (3.1.5)
127126
unicode-emoji (~> 4.0, >= 4.0.4)
128127
unicode-emoji (4.0.4)
128+
uri (1.0.3)
129129

130130
PLATFORMS
131131
ruby
@@ -144,4 +144,4 @@ DEPENDENCIES
144144
simplecov-lcov
145145

146146
BUNDLED WITH
147-
2.5.23
147+
2.7.1

lib/memery.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ def prepend_memery_module!
7373
prepend(@_memery_module)
7474
end
7575

76-
def define_memoized_method!(method_name, **options)
77-
@_memery_module.define_memoized_method!(self, method_name, **options)
76+
def define_memoized_method!(method_name, **)
77+
@_memery_module.define_memoized_method!(self, method_name, **)
7878
end
7979

8080
module MemoizationModule

memery.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
55
require "memery/version"
66

77
Gem::Specification.new do |spec|
8-
spec.required_ruby_version = ">= 3.0.0"
8+
spec.required_ruby_version = ">= 3.2.0"
99

1010
spec.name = "memery"
1111
spec.version = Memery::VERSION

0 commit comments

Comments
 (0)