winrm 1.3.1 → 1.3.2
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.
- data/Rakefile +2 -2
- data/VERSION +1 -1
- data/changelog.md +4 -0
- data/winrm.gemspec +3 -2
- metadata +7 -6
data/Rakefile
CHANGED
|
@@ -9,14 +9,14 @@ require 'bundler/gem_tasks'
|
|
|
9
9
|
Dir.chdir(File.expand_path('../', __FILE__))
|
|
10
10
|
|
|
11
11
|
RSpec::Core::RakeTask.new(:spec) do |task|
|
|
12
|
-
task.pattern = '
|
|
12
|
+
task.pattern = 'spec/*_spec.rb'
|
|
13
13
|
task.rspec_opts = ['--color', '-f documentation']
|
|
14
14
|
task.rspec_opts << '-tunit'
|
|
15
15
|
end
|
|
16
16
|
|
|
17
17
|
# Run the integration test suite
|
|
18
18
|
RSpec::Core::RakeTask.new(:integration) do |task|
|
|
19
|
-
task.pattern = '
|
|
19
|
+
task.pattern = 'spec/*_spec.rb'
|
|
20
20
|
task.rspec_opts = ['--color', '-f documentation']
|
|
21
21
|
task.rspec_opts << '-tintegration'
|
|
22
22
|
end
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.3.
|
|
1
|
+
1.3.2
|
data/changelog.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# WinRM Gem Changelog
|
|
2
2
|
|
|
3
|
+
# 1.3.2
|
|
4
|
+
- Add spec.license attribute to gemspec
|
|
5
|
+
- Bump RSpec dependency 3.0 to 3.2
|
|
6
|
+
|
|
3
7
|
# 1.3.1
|
|
4
8
|
- Fixed issue 129, long running commands could cause a stackoverflow exception
|
|
5
9
|
- Fixed use of sub! in run_command results in spurious capture/replacement of \& sequences
|
data/winrm.gemspec
CHANGED
|
@@ -11,12 +11,13 @@ Gem::Specification.new do |s|
|
|
|
11
11
|
|
|
12
12
|
s.author = ['Dan Wanek', 'Paul Morton']
|
|
13
13
|
s.email = ['dan.wanek@gmail.com', 'paul@themortonsonline.com']
|
|
14
|
-
s.homepage = '
|
|
14
|
+
s.homepage = 'https://github.com/WinRb/WinRM'
|
|
15
15
|
|
|
16
16
|
s.summary = 'Ruby library for Windows Remote Management'
|
|
17
17
|
s.description = <<-EOF
|
|
18
18
|
Ruby library for Windows Remote Management
|
|
19
19
|
EOF
|
|
20
|
+
s.license = 'Apache-2.0'
|
|
20
21
|
|
|
21
22
|
s.files = `git ls-files`.split(/\n/)
|
|
22
23
|
s.require_path = 'lib'
|
|
@@ -34,7 +35,7 @@ Gem::Specification.new do |s|
|
|
|
34
35
|
s.add_runtime_dependency 'nori', '~> 2.0'
|
|
35
36
|
s.add_runtime_dependency 'gyoku', '~> 1.0'
|
|
36
37
|
s.add_runtime_dependency 'builder', '>= 2.1.2'
|
|
37
|
-
s.add_development_dependency 'rspec', '~> 3.
|
|
38
|
+
s.add_development_dependency 'rspec', '~> 3.2.0'
|
|
38
39
|
s.add_development_dependency 'rake', '~> 10.3.2'
|
|
39
40
|
s.add_development_dependency 'rubocop', '~> 0.28.0'
|
|
40
41
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: winrm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -159,7 +159,7 @@ dependencies:
|
|
|
159
159
|
requirements:
|
|
160
160
|
- - ~>
|
|
161
161
|
- !ruby/object:Gem::Version
|
|
162
|
-
version: 3.
|
|
162
|
+
version: 3.2.0
|
|
163
163
|
type: :development
|
|
164
164
|
prerelease: false
|
|
165
165
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -167,7 +167,7 @@ dependencies:
|
|
|
167
167
|
requirements:
|
|
168
168
|
- - ~>
|
|
169
169
|
- !ruby/object:Gem::Version
|
|
170
|
-
version: 3.
|
|
170
|
+
version: 3.2.0
|
|
171
171
|
- !ruby/object:Gem::Dependency
|
|
172
172
|
name: rake
|
|
173
173
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -254,8 +254,9 @@ files:
|
|
|
254
254
|
- spec/winrm_primitives_spec.rb
|
|
255
255
|
- spec/wql_spec.rb
|
|
256
256
|
- winrm.gemspec
|
|
257
|
-
homepage:
|
|
258
|
-
licenses:
|
|
257
|
+
homepage: https://github.com/WinRb/WinRM
|
|
258
|
+
licenses:
|
|
259
|
+
- Apache-2.0
|
|
259
260
|
post_install_message:
|
|
260
261
|
rdoc_options:
|
|
261
262
|
- -x
|
|
@@ -278,7 +279,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
278
279
|
version: '0'
|
|
279
280
|
segments:
|
|
280
281
|
- 0
|
|
281
|
-
hash: -
|
|
282
|
+
hash: -3678902895359859195
|
|
282
283
|
requirements: []
|
|
283
284
|
rubyforge_project:
|
|
284
285
|
rubygems_version: 1.8.23.2
|