Skip to content

Commit

Permalink
Update to be able to run on 3.4 with frozen strings (#1080)
Browse files Browse the repository at this point in the history
* Update to be able to run on 3.4 with frozen strings

---------

Co-authored-by: Jeremy Daer <[email protected]>
Co-authored-by: Sijawusz Pur Rahnama <[email protected]>
  • Loading branch information
3 people authored Oct 10, 2024
1 parent 3654a7e commit a1e40f9
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
- "3.1"
- "3.2"
- "3.3"
- "3.4.0-preview2"
gemfile:
- Gemfile
- gemfiles/rails_edge.gemfile
Expand All @@ -41,6 +42,9 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Remove gemfile.lock
run: rm Gemfile.lock

- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
Expand All @@ -49,3 +53,5 @@ jobs:

- name: Run tests
run: bin/test
env:
RUBYOPT: ${{ startsWith(matrix.ruby-version, '3.4.') && '--enable=frozen-string-literal' || '' }}
18 changes: 10 additions & 8 deletions lib/kamal/commands/base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,7 @@ def initialize(config)
end

def run_over_ssh(*command, host:)
"ssh".tap do |cmd|
if config.ssh.proxy && config.ssh.proxy.is_a?(Net::SSH::Proxy::Jump)
cmd << " -J #{config.ssh.proxy.jump_proxies}"
elsif config.ssh.proxy && config.ssh.proxy.is_a?(Net::SSH::Proxy::Command)
cmd << " -o ProxyCommand='#{config.ssh.proxy.command_line_template}'"
end
cmd << " -t #{config.ssh.user}@#{host} -p #{config.ssh.port} '#{command.join(" ").gsub("'", "'\\\\''")}'"
end
"ssh#{ssh_proxy_args} -t #{config.ssh.user}@#{host} -p #{config.ssh.port} '#{command.join(" ").gsub("'", "'\\\\''")}'"
end

def container_id_for(container_name:, only_running: false)
Expand Down Expand Up @@ -92,5 +85,14 @@ def grep(*args)
def tags(**details)
Kamal::Tags.from_config(config, **details)
end

def ssh_proxy_args
case config.ssh.proxy
when Net::SSH::Proxy::Jump
" -J #{config.ssh.proxy.jump_proxies}"
when Net::SSH::Proxy::Command
" -o ProxyCommand='#{config.ssh.proxy.command_line_template}'"
end
end
end
end

0 comments on commit a1e40f9

Please sign in to comment.