childprocess 0.7.0 → 0.7.1
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/.gitignore +3 -0
- data/CHANGELOG.md +5 -0
- data/README.md +12 -9
- data/lib/childprocess.rb +1 -1
- data/lib/childprocess/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 86062d5cd963a79e17fdf2d188771665a3d408c0
|
4
|
+
data.tar.gz: 57f52d6a28cd0c1503495b3a7d6933cfaff6937b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e7eba1e0d430ca0bce9d5bd1fd74b311a57358a42016ce45d07d27ebb664995379df48d3e27eba783c2ba26333aae5d1a2b666dea9a01455e2285e48ed159245
|
7
|
+
data.tar.gz: 321d64b5905c787e50c1de2a366f489274d8704dd746530980553768d851c0af64f8f7c703cff9e06e6e0798e67a2b015f150ed62814fa050a0b3de5f04e39b2
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -6,11 +6,11 @@ external programs running in the background on any Ruby / OS combination.
|
|
6
6
|
The code originated in the [selenium-webdriver](https://rubygems.org/gems/selenium-webdriver) gem, but should prove useful as
|
7
7
|
a standalone library.
|
8
8
|
|
9
|
-
[](http://travis-ci.org/enkessler/childprocess)
|
10
10
|
[](https://ci.appveyor.com/project/enkessler/childprocess/branch/dev)
|
11
|
-
[](http://badge.fury.io/rb/childprocess)
|
12
|
+
[](https://codeclimate.com/github/enkessler/childprocess)
|
13
|
+
[](https://coveralls.io/r/enkessler/childprocess?branch=master)
|
14
14
|
|
15
15
|
# Usage
|
16
16
|
|
@@ -178,11 +178,14 @@ How the process is launched and killed depends on the platform:
|
|
178
178
|
|
179
179
|
# Note on Patches/Pull Requests
|
180
180
|
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
181
|
+
1. Fork it
|
182
|
+
2. Create your feature branch (off of the development branch)
|
183
|
+
`git checkout -b my-new-feature dev`
|
184
|
+
3. Commit your changes
|
185
|
+
`git commit -am 'Add some feature'`
|
186
|
+
4. Push to the branch
|
187
|
+
`git push origin my-new-feature`
|
188
|
+
5. Create new Pull Request
|
186
189
|
|
187
190
|
# Copyright
|
188
191
|
|
data/lib/childprocess.rb
CHANGED
data/lib/childprocess/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: childprocess
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jari Bakken
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-
|
12
|
+
date: 2017-06-26 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: ffi
|