capistrano-upload-config 0.8.2 → 0.9.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 +5 -5
- data/README.md +1 -3
- data/capistrano-upload-config.gemspec +1 -1
- data/lib/capistrano/tasks/upload-config.rake +4 -4
- metadata +6 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 9d6e2a3a1e6d8b8229e6944f0bec54afa510947e0f348618d312fe41438a0131
|
|
4
|
+
data.tar.gz: 925c4b266e62f95f969334d7850661f1701c1fc8d0a2266407ffbb5b7214197a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '089395f9bfeb4102f6a908e101a287a1fb3f32b465bb6ba225824ee214776bef4922f4967fbb21f91f0e842d88016dbfb3adfb02132141de449e6042413d10f9'
|
|
7
|
+
data.tar.gz: 07250d4c75acf42cf27e6cefc297813e76a430a163f3f40b02146d4a2c702ced4f67a4745f4a4641192e85a960ca007dfd4b30406da38b359f4f13117a6cd776
|
data/README.md
CHANGED
|
@@ -77,9 +77,7 @@ This task creates the config on the remote server.
|
|
|
77
77
|
|
|
78
78
|
```shell
|
|
79
79
|
$ cap staging config:push
|
|
80
|
-
|
|
81
|
-
INFO Copied: config/example.yml-example to config/example.staging.yml
|
|
82
|
-
Created: config/foobar.staging.yml as empty file
|
|
80
|
+
INFO Uploading config config/database.staging.yml as config/database.yml
|
|
83
81
|
```
|
|
84
82
|
|
|
85
83
|
Can be used during a deploy, If your `:config_files` and `:linked_files` are going to be the same I suggest hooking in before
|
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = 'capistrano-upload-config'
|
|
7
|
-
spec.version = '0.
|
|
7
|
+
spec.version = '0.9.0'
|
|
8
8
|
spec.authors = 'Robert Coleman'
|
|
9
9
|
spec.email = 'github@robert.net.nz'
|
|
10
10
|
spec.description = %q{Capistrano 3.x tasks to upload shared config that is stored outside of SCM}
|
|
@@ -5,11 +5,11 @@ namespace :config do
|
|
|
5
5
|
run_locally do
|
|
6
6
|
fetch(:config_files).each do |config|
|
|
7
7
|
local_path = CapistranoUploadConfig::Helpers.get_config_name(config, fetch(:stage).to_s, fetch(:local_base_dir).to_s)
|
|
8
|
-
if File.
|
|
8
|
+
if File.exist?(local_path)
|
|
9
9
|
warn "Already Exists: #{local_path}"
|
|
10
10
|
else
|
|
11
11
|
example_suffix = fetch(:config_example_suffix, '')
|
|
12
|
-
if File.
|
|
12
|
+
if File.exist?("#{config}#{example_suffix}")
|
|
13
13
|
FileUtils.cp "#{config}#{example_suffix}", local_path
|
|
14
14
|
info "Copied: #{config}#{example_suffix} to #{local_path}"
|
|
15
15
|
else
|
|
@@ -26,7 +26,7 @@ namespace :config do
|
|
|
26
26
|
run_locally do
|
|
27
27
|
fetch(:config_files).each do |config|
|
|
28
28
|
local_path = CapistranoUploadConfig::Helpers.get_config_name(config, fetch(:stage).to_s, fetch(:local_base_dir).to_s)
|
|
29
|
-
if File.
|
|
29
|
+
if File.exist?(local_path)
|
|
30
30
|
info "Found: #{local_path}"
|
|
31
31
|
else
|
|
32
32
|
warn "Not found: #{local_path}"
|
|
@@ -43,7 +43,7 @@ namespace :config do
|
|
|
43
43
|
fetch(:config_files).each do |config|
|
|
44
44
|
local_path = CapistranoUploadConfig::Helpers.get_config_name(config, fetch(:stage).to_s, fetch(:local_base_dir).to_s)
|
|
45
45
|
server_name = use_stage_remotely ? local_path.split('/').last : config
|
|
46
|
-
if File.
|
|
46
|
+
if File.exist?(local_path)
|
|
47
47
|
info "Uploading config #{local_path} as #{server_name}"
|
|
48
48
|
upload! StringIO.new(IO.read(local_path)), File.join(shared_path, server_name)
|
|
49
49
|
else
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-upload-config
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Robert Coleman
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-02-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|
|
@@ -72,7 +72,7 @@ homepage: https://github.com/rjocoleman/capistrano-upload-config
|
|
|
72
72
|
licenses:
|
|
73
73
|
- MIT
|
|
74
74
|
metadata: {}
|
|
75
|
-
post_install_message:
|
|
75
|
+
post_install_message:
|
|
76
76
|
rdoc_options: []
|
|
77
77
|
require_paths:
|
|
78
78
|
- lib
|
|
@@ -87,9 +87,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
87
87
|
- !ruby/object:Gem::Version
|
|
88
88
|
version: '0'
|
|
89
89
|
requirements: []
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
signing_key:
|
|
90
|
+
rubygems_version: 3.3.7
|
|
91
|
+
signing_key:
|
|
93
92
|
specification_version: 4
|
|
94
93
|
summary: Capistrano 3.x tasks to upload shared config that is stored outside of SCM
|
|
95
94
|
test_files: []
|