childprocess 0.7.0 → 0.7.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 489236aacb3714c55ea91562be7530b61d3bd573
4
- data.tar.gz: 5c1c4576e85e5887b35a9ce472cec901f01d7e90
3
+ metadata.gz: 86062d5cd963a79e17fdf2d188771665a3d408c0
4
+ data.tar.gz: 57f52d6a28cd0c1503495b3a7d6933cfaff6937b
5
5
  SHA512:
6
- metadata.gz: af337f4fbb1e151c787810d63cbbb2d0f16d3631dea31579f2b2d11b4a04228e2b1f423272d19f7f1d33fffc580138363f9f8b4e033ea2e37852c659dc7b4013
7
- data.tar.gz: c7b80f7b7e1879da50e54a81250f03aa6358f488539cf1ee7d8fe18d6f9e70911dcead16a2bed0e149a92f7b8aac26c86e4f49dbb0afc66a2d736e2783be7300
6
+ metadata.gz: e7eba1e0d430ca0bce9d5bd1fd74b311a57358a42016ce45d07d27ebb664995379df48d3e27eba783c2ba26333aae5d1a2b666dea9a01455e2285e48ed159245
7
+ data.tar.gz: 321d64b5905c787e50c1de2a366f489274d8704dd746530980553768d851c0af64f8f7c703cff9e06e6e0798e67a2b015f150ed62814fa050a0b3de5f04e39b2
data/.gitignore CHANGED
@@ -13,6 +13,9 @@ tmtags
13
13
  ## VIM
14
14
  *.swp
15
15
 
16
+ ## RubyMine
17
+ .idea/*
18
+
16
19
  ## PROJECT::GENERAL
17
20
  coverage
18
21
  rdoc
@@ -1,3 +1,8 @@
1
+ ### Version 0.7.1 / 2017-06-26
2
+
3
+ * Fixed a noisy uninitialized variable warning
4
+
5
+
1
6
  ### Version 0.7.0 / 2017-05-07
2
7
 
3
8
  * Debugging information now uses a Logger, which can be configured.
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
- [![Build Status](https://secure.travis-ci.org/enkessler/childprocess.png)](http://travis-ci.org/enkessler/childprocess)
9
+ [![Build Status](https://secure.travis-ci.org/enkessler/childprocess.svg)](http://travis-ci.org/enkessler/childprocess)
10
10
  [![Build status](https://ci.appveyor.com/api/projects/status/fn2snbcd7kku5myk/branch/dev?svg=true)](https://ci.appveyor.com/project/enkessler/childprocess/branch/dev)
11
- [![Gem Version](https://badge.fury.io/rb/childprocess.png)](http://badge.fury.io/rb/childprocess)
12
- [![Code Climate](https://codeclimate.com/github/enkessler/childprocess.png)](https://codeclimate.com/github/enkessler/childprocess)
13
- [![Coverage Status](https://coveralls.io/repos/enkessler/childprocess/badge.png?branch=master)](https://coveralls.io/r/enkessler/childprocess?branch=master)
11
+ [![Gem Version](https://badge.fury.io/rb/childprocess.svg)](http://badge.fury.io/rb/childprocess)
12
+ [![Code Climate](https://codeclimate.com/github/enkessler/childprocess.svg)](https://codeclimate.com/github/enkessler/childprocess)
13
+ [![Coverage Status](https://coveralls.io/repos/enkessler/childprocess/badge.svg?branch=master)](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
- * Fork the project.
182
- * Make your feature addition or bug fix.
183
- * Add tests for it. This is important so I don't break it in a future version unintentionally.
184
- * Commit, do not mess with rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
185
- * Send me a pull request. Bonus points for topic branches.
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
 
@@ -31,7 +31,7 @@ module ChildProcess
31
31
  alias_method :build, :new
32
32
 
33
33
  def logger
34
- return @logger if @logger
34
+ return @logger if defined?(@logger) and @logger
35
35
 
36
36
  @logger = Logger.new($stderr)
37
37
  @logger.level = $DEBUG ? Logger::DEBUG : Logger::INFO
@@ -1,3 +1,3 @@
1
1
  module ChildProcess
2
- VERSION = '0.7.0'
2
+ VERSION = '0.7.1'
3
3
  end
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.0
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-05-08 00:00:00.000000000 Z
12
+ date: 2017-06-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: ffi