nanoc-deploying 1.0.2 → 1.0.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 56dfc2781a9a44477cb24abe7e25d93f4bacaa699043d995e0b64217b820353d
4
- data.tar.gz: 5115f6c3ea59409af645b79f0a8dde7b582a7ffc6a5341e6e0f77b40e6ac322b
3
+ metadata.gz: a4deeacd91c2a3b228d2a17dfe1e36b206630170fd1af913f7d35d61b2246b9b
4
+ data.tar.gz: af94b99608eaa89491a455c1fb924d873f7e9a4617a8fe23dbb842c3a3338be8
5
5
  SHA512:
6
- metadata.gz: 25af2f26c24a7eb3380dc1cc0e764b4a00cbb6118d3e42a6487cdd45399261e47f48e9e9828d58889ac6ab5287e55439f00354c80a29d22ddec534c1bc3e01fb
7
- data.tar.gz: 0f79cb31ec810c6ce992ef113d6122267875785dadfada38beb7aae5bd1fc0f393966c59fa82d89a9aa783f0dea714da1ea994702b7331b06ad225fae9d648aa
6
+ metadata.gz: 00330b4826714c0c822894e2bd6d4e2cd796f9793432f86bd9a7c31310d071149149d6c61455cac30282cdee8f4f6057bb1c35187c00918bf734ab7402900569
7
+ data.tar.gz: 5ad8ff954c98a8317c5e251cb13face6a84a8063ad7e7fc432a326669b7c7df8d2668ed9c7e3d8842e4e9a4e08a7b23c2148da1860a4ba9ee186cbeace137eb4
data/NEWS.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # nanoc-deploying news
2
2
 
3
+ ## 1.0.3 (2025-10-30)
4
+
5
+ Enhancements:
6
+
7
+ - Made rsync deployer print rsync output (#1764)
8
+
3
9
  ## 1.0.2 (2022-05-28)
4
10
 
5
11
  - Made the Git deployer perform `git push` even if there is nothing to commit (#1575)
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # nanoc-deploying
2
2
 
3
- This provides the `deploy` command and associated functionality for [Nanoc](https://nanoc.ws).
3
+ This provides the `deploy` command and associated functionality for [Nanoc](https://nanoc.app).
4
4
 
5
- For details, see the [Deploying Nanoc sites](https://nanoc.ws/doc/deploying/) chapter of the Nanoc documentation.
5
+ For details, see the [Deploying Nanoc sites](https://nanoc.app/doc/deploying/) chapter of the Nanoc documentation.
@@ -102,11 +102,11 @@ module Nanoc
102
102
  end
103
103
 
104
104
  def run_cmd(cmd, dry_run: false)
105
- TTY::Command.new(**tty_command_options).run(*cmd, dry_run: dry_run)
105
+ TTY::Command.new(**tty_command_options).run(*cmd, dry_run:)
106
106
  end
107
107
 
108
108
  def run_cmd_unless_dry(cmd)
109
- run_cmd(cmd, dry_run: dry_run)
109
+ run_cmd(cmd, dry_run:)
110
110
  end
111
111
 
112
112
  def clean_repo?
@@ -55,7 +55,7 @@ module Nanoc
55
55
  # Run
56
56
  if dry_run
57
57
  warn 'Performing a dry-run; no actions will actually be performed'
58
- run_shell_cmd(['echo', 'rsync', options, src, dst].flatten)
58
+ run_shell_cmd(['rsync', '--dry-run', options, src, dst].flatten)
59
59
  else
60
60
  run_shell_cmd(['rsync', options, src, dst].flatten)
61
61
  end
@@ -64,7 +64,7 @@ module Nanoc
64
64
  private
65
65
 
66
66
  def run_shell_cmd(cmd)
67
- TTY::Command.new(printer: :null).run(*cmd)
67
+ TTY::Command.new(uuid: false).run(*cmd)
68
68
  end
69
69
  end
70
70
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Nanoc
4
4
  module Deploying
5
- VERSION = '1.0.2'
5
+ VERSION = '1.0.3'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nanoc-deploying
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Denis Defreyne
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2022-05-28 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: nanoc-checking
@@ -83,12 +82,12 @@ files:
83
82
  - lib/nanoc/deploying/deployers/git.rb
84
83
  - lib/nanoc/deploying/deployers/rsync.rb
85
84
  - lib/nanoc/deploying/version.rb
86
- homepage: https://nanoc.ws/
85
+ homepage: https://nanoc.app/
87
86
  licenses:
88
87
  - MIT
89
88
  metadata:
90
89
  rubygems_mfa_required: 'true'
91
- post_install_message:
90
+ source_code_uri: https://github.com/nanoc/nanoc/tree/nanoc-deploying-v1.0.3/nanoc-deploying
92
91
  rdoc_options: []
93
92
  require_paths:
94
93
  - lib
@@ -96,15 +95,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
96
95
  requirements:
97
96
  - - ">="
98
97
  - !ruby/object:Gem::Version
99
- version: '2.6'
98
+ version: '3.2'
100
99
  required_rubygems_version: !ruby/object:Gem::Requirement
101
100
  requirements:
102
101
  - - ">="
103
102
  - !ruby/object:Gem::Version
104
103
  version: '0'
105
104
  requirements: []
106
- rubygems_version: 3.3.14
107
- signing_key:
105
+ rubygems_version: 3.7.2
108
106
  specification_version: 4
109
107
  summary: Deploying support for Nanoc
110
108
  test_files: []