Skip to content

Commit

Permalink
Upgrade Ruby and Bundler to fix ffi
Browse files Browse the repository at this point in the history
  • Loading branch information
12joan committed Jul 18, 2024
1 parent beb0f60 commit dd729ec
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 20 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.0.7-alpine
FROM ruby:3.3.4-alpine

RUN apk add --update --no-cache bash build-base tzdata postgresql-dev git

Expand Down
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '3.0.7'
ruby '3.3.4'

# Rails
gem 'activesupport'
Expand All @@ -23,7 +23,7 @@ gem 'puma', '~> 6.4'
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
gem 'rack-cors'

gem 'not_analytics_client', '~> 0.2.0', github: '12joan/not-analytics-client', branch: 'main'
gem 'not_analytics_client', '~> 0.3.0', github: '12joan/not-analytics-client', branch: 'main'

gem 'groupdate', '~> 5.2'

Expand Down
29 changes: 12 additions & 17 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
GIT
remote: https://github.com/12joan/not-analytics-client.git
revision: ada3d03a91b5c5f601ee39c6ab6116d7d1a6c851
revision: 2906a7d9f6fe35b4917f03356f70c2ac82a91eb0
branch: main
specs:
not_analytics_client (0.2.0)
base64 (~> 0.1)
json (~> 2.5)
net-http (~> 0.1.1)
openssl (~> 2.2)
securerandom (~> 0.1)
not_analytics_client (0.3.0)
base64 (~> 0.2)
json (~> 2.7)
net-http (~> 0.4)
openssl (~> 3.2)
securerandom (~> 0.3)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -62,7 +62,6 @@ GEM
i18n (1.14.5)
concurrent-ruby (~> 1.0)
io-console (0.7.2)
ipaddr (1.2.6)
irb (1.14.0)
rdoc (>= 4.0.0)
reline (>= 0.4.2)
Expand All @@ -75,20 +74,16 @@ GEM
nokogiri (>= 1.12.0)
minitest (5.24.1)
mutex_m (0.2.0)
net-http (0.1.1)
net-protocol
net-http (0.4.1)
uri
net-protocol (0.2.2)
timeout
nio4r (2.7.3)
nokogiri (1.16.6-aarch64-linux)
racc (~> 1.4)
nokogiri (1.16.6-arm64-darwin)
racc (~> 1.4)
nokogiri (1.16.6-x86_64-linux)
racc (~> 1.4)
openssl (2.2.3)
ipaddr
openssl (3.2.0)
pg (1.5.6)
psych (5.1.2)
stringio
Expand Down Expand Up @@ -152,15 +147,15 @@ DEPENDENCIES
byebug
groupdate (~> 5.2)
listen (~> 3.3)
not_analytics_client (~> 0.2.0)!
not_analytics_client (~> 0.3.0)!
pg (~> 1.1)
puma (~> 6.4)
rack-cors
railties
tzinfo-data

RUBY VERSION
ruby 3.0.7
ruby 3.3.4p94

BUNDLED WITH
2.2.33
2.5.15

0 comments on commit dd729ec

Please sign in to comment.