Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
ruby: '3.0'
gemfile: "Gemfile.min-supported"
- name: 'Latest released & run rubocop'
ruby: '3.3'
ruby: '3.4'
gemfile: "Gemfile.latest-release"
rubocop: true
- name: 'Rails edge'
ruby: '3.3'
ruby: '3.4'
gemfile: "Gemfile.rails-edge"
edge: true

Expand Down
74 changes: 40 additions & 34 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
GIT
remote: https://github.com/Shopify/memcached.git
revision: 54a89bae698896a00fd2ceeb142dada6285f73ed
revision: 30f5735d5db2dfd50dd885ceeb51672320b356d3
branch: 1-0-stable-shopify
specs:
memcached (1.9.0)
Expand All @@ -15,14 +15,15 @@ PATH
GEM
remote: https://rubygems.org/
specs:
activemodel (7.2.0)
activesupport (= 7.2.0)
activerecord (7.2.0)
activemodel (= 7.2.0)
activesupport (= 7.2.0)
activemodel (8.0.2)
activesupport (= 8.0.2)
activerecord (8.0.2)
activemodel (= 8.0.2)
activesupport (= 8.0.2)
timeout (>= 0.4.0)
activesupport (7.2.0)
activesupport (8.0.2)
base64
benchmark (>= 0.3)
bigdecimal
concurrent-ruby (~> 1.0, >= 1.3.1)
connection_pool (>= 2.2.5)
Expand All @@ -32,39 +33,42 @@ GEM
minitest (>= 5.1)
securerandom (>= 0.3)
tzinfo (~> 2.0, >= 2.0.5)
uri (>= 0.13.1)
ar_transaction_changes (1.1.9)
activerecord (>= 5.2.0)
ast (2.4.2)
base64 (0.2.0)
bigdecimal (3.1.8)
byebug (11.1.3)
ast (2.4.3)
base64 (0.3.0)
benchmark (0.4.1)
bigdecimal (3.2.2)
byebug (12.0.0)
cityhash (0.6.0)
concurrent-ruby (1.3.4)
connection_pool (2.4.1)
dalli (3.2.3)
drb (2.2.1)
i18n (1.14.5)
concurrent-ruby (1.3.5)
connection_pool (2.5.3)
dalli (3.2.8)
drb (2.2.3)
i18n (1.14.7)
concurrent-ruby (~> 1.0)
json (2.7.1)
language_server-protocol (3.17.0.3)
logger (1.6.0)
json (2.13.1)
language_server-protocol (3.17.0.5)
logger (1.7.0)
memcached_store (2.3.4)
activesupport (>= 6)
memcached (~> 1.8)
minitest (5.25.1)
mocha (2.1.0)
minitest (5.25.5)
mocha (2.7.1)
ruby2_keywords (>= 0.0.5)
mysql2 (0.5.6)
parallel (1.24.0)
parser (3.3.0.5)
parallel (1.27.0)
parser (3.3.9.0)
ast (~> 2.4.1)
racc
pg (1.5.6)
racc (1.7.3)
pg (1.5.9)
prism (1.4.0)
racc (1.8.1)
rainbow (3.1.1)
rake (13.1.0)
regexp_parser (2.9.0)
rexml (3.3.9)
rake (13.3.0)
regexp_parser (2.10.0)
rexml (3.4.1)
rubocop (1.61.0)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
Expand All @@ -76,19 +80,21 @@ GEM
rubocop-ast (>= 1.30.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.31.2)
parser (>= 3.3.0.4)
rubocop-ast (1.46.0)
parser (>= 3.3.7.2)
prism (~> 1.4)
rubocop-shopify (2.9.0)
rubocop (~> 1.33)
ruby-progressbar (1.13.0)
ruby2_keywords (0.0.5)
securerandom (0.3.1)
securerandom (0.4.1)
spy (1.0.5)
stackprof (0.2.26)
timeout (0.4.1)
stackprof (0.2.27)
timeout (0.4.3)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (2.5.0)
unicode-display_width (2.6.0)
uri (1.0.3)

PLATFORMS
arm64-darwin-22
Expand Down
2 changes: 1 addition & 1 deletion test/cache_hash_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def test_memcache_hash
hash_val = IdentityCache.memcache_hash(random_str)
assert(hash_val)
assert_kind_of(Numeric, hash_val)
assert_equal(0, (hash_val >> 64))
assert_equal(0, hash_val >> 64)
end
end
end
Loading