mixlib-shellout 2.2.6 → 2.2.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +15 -12
- data/LICENSE +201 -201
- data/README.md +87 -54
- data/Rakefile +24 -24
- data/lib/mixlib/shellout.rb +357 -357
- 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 +382 -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 +5 -5
@@ -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 = "
|
12
|
-
s.email = "info@
|
13
|
-
s.homepage = "
|
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 = "Chef Software Inc."
|
12
|
+
s.email = "info@chef.io"
|
13
|
+
s.homepage = "https://www.chef.io/"
|
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.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Chef Software Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-08-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -25,7 +25,7 @@ dependencies:
|
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '3.0'
|
27
27
|
description: Run external commands on Unix or Windows
|
28
|
-
email: info@
|
28
|
+
email: info@chef.io
|
29
29
|
executables: []
|
30
30
|
extensions: []
|
31
31
|
extra_rdoc_files:
|
@@ -44,7 +44,7 @@ files:
|
|
44
44
|
- lib/mixlib/shellout/windows/core_ext.rb
|
45
45
|
- mixlib-shellout-windows.gemspec
|
46
46
|
- mixlib-shellout.gemspec
|
47
|
-
homepage:
|
47
|
+
homepage: https://www.chef.io/
|
48
48
|
licenses: []
|
49
49
|
metadata: {}
|
50
50
|
post_install_message:
|