Skip to content

Commit

Permalink
Merge pull request #635 from basecamp/missing-base64-require
Browse files Browse the repository at this point in the history
Add a missing base64 require
  • Loading branch information
djmb authored Jan 9, 2024
2 parents 4b05068 + c5ae54d commit acc6b9a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 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
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 acc6b9a

Please sign in to comment.