ruby_gpg2 0.1.0.pre.13 → 0.1.0.pre.14

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bdc48fbd38f00f4db65a315ea2662da69bf719c9133bbea87db91a24b85dc470
4
- data.tar.gz: 309cf5c12ba74e33c0d4a2d465f1d783972972df56d029134791844499c75b15
3
+ metadata.gz: 88a08063c06520ca410cd2f9c97cd630b9b3aa6bf6f8c85d9bf119b12776d2c7
4
+ data.tar.gz: 6592f3a48800dad1f99e7ba1700abf3bb50ba143ef2901209a9fd06264cc240e
5
5
  SHA512:
6
- metadata.gz: 68574ff80148908ed23fc999b05072a41742b4cec083ddb79135898bd160d57bb9c31c4468a2ec7923934d90a40dc39c86f77c5750c2aea4aaf45137d853d5da
7
- data.tar.gz: cbe2ca56a501372a5f768f944cd94b1aaffd82abbac8c5a30fdae029f043ca815c7d8af06ccc8521fbcfeee1f40d812bebeb14fa3edbfdf5d160bdc71fcea315
6
+ metadata.gz: f8bb60f31f214609daac36c04ede22f5c4d72ad2872a82023ab01271cae77e7da0ab06ed253d0b933c9915070d22aa638103df7cbb04dfb494a956727b674c88
7
+ data.tar.gz: 6867a2278de034eedfd79f946593f7b04229f8f0c07d3cc3a6e63172367a78395a6cc3c173cb10d099956ebb224b8cf52fbb665fa716f3b5919e7c90e3fe1132
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ruby_gpg2 (0.1.0.pre.13)
4
+ ruby_gpg2 (0.1.0.pre.14)
5
5
  lino (= 1.3.0)
6
6
 
7
7
  GEM
@@ -5,6 +5,7 @@ require_relative 'mixins/global_config'
5
5
  require_relative 'mixins/batch_config'
6
6
  require_relative 'mixins/passphrase_config'
7
7
  require_relative 'mixins/pinentry_config'
8
+ require_relative 'mixins/status_config'
8
9
  require_relative 'mixins/without_passphrase'
9
10
 
10
11
  module RubyGPG2
@@ -14,6 +15,7 @@ module RubyGPG2
14
15
  include Mixins::BatchConfig
15
16
  include Mixins::PassphraseConfig
16
17
  include Mixins::PinentryConfig
18
+ include Mixins::StatusConfig
17
19
  include Mixins::WithoutPassphrase
18
20
 
19
21
  def configure_command(builder, opts)
@@ -0,0 +1,16 @@
1
+ module RubyGPG2
2
+ module Commands
3
+ module Mixins
4
+ module StatusConfig
5
+ def configure_command(builder, opts)
6
+ status_file = opts[:status_file]
7
+
8
+ builder = super(builder, opts)
9
+ builder = builder.with_option(
10
+ '--status-file', status_file, quoting: '"') if status_file
11
+ builder
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
@@ -1,3 +1,3 @@
1
1
  module RubyGPG2
2
- VERSION = '0.1.0.pre.13'
2
+ VERSION = '0.1.0.pre.14'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_gpg2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.pre.13
4
+ version: 0.1.0.pre.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Toby Clemson
@@ -171,6 +171,7 @@ files:
171
171
  - lib/ruby_gpg2/commands/mixins/global_config.rb
172
172
  - lib/ruby_gpg2/commands/mixins/passphrase_config.rb
173
173
  - lib/ruby_gpg2/commands/mixins/pinentry_config.rb
174
+ - lib/ruby_gpg2/commands/mixins/status_config.rb
174
175
  - lib/ruby_gpg2/commands/mixins/with_captured_output.rb
175
176
  - lib/ruby_gpg2/commands/mixins/without_passphrase.rb
176
177
  - lib/ruby_gpg2/key.rb