ruby_gpg2 0.13.0.pre.3 → 0.13.0.pre.4

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: d5d5fe71b873cf10de23efe27ace7781280161bae64a935a2a6fe1edab6f6913
4
- data.tar.gz: 90a447a02727eac385c6b31ffe30e769ea5ca57f5bf88153510918ce188738be
3
+ metadata.gz: 0aefd4ae05c469e6e0997b2729ac2e0dc99446410692c668dee90d2a0c675ac7
4
+ data.tar.gz: 1bd4cb0ba858027a87e943cc3baa6bf62d7ea8e928379fdcc7668de4050a09d4
5
5
  SHA512:
6
- metadata.gz: 8925030ad9395d0ca2b60ba7eb14ff40e857b4307672834df35e049876b5a013a0319ed209cda361b0c9b9b409949b937bc5ec343704ee0b98d3e2d920ce6c24
7
- data.tar.gz: a73a7760e434bef99a4936b31f321ece514294d3565258972f130c25f70ba8fb09354db534a837780072cd65537dafd808e70a81ec79d4b2a4745b9526e37cd3
6
+ metadata.gz: 23426d81bf168b192b1646d9267141b639d95686be33a4f4a46af7d07dbbea24fc0d7165d788271f629597e8cf7b6495f72a140d0091ce2e8204a4e472fe8968
7
+ data.tar.gz: 22926aaeb9dd4d3b912a811f9ec5435b8fdc90920f8c7067200b9d8e59aa6c5d1d3afb7821b5c0cdd337c90d7c4151f0661303fa4bfaf0f44595ebbabd3a7d38
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ruby_gpg2 (0.13.0.pre.3)
4
+ ruby_gpg2 (0.13.0.pre.4)
5
5
  lino (>= 4.1)
6
6
 
7
7
  GEM
@@ -60,8 +60,8 @@ GEM
60
60
  faraday (>= 1, < 3)
61
61
  sawyer (~> 0.9)
62
62
  open4 (1.3.4)
63
- parallel (1.25.1)
64
- parser (3.3.4.0)
63
+ parallel (1.26.3)
64
+ parser (3.3.5.0)
65
65
  ast (~> 2.4.1)
66
66
  racc
67
67
  public_suffix (6.0.1)
@@ -99,8 +99,6 @@ GEM
99
99
  sshkey (~> 2.0)
100
100
  rchardet (1.8.0)
101
101
  regexp_parser (2.9.2)
102
- rexml (3.3.6)
103
- strscan
104
102
  rspec (3.13.0)
105
103
  rspec-core (~> 3.13.0)
106
104
  rspec-expectations (~> 3.13.0)
@@ -114,22 +112,21 @@ GEM
114
112
  diff-lcs (>= 1.2.0, < 2.0)
115
113
  rspec-support (~> 3.13.0)
116
114
  rspec-support (3.13.1)
117
- rubocop (1.65.1)
115
+ rubocop (1.66.1)
118
116
  json (~> 2.3)
119
117
  language_server-protocol (>= 3.17.0)
120
118
  parallel (~> 1.10)
121
119
  parser (>= 3.3.0.2)
122
120
  rainbow (>= 2.2.2, < 4.0)
123
121
  regexp_parser (>= 2.4, < 3.0)
124
- rexml (>= 3.2.5, < 4.0)
125
- rubocop-ast (>= 1.31.1, < 2.0)
122
+ rubocop-ast (>= 1.32.2, < 2.0)
126
123
  ruby-progressbar (~> 1.7)
127
124
  unicode-display_width (>= 2.4.0, < 3.0)
128
- rubocop-ast (1.32.0)
125
+ rubocop-ast (1.32.3)
129
126
  parser (>= 3.3.1.0)
130
127
  rubocop-rake (0.6.0)
131
128
  rubocop (~> 1.0)
132
- rubocop-rspec (3.0.4)
129
+ rubocop-rspec (3.0.5)
133
130
  rubocop (~> 1.61)
134
131
  ruby-progressbar (1.13.0)
135
132
  ruby_git_crypt (0.2.0.pre.2)
@@ -146,7 +143,6 @@ GEM
146
143
  simplecov-html (0.12.3)
147
144
  simplecov_json_formatter (0.1.4)
148
145
  sshkey (2.0.0)
149
- strscan (3.1.0)
150
146
  tzinfo (2.0.6)
151
147
  concurrent-ruby (~> 1.0)
152
148
  unicode-display_width (2.5.0)
@@ -8,12 +8,18 @@ module RubyGPG2
8
8
 
9
9
  def parameter_defaults(parameters)
10
10
  without_tty = parameters[:without_tty]
11
- super.merge(without_tty: without_tty.nil? ? true : without_tty)
11
+ quiet = parameters[:quiet] == true
12
+ super.merge(
13
+ without_tty: without_tty.nil? ? true : without_tty,
14
+ quiet:
15
+ )
12
16
  end
13
17
 
18
+ # rubocop:disable Metrics/MethodLength
14
19
  def configure_command(builder, parameters)
15
20
  home_directory = parameters[:home_directory]
16
21
  without_tty = parameters[:without_tty]
22
+ quiet = parameters[:quiet]
17
23
 
18
24
  b = super
19
25
  if home_directory
@@ -22,8 +28,10 @@ module RubyGPG2
22
28
  )
23
29
  end
24
30
  b = b.with_flag('--no-tty') if without_tty
31
+ b = b.with_flag('--quiet') if quiet
25
32
  b
26
33
  end
34
+ # rubocop:enable Metrics/MethodLength
27
35
  end
28
36
  end
29
37
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RubyGPG2
4
- VERSION = '0.13.0.pre.3'
4
+ VERSION = '0.13.0.pre.4'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_gpg2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0.pre.3
4
+ version: 0.13.0.pre.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - InfraBlocks Maintainers
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-08-28 00:00:00.000000000 Z
11
+ date: 2024-09-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: lino