immosquare-capistrano 0.1.6 → 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: d21992d6862c4412d439d94e332daa87bd4388d897968d622cbcfec44b288f55
4
- data.tar.gz: d4038ca94a06375b0c01c74f09c94678cf397ac538d866b940b0968cdb9dbecd
3
+ metadata.gz: 1301c09a4f7adc7c81ffa460898f976eec5ad6c19d4c577ccd6dc039c0341d53
4
+ data.tar.gz: 64ebe76148b314d08b4f388fe0759fcb55dd0e9a9c96a502653fdf16d1802277
5
5
  SHA512:
6
- metadata.gz: 76a896e2b628412f9bb2a4b1b4ade6c8def6020dbe73430c64d9c86739b723d7050fc544f9d00a2271d7110ebed1a3d6c50aacc3f61e3061a7b38e8954343313
7
- data.tar.gz: dc02e35d9e183637e9ce333605b071ef3473c1c25892b8cc0bb23f14d8c2afae91f81b50f9af2696e705ca57de3a46288ab706543eedbc9c3caa15b72bb505ec
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
@@ -13,3 +13,8 @@ load File.expand_path("tasks/rvm.rake", __dir__)
13
13
  Capistrano::DSL.stages.each do |stage|
14
14
  after stage, "rvm:hook"
15
15
  end
16
+
17
+ ##============================================================##
18
+ ## Update .ruby-gemset && ruby-version files
19
+ ##============================================================##
20
+ before "deploy:updated", "rvm:update_rvm_dot_files"
@@ -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
 
@@ -65,4 +66,38 @@ namespace :rvm do
65
66
  end
66
67
  end
67
68
  end
69
+
70
+ ##============================================================##
71
+ ## Update .ruby-gemset and .ruby-version files with
72
+ ## values from the rvm_ruby_version variable
73
+ ##============================================================##
74
+ task :update_rvm_dot_files do
75
+ on roles(:app) do
76
+ rvm_ruby_version = fetch(:rvm_ruby_version)
77
+ ruby_version = rvm_ruby_version.split("@").first
78
+ gemset_name = rvm_ruby_version.split("@").last
79
+
80
+ info "Updating .ruby-version file with #{ruby_version}"
81
+ info "Updating .ruby-gemset file with #{gemset_name}"
82
+
83
+ ##============================================================##
84
+ ## Mettre à jour les fichiers dans `release_path`
85
+ ## The gem capistrano-bundler launch
86
+ ## bundle config --local deployment true with the release_path
87
+ ##============================================================##
88
+ within release_path do
89
+ execute :echo, ruby_version.to_s, ">", ".ruby-version"
90
+ execute :echo, gemset_name.to_s, ">", ".ruby-gemset"
91
+ end
92
+
93
+ ##============================================================##
94
+ ## To have the same version in the current path to lauch
95
+ ## bundle exec commands from the current path
96
+ ##============================================================##
97
+ within current_path do
98
+ execute :echo, ruby_version.to_s, ">", ".ruby-version"
99
+ execute :echo, gemset_name.to_s, ">", ".ruby-gemset"
100
+ end
101
+ end
102
+ end
68
103
  end
@@ -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.6".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.6
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