Skip to content

Commit

Permalink
Add a missing base64 require.
Browse files Browse the repository at this point in the history
Also, prepare for the moving of base64 from default to a bundled gem in ruby 3.4.
  • Loading branch information
mdkent committed Jan 8, 2024
1 parent 457f06d commit 17f8b31
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ PATH
specs:
kamal (1.3.0)
activesupport (>= 7.0)
base64 (~> 0.2)
bcrypt_pbkdf (~> 1.0)
concurrent-ruby (~> 1.2)
dotenv (~> 2.8)
Expand Down Expand Up @@ -33,6 +34,7 @@ GEM
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
base64 (0.2.0)
bcrypt_pbkdf (1.1.0)
builder (3.2.4)
concurrent-ruby (1.2.2)
Expand Down
1 change: 1 addition & 0 deletions kamal.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Gem::Specification.new do |spec|
spec.add_dependency "ed25519", "~> 1.2"
spec.add_dependency "bcrypt_pbkdf", "~> 1.0"
spec.add_dependency "concurrent-ruby", "~> 1.2"
spec.add_dependency "base64", "~> 0.2"

spec.add_development_dependency "debug"
spec.add_development_dependency "mocha"
Expand Down
1 change: 1 addition & 0 deletions lib/kamal/commands/lock.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
require "active_support/duration"
require "time"
require "base64"

class Kamal::Commands::Lock < Kamal::Commands::Base
def acquire(message, version)
Expand Down

0 comments on commit 17f8b31

Please sign in to comment.