Skip to content

Commit bccf70d

Browse files
committed
Pin base64 to 0.1.1 due to following passenger error on diglib-rails-dev1
Could not spawn process for application /opt/passenger/sword_dev/current: The application encountered the following error: You have already activated base64 0.1.1, but your Gemfile requires base64 0.2.0. Since base64 is a default gem, you can either remove your dependency on it or try updating to a newer version of bundler that supports base64 as a default gem. (Gem::LoadError) Later, we can try updating bundler, but for now I wanna try this quick fix.
1 parent 65dfddf commit bccf70d

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Diff for: Gemfile

+5
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ gem 'nokogiri'
1919

2020
gem 'rainbow', '~> 3.0'
2121

22+
# fcd1, 12/22/23: Passenger on diglib-rails-dev1 complaining:
23+
# You have already activated base64 0.1.1, but your Gemfile requires base64 0.2.0
24+
# so gonna lock version to 0.1.1
25+
gem 'base64', '0.1.1'
26+
2227
# Use ActiveModel has_secure_password
2328
gem 'bcrypt', '~> 3.1.7'
2429

Diff for: Gemfile.lock

+2-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ GEM
7777
tzinfo (~> 2.0)
7878
airbrussh (1.5.0)
7979
sshkit (>= 1.6.1, != 1.7.0)
80-
base64 (0.2.0)
80+
base64 (0.1.1)
8181
bcrypt (3.1.20)
8282
bigdecimal (3.1.5)
8383
bootsnap (1.17.0)
@@ -285,6 +285,7 @@ PLATFORMS
285285
x86_64-linux
286286

287287
DEPENDENCIES
288+
base64 (= 0.1.1)
288289
bcrypt (~> 3.1.7)
289290
bootsnap (>= 1.4.2)
290291
capistrano (~> 3.17.3)

0 commit comments

Comments
 (0)