realityforge-knife-windows 0.5.16 → 0.5.17

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/.gitignore CHANGED
@@ -1,4 +1,4 @@
1
1
  *.gem
2
2
  .bundle
3
- Gemfile.lock
4
3
  pkg/*
4
+ /*.iml
File without changes
data/Gemfile.lock ADDED
@@ -0,0 +1,115 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ realityforge-knife-windows (0.5.16)
5
+ em-winrm (= 0.5.4)
6
+
7
+ GEM
8
+ remote: http://rubygems.org/
9
+ specs:
10
+ akami (1.2.0)
11
+ gyoku (>= 0.4.0)
12
+ nokogiri (>= 1.4.0)
13
+ builder (3.2.0)
14
+ chef (11.4.2)
15
+ erubis
16
+ highline (>= 1.6.9)
17
+ json (>= 1.4.4, <= 1.7.7)
18
+ mixlib-authentication (>= 1.3.0)
19
+ mixlib-cli (~> 1.3.0)
20
+ mixlib-config (>= 1.1.2)
21
+ mixlib-log (>= 1.3.0)
22
+ mixlib-shellout
23
+ net-ssh (~> 2.6)
24
+ net-ssh-multi (~> 1.1.0)
25
+ ohai (>= 0.6.0)
26
+ rest-client (>= 1.0.4, < 1.7.0)
27
+ yajl-ruby (~> 1.1)
28
+ diff-lcs (1.2.4)
29
+ em-winrm (0.5.4)
30
+ eventmachine (= 1.0.0.beta.3)
31
+ mixlib-log (>= 1.3.0)
32
+ uuidtools (~> 2.1.1)
33
+ winrm (~> 1.1.0)
34
+ erubis (2.7.0)
35
+ eventmachine (1.0.0.beta.3)
36
+ ffi (1.8.1)
37
+ gssapi (1.0.3)
38
+ ffi (>= 1.0.1)
39
+ gyoku (1.0.0)
40
+ builder (>= 2.1.2)
41
+ highline (1.6.18)
42
+ httpclient (2.2.0.2)
43
+ httpi (0.9.7)
44
+ rack
45
+ ipaddress (0.8.0)
46
+ json (1.7.7)
47
+ little-plugger (1.1.3)
48
+ logging (1.6.2)
49
+ little-plugger (>= 1.1.3)
50
+ mime-types (1.23)
51
+ mixlib-authentication (1.3.0)
52
+ mixlib-log
53
+ mixlib-cli (1.3.0)
54
+ mixlib-config (1.1.2)
55
+ mixlib-log (1.6.0)
56
+ mixlib-shellout (1.1.0)
57
+ net-ssh (2.6.7)
58
+ net-ssh-gateway (1.2.0)
59
+ net-ssh (>= 2.6.5)
60
+ net-ssh-multi (1.1)
61
+ net-ssh (>= 2.1.4)
62
+ net-ssh-gateway (>= 0.99.0)
63
+ nokogiri (1.5.9)
64
+ nori (1.1.5)
65
+ ohai (6.16.0)
66
+ ipaddress
67
+ mixlib-cli
68
+ mixlib-config
69
+ mixlib-log
70
+ mixlib-shellout
71
+ systemu
72
+ yajl-ruby
73
+ rack (1.5.2)
74
+ rest-client (1.6.7)
75
+ mime-types (>= 1.16)
76
+ rspec (2.13.0)
77
+ rspec-core (~> 2.13.0)
78
+ rspec-expectations (~> 2.13.0)
79
+ rspec-mocks (~> 2.13.0)
80
+ rspec-core (2.13.1)
81
+ rspec-expectations (2.13.0)
82
+ diff-lcs (>= 1.1.3, < 2.0)
83
+ rspec-mocks (2.13.1)
84
+ ruby-wmi (0.4.0)
85
+ rubyntlm (0.1.1)
86
+ savon (0.9.5)
87
+ akami (~> 1.0)
88
+ builder (>= 2.1.2)
89
+ gyoku (>= 0.4.0)
90
+ httpi (~> 0.9)
91
+ nokogiri (>= 1.4.0)
92
+ nori (~> 1.0)
93
+ wasabi (~> 1.0)
94
+ systemu (2.5.2)
95
+ uuidtools (2.1.3)
96
+ wasabi (1.0.0)
97
+ nokogiri (>= 1.4.0)
98
+ winrm (1.1.2)
99
+ gssapi (~> 1.0.0)
100
+ httpclient (~> 2.2.0.2)
101
+ logging (~> 1.6.1)
102
+ nokogiri (~> 1.5.0)
103
+ rubyntlm (~> 0.1.1)
104
+ savon (= 0.9.5)
105
+ uuidtools (~> 2.1.2)
106
+ yajl-ruby (1.1.0)
107
+
108
+ PLATFORMS
109
+ ruby
110
+
111
+ DEPENDENCIES
112
+ chef
113
+ realityforge-knife-windows!
114
+ rspec
115
+ ruby-wmi
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
15
15
  s.description = s.summary
16
16
 
17
17
  s.required_ruby_version = ">= 1.9.1"
18
- s.add_dependency "em-winrm", "= 0.5.4"
18
+ s.add_dependency "realityforge-em-winrm", "= 0.5.5"
19
19
 
20
20
  s.files = `git ls-files`.split("\n")
21
21
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
@@ -1,6 +1,6 @@
1
1
  module Knife
2
2
  module Windows
3
- VERSION = "0.5.16"
3
+ VERSION = "0.5.17"
4
4
  MAJOR, MINOR, TINY = VERSION.split('.')
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: realityforge-knife-windows
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.16
4
+ version: 0.5.17
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,16 +9,16 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-03-19 00:00:00.000000000 Z
12
+ date: 2013-04-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
- name: em-winrm
15
+ name: realityforge-em-winrm
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - '='
20
20
  - !ruby/object:Gem::Version
21
- version: 0.5.4
21
+ version: 0.5.5
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - '='
28
28
  - !ruby/object:Gem::Version
29
- version: 0.5.4
29
+ version: 0.5.5
30
30
  description: Plugin that adds functionality to Chef's Knife CLI for configuring/interacting
31
31
  with nodes running Microsoft Windows
32
32
  email:
@@ -38,10 +38,11 @@ extra_rdoc_files:
38
38
  - LICENSE
39
39
  files:
40
40
  - .gitignore
41
- - .rbenv-version
42
41
  - .rspec
42
+ - .ruby-version
43
43
  - CHANGELOG
44
44
  - Gemfile
45
+ - Gemfile.lock
45
46
  - LICENSE
46
47
  - README.rdoc
47
48
  - Rakefile