fluent_command_builder 0.9.5 → 0.9.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,8 +3,16 @@ require File.expand_path(File.dirname(__FILE__) + '/executor_base')
3
3
  module FluentCommandBuilder
4
4
  class BackticksExecutor < ExecutorBase
5
5
 
6
+ attr_accessor :password_formatter, :passwords
7
+
8
+ def initialize
9
+ @password_formatter = FluentCommandBuilder.password_formatter
10
+ @passwords = []
11
+ end
12
+
6
13
  def do_execute(command)
7
- `#{command}`
14
+ output = `#{command}`
15
+ @password_formatter.format output, @passwords
8
16
  end
9
17
 
10
18
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent_command_builder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.5
4
+ version: 0.9.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2012-12-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
16
- requirement: &70238159400240 !ruby/object:Gem::Requirement
16
+ requirement: &70106697173600 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70238159400240
24
+ version_requirements: *70106697173600
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: term-ansicolor
27
- requirement: &70238159399800 !ruby/object:Gem::Requirement
27
+ requirement: &70106697173160 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,7 +32,7 @@ dependencies:
32
32
  version: '0'
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *70238159399800
35
+ version_requirements: *70106697173160
36
36
  description: Fluent Command Builder makes building command lines easy and clean.
37
37
  email: matthew-github@matthewriley.name
38
38
  executables: []