specinfra 2.0.0.beta30 → 2.0.0.beta31

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
  SHA1:
3
- metadata.gz: ea053126dff9d347b4852ece95ef391bbabdd19b
4
- data.tar.gz: 60e977706ddeed671ca7fabe86d8b420cff3f987
3
+ metadata.gz: b2a1bd40a04d44b67623cb28435448880491f37c
4
+ data.tar.gz: 83162af96a81794b41a31f66205d0c14ccf85394
5
5
  SHA512:
6
- metadata.gz: 0ae854501b96d2808b8576408451795ff2768caf0921c727443b75746bd466d250901c1b5db371a9de53576c271bb70f2ab7594d55f58916a130e2c5cdef4e01
7
- data.tar.gz: 491a50ae31d09282ba7dc7f925681375661b6091a5e0e745760cd61917ff2cd8e20bd5923860654520db06994b7b050f7bde6ca1e1b878c97a2f4f4569d71051
6
+ metadata.gz: ef8fe7cd152d0a92c7ac37af804c29fe6352ab7c475a0b529d7f6e243f891a0393773c416a46b86bb5dcb89c421aa3fa15c2247b7f26db33a7e57966b76e98fa
7
+ data.tar.gz: 1742365c04717af0b1775969959926bcf4556a9f140a4f07206ad76b63fd4cb39d8b0298a4936e95be8b353de5e4c503d660f8220b7b1928c2fd2211ba513347
data/lib/specinfra.rb CHANGED
@@ -5,6 +5,7 @@ require 'specinfra/command'
5
5
  require 'specinfra/command_result'
6
6
  require 'specinfra/configuration'
7
7
  require 'specinfra/runner'
8
+ require 'specinfra/processor'
8
9
 
9
10
  include Specinfra
10
11
 
@@ -1,6 +1,5 @@
1
1
  require 'singleton'
2
2
  require 'specinfra/command_result'
3
- require 'specinfra/command/processor'
4
3
 
5
4
  module Specinfra
6
5
  module Backend
@@ -1,4 +1,4 @@
1
- module Specinfra::Command
1
+ module Specinfra
2
2
  class Processor
3
3
  def self.method_missing(meth, *args, &block)
4
4
  Specinfra.backend.send(meth, *args)
@@ -4,7 +4,7 @@ module Specinfra
4
4
  if os.include?(:family) && os[:family] == 'windows'
5
5
  Specinfra.backend.send(meth, *args)
6
6
  else
7
- Specinfra::Command::Processor.send(meth, *args)
7
+ Specinfra::Processor.send(meth, *args)
8
8
  end
9
9
  end
10
10
  end
@@ -1,3 +1,3 @@
1
1
  module Specinfra
2
- VERSION = "2.0.0.beta30"
2
+ VERSION = "2.0.0.beta31"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: specinfra
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.beta30
4
+ version: 2.0.0.beta31
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gosuke Miyashita
@@ -234,7 +234,6 @@ files:
234
234
  - lib/specinfra/command/plamo/base.rb
235
235
  - lib/specinfra/command/plamo/base/package.rb
236
236
  - lib/specinfra/command/plamo/base/service.rb
237
- - lib/specinfra/command/processor.rb
238
237
  - lib/specinfra/command/redhat.rb
239
238
  - lib/specinfra/command/redhat/base.rb
240
239
  - lib/specinfra/command/redhat/base/file.rb
@@ -315,6 +314,7 @@ files:
315
314
  - lib/specinfra/helper/os.rb
316
315
  - lib/specinfra/helper/properties.rb
317
316
  - lib/specinfra/helper/set.rb
317
+ - lib/specinfra/processor.rb
318
318
  - lib/specinfra/properties.rb
319
319
  - lib/specinfra/runner.rb
320
320
  - lib/specinfra/version.rb