dlss-capistrano 4.1.2 → 4.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/dlss-capistrano.gemspec +1 -1
- data/lib/dlss/capistrano/tasks/strscan.rake +12 -0
- metadata +8 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 901bfd4d7fc52ef598ccc895d59ab656abc1db5948f9b5284f4bc8ec1207ffcc
|
|
4
|
+
data.tar.gz: be31f24d058ecd802089e529bcfe1b9b5fde124dd97076ab83b10e6304281d19
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7bd2d019fe195682620b150ebe4b1254496121634a3bff59371cdc078f4b15342853205c925cbf8b2b5a7a968dd935f9c3c567ca3064b0a5d436f93fa41fd241
|
|
7
|
+
data.tar.gz: 55647ad42dee03eab7cc98f334892d78f312b4cfb9fb9ca1576816b46970535738f9abd1380ae71174c317275771e38c09b21c484e96385e260dbe66856f290c
|
data/dlss-capistrano.gemspec
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
desc "ssh to the current directory on the server"
|
|
2
|
+
task :update_global_strscan do
|
|
3
|
+
on roles(:app) do |host|
|
|
4
|
+
strscan_version = within release_path do
|
|
5
|
+
capture(:bundle, 'exec', 'ruby', '-e', '"puts Gem::Specification.find_by_name(\'strscan\').version"')
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
execute "gem install strscan --silent --no-document -v #{strscan_version}"
|
|
9
|
+
end
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
before :'passenger:restart', :update_global_strscan
|
metadata
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dlss-capistrano
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Beer
|
|
8
8
|
- Mike Giarlo
|
|
9
|
-
autorequire:
|
|
9
|
+
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2022-
|
|
12
|
+
date: 2022-06-23 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: capistrano
|
|
@@ -95,12 +95,13 @@ files:
|
|
|
95
95
|
- lib/dlss/capistrano/tasks/sneakers_systemd.rake
|
|
96
96
|
- lib/dlss/capistrano/tasks/ssh.rake
|
|
97
97
|
- lib/dlss/capistrano/tasks/ssh_check.rake
|
|
98
|
+
- lib/dlss/capistrano/tasks/strscan.rake
|
|
98
99
|
- lib/lyberteam-capistrano-devel.rb
|
|
99
|
-
homepage:
|
|
100
|
+
homepage:
|
|
100
101
|
licenses:
|
|
101
102
|
- Apache-2.0
|
|
102
103
|
metadata: {}
|
|
103
|
-
post_install_message:
|
|
104
|
+
post_install_message:
|
|
104
105
|
rdoc_options: []
|
|
105
106
|
require_paths:
|
|
106
107
|
- lib
|
|
@@ -115,8 +116,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
115
116
|
- !ruby/object:Gem::Version
|
|
116
117
|
version: 1.3.6
|
|
117
118
|
requirements: []
|
|
118
|
-
rubygems_version: 3.
|
|
119
|
-
signing_key:
|
|
119
|
+
rubygems_version: 3.3.7
|
|
120
|
+
signing_key:
|
|
120
121
|
specification_version: 4
|
|
121
122
|
summary: Capistrano recipes for use in SUL/DLSS projects
|
|
122
123
|
test_files: []
|