mixlib-shellout 2.2.3-universal-mingw32 → 2.2.5-universal-mingw32
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 +4 -4
- data/Gemfile +12 -12
- data/LICENSE +201 -201
- data/README.md +54 -54
- data/Rakefile +24 -24
- data/lib/mixlib/shellout.rb +357 -353
- data/lib/mixlib/shellout/exceptions.rb +7 -7
- data/lib/mixlib/shellout/unix.rb +415 -415
- data/lib/mixlib/shellout/version.rb +5 -5
- data/lib/mixlib/shellout/windows.rb +362 -362
- data/lib/mixlib/shellout/windows/core_ext.rb +371 -371
- data/mixlib-shellout-windows.gemspec +8 -8
- data/mixlib-shellout.gemspec +24 -24
- metadata +3 -4
@@ -1,8 +1,8 @@
|
|
1
|
-
gemspec = eval(File.read(File.expand_path("../mixlib-shellout.gemspec", __FILE__)))
|
2
|
-
|
3
|
-
gemspec.platform = Gem::Platform.new(["universal", "mingw32"])
|
4
|
-
|
5
|
-
gemspec.add_dependency "win32-process", "~> 0.8.2"
|
6
|
-
gemspec.add_dependency "wmi-lite", "~> 1.0"
|
7
|
-
|
8
|
-
gemspec
|
1
|
+
gemspec = eval(File.read(File.expand_path("../mixlib-shellout.gemspec", __FILE__)))
|
2
|
+
|
3
|
+
gemspec.platform = Gem::Platform.new(["universal", "mingw32"])
|
4
|
+
|
5
|
+
gemspec.add_dependency "win32-process", "~> 0.8.2"
|
6
|
+
gemspec.add_dependency "wmi-lite", "~> 1.0"
|
7
|
+
|
8
|
+
gemspec
|
data/mixlib-shellout.gemspec
CHANGED
@@ -1,24 +1,24 @@
|
|
1
|
-
$:.unshift(File.dirname(__FILE__) + '/lib')
|
2
|
-
require 'mixlib/shellout/version'
|
3
|
-
|
4
|
-
Gem::Specification.new do |s|
|
5
|
-
s.name = 'mixlib-shellout'
|
6
|
-
s.version = Mixlib::ShellOut::VERSION
|
7
|
-
s.platform = Gem::Platform::RUBY
|
8
|
-
s.extra_rdoc_files = ["README.md", "LICENSE" ]
|
9
|
-
s.summary = "Run external commands on Unix or Windows"
|
10
|
-
s.description = s.summary
|
11
|
-
s.author = "Opscode"
|
12
|
-
s.email = "info@opscode.com"
|
13
|
-
s.homepage = "http://wiki.opscode.com/"
|
14
|
-
|
15
|
-
s.required_ruby_version = ">= 1.9.3"
|
16
|
-
|
17
|
-
s.add_development_dependency "rspec", "~> 3.0"
|
18
|
-
|
19
|
-
s.bindir = "bin"
|
20
|
-
s.executables = []
|
21
|
-
s.require_path = 'lib'
|
22
|
-
s.files = %w(Gemfile Rakefile LICENSE README.md) + Dir.glob("*.gemspec") +
|
23
|
-
Dir.glob("lib/**/*", File::FNM_DOTMATCH).reject {|f| File.directory?(f) }
|
24
|
-
end
|
1
|
+
$:.unshift(File.dirname(__FILE__) + '/lib')
|
2
|
+
require 'mixlib/shellout/version'
|
3
|
+
|
4
|
+
Gem::Specification.new do |s|
|
5
|
+
s.name = 'mixlib-shellout'
|
6
|
+
s.version = Mixlib::ShellOut::VERSION
|
7
|
+
s.platform = Gem::Platform::RUBY
|
8
|
+
s.extra_rdoc_files = ["README.md", "LICENSE" ]
|
9
|
+
s.summary = "Run external commands on Unix or Windows"
|
10
|
+
s.description = s.summary
|
11
|
+
s.author = "Opscode"
|
12
|
+
s.email = "info@opscode.com"
|
13
|
+
s.homepage = "http://wiki.opscode.com/"
|
14
|
+
|
15
|
+
s.required_ruby_version = ">= 1.9.3"
|
16
|
+
|
17
|
+
s.add_development_dependency "rspec", "~> 3.0"
|
18
|
+
|
19
|
+
s.bindir = "bin"
|
20
|
+
s.executables = []
|
21
|
+
s.require_path = 'lib'
|
22
|
+
s.files = %w(Gemfile Rakefile LICENSE README.md) + Dir.glob("*.gemspec") +
|
23
|
+
Dir.glob("lib/**/*", File::FNM_DOTMATCH).reject {|f| File.directory?(f) }
|
24
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mixlib-shellout
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.5
|
5
5
|
platform: universal-mingw32
|
6
6
|
authors:
|
7
7
|
- Opscode
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-12-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -91,9 +91,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
91
91
|
version: '0'
|
92
92
|
requirements: []
|
93
93
|
rubyforge_project:
|
94
|
-
rubygems_version: 2.4.
|
94
|
+
rubygems_version: 2.4.5.1
|
95
95
|
signing_key:
|
96
96
|
specification_version: 4
|
97
97
|
summary: Run external commands on Unix or Windows
|
98
98
|
test_files: []
|
99
|
-
has_rdoc:
|