jefferies_tube 1.6.5 → 1.6.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.ruby-version +1 -1
- data/CHANGELOG.md +4 -0
- data/lib/jefferies_tube/capistrano/rails.rb +2 -2
- data/lib/jefferies_tube/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: caff068fa6bfbefa05d86cd266529396142b804e6e10af91562b84cc821911ed
|
4
|
+
data.tar.gz: 8c4942d1eb54e987e969029e1e3cb2d2094064ebae79fc2ff728c854fdc2ea20
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '080248b9cbaa14f04ca9443db64a48ac06c244f47106d3c93b04fa445c6ab13d6a5003f47c0a276c7f8c0234b5850229d79556f770cf3efcf8a9ae711a89e996'
|
7
|
+
data.tar.gz: 431e102ca417962014e94022b83e4bcbd94da098b100e44264ca8c2b52065d91774a0590938c191d3440a36cafb88ce86fe1c278f59343aa4a69febf28e84c4b
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.2
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,10 @@ This is a [changelog](https://keepachangelog.com/en/1.0.0/).
|
|
5
5
|
This project attempts to follow [semantic versioning](https://semver.org/)
|
6
6
|
|
7
7
|
## Unreleased
|
8
|
+
|
9
|
+
## 1.6.6
|
10
|
+
* Fix to paths for remote cap tasks that caused execjs to fail in some circumstances
|
11
|
+
|
8
12
|
## 1.6.5
|
9
13
|
* Add Application Decision Record generator
|
10
14
|
|
@@ -52,8 +52,8 @@ namespace :rails do
|
|
52
52
|
|
53
53
|
def run_interactively(command)
|
54
54
|
port = host.port || 22
|
55
|
-
puts
|
56
|
-
exec
|
55
|
+
puts %Q(ssh #{host.user}@#{host} -p #{port} -t '/bin/bash -l -c "cd #{deploy_to}/current; #{command}"')
|
56
|
+
exec %Q(ssh #{host.user}@#{host} -p #{port} -t '/bin/bash -l -c "cd #{deploy_to}/current; #{command}"')
|
57
57
|
end
|
58
58
|
|
59
59
|
def rails_env
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jefferies_tube
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brian Samson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-12-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: awesome_print
|
@@ -225,7 +225,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
225
225
|
- !ruby/object:Gem::Version
|
226
226
|
version: '0'
|
227
227
|
requirements: []
|
228
|
-
rubygems_version: 3.
|
228
|
+
rubygems_version: 3.4.0.dev
|
229
229
|
signing_key:
|
230
230
|
specification_version: 4
|
231
231
|
summary: Ten Forward Consulting useful tools.
|