vagrant-winrm-s 0.0.2 → 0.0.3

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YWVhNDcyM2Q5YmYyOTBmZTEzNGJkMDY2NjJmYThmNWMxZTE5ODY2Mg==
4
+ ZmFlZjAxNDM2ZWQ2Y2U0ODI3YzNmZjY3NWMxMTBmNDJlNmY0MTA1Yw==
5
5
  data.tar.gz: !binary |-
6
- YjA5OTU0MGY4OTc0MGJhZWIzNGJkYTQwZWE5YTdlZWQwZDhlNjNiMw==
6
+ NTQ5NGZjYTUzYTE0MDRjYjYzNDkzN2IwNWVhYmY2MDE5MjI4YTY4ZA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ZTMxZmFkZmRkMmQzODFmMzFlNzg5YjUxMWQ5NzY5ZDg3NmFjYzBlMDVmMWRl
10
- OTUyYTVkMTU3YTk3MzY2MGFkOTZiOTNkYzlhOWJhMGQyMTQxZjU0YzRiYzk3
11
- Zjk1ZTFhZTE5OTYyMDkzNTQ0MDk1YWU4YWIyZDA2NTJjNTBjNDU=
9
+ MjQzOWQ3MGIzNjdhM2YxMTlhMGNlNDVkYTg2ZTgxYWJkZGNiMGM1ODg4MjRh
10
+ NDJmMzgzYmNiMzQxNDJiZWYyNTc0NzU0MDhiOTM2ZmRlNDQ5ZmIyNzAyMmUy
11
+ NTc0ZDE5ZWRiMjcwYTIxYTJlNTE2ODY5NTZiYTU1NDQ2OTIwNDc=
12
12
  data.tar.gz: !binary |-
13
- NjFkZGIyMjQ4ZmJhMGIyOWQxNDNiZjljYzUzNzg1YTZkZDdmODU3YjNkNDRm
14
- ZDMwYzk1NGYyZDQ2ZDgyNmRkNGM1YWE2NTQ2NTY0YjU5ZGU5ZTM0OTBjNWNm
15
- MjM3OTFmODg0OTI1N2MxYjIyZjY1Yzc3MTg0NmVlYmIxYzNiMzY=
13
+ YjgxMzVjOWUwZTdlNTJjNzAwNzhiNTlmYTUzYmQzM2RmZjZjMzQ5NTg5Njkz
14
+ NzQ0ZGRmNWQwNTc2NTJkNTE4N2ZiNzZlMTFiNjljMmJhYjJjMDdkMGFlMjhm
15
+ N2ExNWI0OGIxMmMxZGRiODM3Y2MyN2ExNDA1YWQ1Mjk3ZTRkODE=
data/Gemfile CHANGED
@@ -6,7 +6,7 @@ gemspec
6
6
  group :development do
7
7
  gem "vagrant",
8
8
  git: "https://github.com/mitchellh/vagrant.git",
9
- tag: "v1.7.2"
9
+ tag: "v1.7.4"
10
10
  gem "vagrant-spec", git: "https://github.com/mitchellh/vagrant-spec.git"
11
11
  end
12
12
 
@@ -1,3 +1,7 @@
1
+ ## 0.0.3
2
+
3
+ * Rev version of winrm-s that is being used to be compatible with Vagrant 1.7.4
4
+
1
5
  ## 0.0.2
2
6
 
3
7
  * Use the winrm helper to detect the correct port for communication.
@@ -8,7 +8,7 @@ module VagrantPlugins
8
8
 
9
9
  def initialize
10
10
  super
11
- @transport = UNSET_VALUE
11
+ @transport = UNSET_VALUE
12
12
  end
13
13
 
14
14
  def finalize!
@@ -22,8 +22,8 @@ module VagrantPlugins
22
22
  super(host, username, password, options)
23
23
 
24
24
  @logger = Log4r::Logger.new("vagrant::communication::winrmsshell")
25
- @transport = options[:transport] || :plaintext
26
- @protocol = (options[:transport] == :ssl) ? "https" : "http"
25
+ @transport = options[:transport] || :plaintext
26
+ @protocol = (options[:transport] == :ssl) ? "https" : "http"
27
27
  end
28
28
 
29
29
  protected
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module CommunicatorWinRMS
3
- VERSION = "0.0.2"
3
+ VERSION = "0.0.3"
4
4
  end
5
5
  end
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ["lib"]
20
20
 
21
- spec.add_dependency "winrm-s", "~>0.1.0"
21
+ spec.add_dependency "winrm-s", "~>0.3.1"
22
22
  spec.add_dependency "httpclient", "~>2.4.0"
23
23
 
24
24
  spec.add_development_dependency "bundler", "~> 1.7"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-winrm-s
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Norm MacLennan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-03-20 00:00:00.000000000 Z
11
+ date: 2015-08-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: winrm-s
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ~>
18
18
  - !ruby/object:Gem::Version
19
- version: 0.1.0
19
+ version: 0.3.1
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ~>
25
25
  - !ruby/object:Gem::Version
26
- version: 0.1.0
26
+ version: 0.3.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: httpclient
29
29
  requirement: !ruby/object:Gem::Requirement