ruby-pwsh 0.3.0 → 0.4.0
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/CHANGELOG.md +9 -1
- data/Rakefile +1 -1
- data/lib/puppet/feature/pwshlib.rb +5 -0
- data/lib/pwsh.rb +1 -0
- data/lib/pwsh/version.rb +1 -1
- data/metadata.json +2 -2
- data/ruby-pwsh.gemspec +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f99e2cb873011c1222023d1161d8dd442ee25a41dbbfd46c4f41c34dcae64dec
|
|
4
|
+
data.tar.gz: 958293d288ab63a4972a662ef5c9a3441a519558d0513a67dda2c412abb1fbc6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9aa8a90d1f9a2647f4b413c7aea243a2d8f1cd59f4885be523c6f2017d4b14eec15e047b8d9b450e148b0d0af8184d4c39025c408bd2abc3054b1919d3125632
|
|
7
|
+
data.tar.gz: 5daf8fc2fac2184578b9986e5f4b7aeea4572ff7d1bc84673f7e4ce696741d5d00969331a7356437dd52604dff0aa3a0a97cba62fad3a2fd588068ca62f07601
|
data/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).
|
|
4
4
|
|
|
5
|
-
## [0.
|
|
5
|
+
## [0.4.0](https://github.com/puppetlabs/ruby-pwsh/tree/0.4.0) (2020-01-13)
|
|
6
|
+
|
|
7
|
+
[Full Changelog](https://github.com/puppetlabs/ruby-pwsh/compare/0.3.0...0.4.0)
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- \(MODULES-10389\) Add puppet feature for dependent modules to leverage [\#20](https://github.com/puppetlabs/ruby-pwsh/pull/20) ([cmccrisken-puppet](https://github.com/cmccrisken-puppet))
|
|
12
|
+
|
|
13
|
+
## [0.3.0](https://github.com/puppetlabs/ruby-pwsh/tree/0.3.0) (2019-12-04)
|
|
6
14
|
|
|
7
15
|
[Full Changelog](https://github.com/puppetlabs/ruby-pwsh/compare/0.2.0...0.3.0)
|
|
8
16
|
|
data/Rakefile
CHANGED
|
@@ -62,7 +62,7 @@ desc 'Build the gem'
|
|
|
62
62
|
task :build do
|
|
63
63
|
gemspec_path = File.join(Dir.pwd, 'ruby-pwsh.gemspec')
|
|
64
64
|
# Delete the puppet-specific code if it exists
|
|
65
|
-
FileUtils.rm_r('lib/puppet') if File.exist?('lib/puppet')
|
|
65
|
+
# FileUtils.rm_r('lib/puppet') if File.exist?('lib/puppet')
|
|
66
66
|
run_local_command("bundle exec gem build '#{gemspec_path}'")
|
|
67
67
|
end
|
|
68
68
|
|
data/lib/pwsh.rb
CHANGED
|
@@ -117,6 +117,7 @@ module Pwsh
|
|
|
117
117
|
# This named pipe path is Windows specific.
|
|
118
118
|
pipe_path = "\\\\.\\pipe\\#{named_pipe_name}"
|
|
119
119
|
else
|
|
120
|
+
require 'tmpdir'
|
|
120
121
|
# .Net implements named pipes under Linux etc. as Unix Sockets in the filesystem
|
|
121
122
|
# Paths that are rooted are not munged within C# Core.
|
|
122
123
|
# https://github.com/dotnet/corefx/blob/94e9d02ad70b2224d012ac4a66eaa1f913ae4f29/src/System.IO.Pipes/src/System/IO/Pipes/PipeStream.Unix.cs#L49-L60
|
data/lib/pwsh/version.rb
CHANGED
data/metadata.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "puppetlabs-pwshlib",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"author": "puppetlabs",
|
|
5
5
|
"summary": "Provide library code for interoperating with PowerShell.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"source": "https://github.com/puppetlabs/ruby-pwsh",
|
|
8
|
-
"project_page": "https://github.com/puppetlabs/ruby-pwsh/pwshlib.md",
|
|
8
|
+
"project_page": "https://github.com/puppetlabs/ruby-pwsh/blob/master/pwshlib.md",
|
|
9
9
|
"issues_url": "https://github.com/puppetlabs/ruby-pwsh/issues",
|
|
10
10
|
"dependencies": [
|
|
11
11
|
|
data/ruby-pwsh.gemspec
CHANGED
|
@@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
|
|
|
32
32
|
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
|
33
33
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
34
34
|
end
|
|
35
|
-
|
|
35
|
+
# require 'pry'; binding.pry;
|
|
36
36
|
spec.bindir = 'exe'
|
|
37
37
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
38
38
|
spec.require_paths = ['lib']
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-pwsh
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Puppet, Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-01-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: PowerShell code manager for ruby.
|
|
14
14
|
email:
|
|
@@ -32,6 +32,7 @@ files:
|
|
|
32
32
|
- README.md
|
|
33
33
|
- Rakefile
|
|
34
34
|
- design-comms.png
|
|
35
|
+
- lib/puppet/feature/pwshlib.rb
|
|
35
36
|
- lib/pwsh.rb
|
|
36
37
|
- lib/pwsh/util.rb
|
|
37
38
|
- lib/pwsh/version.rb
|