Skip to content
Open
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
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.1
3.4.8
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.2.1
FROM ruby:3.4.8
WORKDIR /usr/src/app

ADD Gemfile Gemfile.lock pg_index_benchmark.gemspec /usr/src/app/
Expand Down
28 changes: 18 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ PATH
json (>= 2.6.2, < 3.0)
optparse (>= 0.2.0, < 1.0)
pg (>= 1.4.5, < 2.0)
pg_query (>= 2.2.0, < 3.0)
pg_query (>= 4.0, < 7.0)
rainbow (>= 2.2.2, < 4.0)
rake (~> 13.0)
set (>= 1.0.3, < 2.0)
Expand All @@ -21,24 +21,31 @@ GEM
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
bigdecimal (4.1.0)
concurrent-ruby (1.2.2)
digest (3.1.1)
google-protobuf (3.22.2-aarch64-linux)
google-protobuf (3.22.2-arm64-darwin)
docile (1.4.0)
google-protobuf (3.22.2-x86_64-linux)
google-protobuf (4.34.1-aarch64-linux-gnu)
bigdecimal
rake (~> 13.3)
google-protobuf (4.34.1-arm64-darwin)
bigdecimal
rake (~> 13.3)
google-protobuf (4.34.1-x86_64-linux-gnu)
bigdecimal
rake (~> 13.3)
i18n (1.12.0)
concurrent-ruby (~> 1.0)
json (2.6.3)
minitest (5.18.0)
mocha (2.0.2)
minitest (5.27.0)
mocha (2.8.2)
ruby2_keywords (>= 0.0.5)
optparse (0.3.1)
pg (1.4.6)
pg_query (2.2.1)
google-protobuf (>= 3.19.2)
pg_query (6.2.2)
google-protobuf (>= 3.25.3)
rainbow (3.1.1)
rake (13.0.6)
rake (13.3.1)
ruby2_keywords (0.0.5)
set (1.0.3)
simplecov (0.22.0)
Expand All @@ -54,6 +61,7 @@ GEM
PLATFORMS
aarch64-linux
arm64-darwin-21
arm64-darwin-24
x86_64-linux

DEPENDENCIES
Expand All @@ -63,4 +71,4 @@ DEPENDENCIES
simplecov (~> 0.22)

BUNDLED WITH
2.3.7
2.7.2
4 changes: 2 additions & 2 deletions pg_index_benchmark.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Gem::Specification.new do |s|
Pg-index-benchmark helps to benchmark the index changes you could do on Aurora PostgreSQL instances.
DESCRIPTION
s.platform = Gem::Platform::RUBY
s.required_ruby_version = ">= 3.2.1"
s.required_ruby_version = ">= 3.4"
s.authors = ["Emmanuel Quincerot"]
s.email = "emmanuel.quincerot@doctolib.com"
s.files = Dir.glob("{lib}/**/*", File::FNM_DOTMATCH)
Expand All @@ -25,7 +25,7 @@ DESCRIPTION
s.add_runtime_dependency('json', '>= 2.6.2', '< 3.0')
s.add_runtime_dependency('optparse', '>= 0.2.0', '< 1.0')
s.add_runtime_dependency('pg', '>= 1.4.5', '< 2.0')
s.add_runtime_dependency('pg_query', '>= 2.2.0', '< 3.0')
s.add_runtime_dependency('pg_query', '>= 4.0', '< 7.0')
s.add_runtime_dependency('set', '>= 1.0.3', '< 2.0')
s.add_runtime_dependency('yaml', '>= 0.2.0', '< 1.0')
s.add_runtime_dependency('rake', '~> 13.0')
Expand Down