bosh_common 1.5.0.pre.1381 → 1.5.0.pre.1390

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Bosh
4
4
  module Common
5
- VERSION = '1.5.0.pre.1381'
5
+ VERSION = '1.5.0.pre.1390'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bosh_common
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0.pre.1381
4
+ version: 1.5.0.pre.1390
5
5
  prerelease: 6
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-11-20 00:00:00.000000000 Z
12
+ date: 2013-11-21 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: ! 'BOSH common
15
15
 
16
- e745e8'
16
+ 70ab6e'
17
17
  email: support@cloudfoundry.com
18
18
  executables: []
19
19
  extensions: []
@@ -30,7 +30,6 @@ files:
30
30
  - lib/common/properties/property_helper.rb
31
31
  - lib/common/properties/template_evaluation_context.rb
32
32
  - lib/common/retryable.rb
33
- - lib/common/runs_commands.rb
34
33
  - lib/common/ssl.rb
35
34
  - lib/common/thread_formatter.rb
36
35
  - lib/common/thread_pool.rb
@@ -1,12 +0,0 @@
1
- require 'common/exec'
2
-
3
- # Mixin to make it easy to inject an alternate command runner into a class that runs commands.
4
- module Bosh
5
- module RunsCommands
6
- def sh(command)
7
- (@command_runner || Bosh::Exec).sh(command)
8
- end
9
-
10
- attr_accessor :command_runner
11
- end
12
- end