winrm-fs 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -1
  3. data/changelog.md +3 -0
  4. data/winrm-fs.gemspec +1 -1
  5. metadata +9 -9
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 43664865f26197083cb673678b4c3bb025bab2d1
4
- data.tar.gz: dd8d7bef7354eac8b17f68d640b9c17fc62c6486
3
+ metadata.gz: 792f0251118012915aab0060bd1c1c8923034dd6
4
+ data.tar.gz: 9fea535f3b2ef5a608dc77cb9a0cd54e214b830a
5
5
  SHA512:
6
- metadata.gz: ce71234909e6381bda099cda4b7bbdae98bde75464348c82d6dca8458ba09fa9620f70ae11451da6c225d9d8b670c1956fef5f78c2fb034f9872a03574e4a70d
7
- data.tar.gz: e0a138ea8d3f2b77711e4097902eadf7c2ed591cb870d73a33b7f7fcbc17b83d5575c3e5381dcb2bae9a4d071f0b641278d7dce36ab51f838c4ff53951c2452f
6
+ metadata.gz: adc30364b4f7675a0a7ff73960f42b5a9b3b6a9f05b9536e4744622d58427f2c37dc64d5637bcba0bbbb472c69bf090dd88131e69311cc49d2feb4104b0c8b12
7
+ data.tar.gz: da4b3899e979ca26a133af3022c2c606637e400f4dd01e22092d2e2fd7957d0cfbc82b9fb4cedf5179a46512408e11b9e2f4d8bab9f602b9f4bab67421358c3b
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.0
1
+ 0.3.1
data/changelog.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # WinRM-fs Gem Changelog
2
2
 
3
+ # 0.3.1
4
+ - Widen logging version constraints to include 2.0 (matching WinRM core gem)
5
+
3
6
  # 0.3.0
4
7
  - Jetisons `CommandExecutor` now living in the core WinRM gem and swaps in implementation currently used in the winrm-transport gem. These changes should have little visible effect on current consumers of the `FileManager` class with these exceptions:
5
8
  - BREAKING CHANGE: When uploading a directory and the destination directory exists on the endpoint, the source base directory will be created below the destination directory on the endpoint and the source directory contents will be unzipped to that location. Prior to this release, the contents of the source directory would be unzipped to an existing destination directory without creating the source base directory. This new behavior is more consistent with SCP and other well known shell copy commands.
data/winrm-fs.gemspec CHANGED
@@ -27,7 +27,7 @@ Gem::Specification.new do |s|
27
27
  s.executables = ['rwinrmcp']
28
28
  s.required_ruby_version = '>= 1.9.0'
29
29
  s.add_runtime_dependency 'erubis', '~> 2.7'
30
- s.add_runtime_dependency 'logging', '~> 1.6', '>= 1.6.1'
30
+ s.add_runtime_dependency 'logging', ['>= 1.6.1', '< 3.0']
31
31
  s.add_runtime_dependency 'rubyzip', '~> 1.1'
32
32
  s.add_runtime_dependency 'winrm', '~> 1.5'
33
33
  s.add_development_dependency 'pry'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: winrm-fs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shawn Neal
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-01-20 00:00:00.000000000 Z
12
+ date: 2016-02-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: erubis
@@ -29,22 +29,22 @@ dependencies:
29
29
  name: logging
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
- - - "~>"
33
- - !ruby/object:Gem::Version
34
- version: '1.6'
35
32
  - - ">="
36
33
  - !ruby/object:Gem::Version
37
34
  version: 1.6.1
35
+ - - "<"
36
+ - !ruby/object:Gem::Version
37
+ version: '3.0'
38
38
  type: :runtime
39
39
  prerelease: false
40
40
  version_requirements: !ruby/object:Gem::Requirement
41
41
  requirements:
42
- - - "~>"
43
- - !ruby/object:Gem::Version
44
- version: '1.6'
45
42
  - - ">="
46
43
  - !ruby/object:Gem::Version
47
44
  version: 1.6.1
45
+ - - "<"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
48
  - !ruby/object:Gem::Dependency
49
49
  name: rubyzip
50
50
  requirement: !ruby/object:Gem::Requirement
@@ -198,7 +198,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
198
198
  version: '0'
199
199
  requirements: []
200
200
  rubyforge_project:
201
- rubygems_version: 2.4.8
201
+ rubygems_version: 2.5.2
202
202
  signing_key:
203
203
  specification_version: 4
204
204
  summary: WinRM File System