immosquare-capistrano 0.1.7 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4d5ce30da4725609f237136b6fa05c3cae9668c128a9c10c7db824c26564df61
4
- data.tar.gz: 7135f08dfb35aa6a54eda7c03ad8825df43c2f7aea822a813eb4a0fc161d67c1
3
+ metadata.gz: 1301c09a4f7adc7c81ffa460898f976eec5ad6c19d4c577ccd6dc039c0341d53
4
+ data.tar.gz: 64ebe76148b314d08b4f388fe0759fcb55dd0e9a9c96a502653fdf16d1802277
5
5
  SHA512:
6
- metadata.gz: 91ffa7cba4f9af474bd1ae3a77f83199e740f49e44149f805fb8734759664b389ac13ec6ff9a686545810710c4d0673ac789e10bcae84aba9ae9bd7c2b2eab3c
7
- data.tar.gz: ffe745d0bb6d5ad2c4570c3064e84a8ac0ce345feb938854a7ffcd5ed94f79df1c9b0de9236fa6528338bb6ac1c5e8cbb704f09dc6b719a51f6d420d1d6c6209
6
+ metadata.gz: 12429a4298672f04bd80c17994a3b684306d894e3bc26731c11779e0e97c954d8d89f717c3a7372bdd1f5666b350a8975e554d859021f65b14c6e2c41ea37e57
7
+ data.tar.gz: cb5ed273393ac7ce4336f9ef28b3b9d690de60ec522f189d2312a66a2b3d6abfcc66ff67a8181021f83efcddce5e0a73b0cca4cba17718e54651dc22b76fc9a8
@@ -1,13 +1,6 @@
1
1
  module Capistrano
2
2
  module Immosquare
3
3
  module Helpers
4
- ##============================================================##
5
- ## Get the path to bundle command
6
- ##============================================================##
7
- def self.expanded_bundle_command
8
- SSHKit.config.command_map[:bundle].to_s
9
- end
10
-
11
4
  def self.template_path(service)
12
5
  "#{File.dirname(__FILE__)}/templates/#{service}.service.erb"
13
6
  end
@@ -41,7 +41,8 @@ namespace :rvm do
41
41
  ## Set the RVM prefix for the commands
42
42
  ##============================================================##
43
43
  ["gem", "rake", "ruby", "bundle"].each do |command|
44
- SSHKit.config.command_map.prefix[command.to_sym].unshift("#{rvm_bin_path} #{rvm_ruby_version} do")
44
+ cmd = "#{rvm_bin_path} #{rvm_ruby_version} do"
45
+ SSHKit.config.command_map.prefix[command.to_sym] << cmd if !SSHKit.config.command_map.prefix[command.to_sym].include?(cmd)
45
46
  end
46
47
 
47
48
 
@@ -8,7 +8,7 @@ Type=notify
8
8
  WatchdogSec=10
9
9
  User=<%= fetch(:puma_user) %>
10
10
  WorkingDirectory=<%= current_path %>
11
- ExecStart=<%= "#{Capistrano::Immosquare::Helpers.expanded_bundle_command.gsub("~", "/home/#{fetch(:puma_user)}")} exec puma -e #{fetch(:stage)}" %>
11
+ ExecStart=<%= "#{SSHKit.config.command_map[:bundle]} exec puma -e #{fetch(:stage)}" %>
12
12
  ExecReload=/bin/kill -USR1 $MAINPID
13
13
 
14
14
 
@@ -8,7 +8,7 @@ Type=notify
8
8
  WatchdogSec=10
9
9
  User=<%= fetch(:sidekiq_user) %>
10
10
  WorkingDirectory=<%= current_path %>
11
- ExecStart=<%= "#{Capistrano::Immosquare::Helpers.expanded_bundle_command.gsub("~", "/home/#{fetch(:sidekiq_user)}")} exec sidekiq -e #{fetch(:stage)}" %>
11
+ ExecStart=<%= "#{SSHKit.config.command_map[:bundle]} exec sidekiq -e #{fetch(:stage)}" %>
12
12
 
13
13
  UMask=0002
14
14
 
@@ -8,7 +8,7 @@ Environment=RAILS_ENV=<%= fetch(:stage) %>
8
8
  User=<%= fetch(:solid_queue_user) %>
9
9
  WorkingDirectory=<%= current_path %>
10
10
 
11
- ExecStart=<%= "#{Capistrano::Immosquare::Helpers.expanded_bundle_command.gsub("~", "/home/#{fetch(:solid_queue_user)}")} exec rake solid_queue:start" %>
11
+ ExecStart=<%= "#{SSHKit.config.command_map[:bundle]} exec rake solid_queue:start" %>
12
12
  ExecReload=/bin/kill -HUP $MAINPID
13
13
  ExecStop=/bin/kill -TERM $MAINPID
14
14
 
@@ -1,3 +1,3 @@
1
1
  module ImmosquareCapistrano
2
- VERSION = "0.1.7".freeze
2
+ VERSION = "0.1.8".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: immosquare-capistrano
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - immosquare
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-12 00:00:00.000000000 Z
11
+ date: 2024-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano