Hello community,
here is the log from the commit of package rubygem-childprocess for
openSUSE:Factory checked in at 2017-09-26 21:13:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-childprocess (Old)
and /work/SRC/openSUSE:Factory/.rubygem-childprocess.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-childprocess"
Tue Sep 26 21:13:16 2017 rev:22 rq:514926 version:0.7.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/rubygem-childprocess/rubygem-childprocess.changes
2017-06-08 15:01:51.764679824 +0200
+++
/work/SRC/openSUSE:Factory/.rubygem-childprocess.new/rubygem-childprocess.changes
2017-09-26 21:13:28.722358053 +0200
@@ -1,0 +2,10 @@
+Thu Aug 3 19:08:18 UTC 2017 - [email protected]
+
+- updated to version 0.7.1
+ see installed CHANGELOG.md
+
+ ### Version 0.7.1 / 2017-06-26
+
+ * Fixed a noisy uninitialized variable warning
+
+-------------------------------------------------------------------
Old:
----
childprocess-0.7.0.gem
New:
----
childprocess-0.7.1.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-childprocess.spec ++++++
--- /var/tmp/diff_new_pack.7Aq9pN/_old 2017-09-26 21:13:29.246284379 +0200
+++ /var/tmp/diff_new_pack.7Aq9pN/_new 2017-09-26 21:13:29.246284379 +0200
@@ -24,7 +24,7 @@
#
Name: rubygem-childprocess
-Version: 0.7.0
+Version: 0.7.1
Release: 0
%define mod_name childprocess
%define mod_full_name %{mod_name}-%{version}
++++++ childprocess-0.7.0.gem -> childprocess-0.7.1.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/.gitignore new/.gitignore
--- old/.gitignore 2017-05-08 02:43:19.000000000 +0200
+++ new/.gitignore 2017-06-26 21:56:43.000000000 +0200
@@ -13,6 +13,9 @@
## VIM
*.swp
+## RubyMine
+.idea/*
+
## PROJECT::GENERAL
coverage
rdoc
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md 2017-05-08 02:43:19.000000000 +0200
+++ new/CHANGELOG.md 2017-06-26 21:56:43.000000000 +0200
@@ -1,3 +1,8 @@
+### Version 0.7.1 / 2017-06-26
+
+* Fixed a noisy uninitialized variable warning
+
+
### Version 0.7.0 / 2017-05-07
* Debugging information now uses a Logger, which can be configured.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md 2017-05-08 02:43:19.000000000 +0200
+++ new/README.md 2017-06-26 21:56:43.000000000 +0200
@@ -6,11 +6,11 @@
The code originated in the
[selenium-webdriver](https://rubygems.org/gems/selenium-webdriver) gem, but
should prove useful as
a standalone library.
-[](http://travis-ci.org/enkessler/childprocess)
+[](http://travis-ci.org/enkessler/childprocess)
[](https://ci.appveyor.com/project/enkessler/childprocess/branch/dev)
-[](http://badge.fury.io/rb/childprocess)
-[](https://codeclimate.com/github/enkessler/childprocess)
-[](https://coveralls.io/r/enkessler/childprocess?branch=master)
+[](http://badge.fury.io/rb/childprocess)
+[](https://codeclimate.com/github/enkessler/childprocess)
+[](https://coveralls.io/r/enkessler/childprocess?branch=master)
# Usage
@@ -178,11 +178,14 @@
# Note on Patches/Pull Requests
-* Fork the project.
-* Make your feature addition or bug fix.
-* Add tests for it. This is important so I don't break it in a future version
unintentionally.
-* 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)
-* Send me a pull request. Bonus points for topic branches.
+1. Fork it
+2. Create your feature branch (off of the development branch)
+ `git checkout -b my-new-feature dev`
+3. Commit your changes
+ `git commit -am 'Add some feature'`
+4. Push to the branch
+ `git push origin my-new-feature`
+5. Create new Pull Request
# Copyright
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/childprocess/version.rb
new/lib/childprocess/version.rb
--- old/lib/childprocess/version.rb 2017-05-08 02:43:19.000000000 +0200
+++ new/lib/childprocess/version.rb 2017-06-26 21:56:44.000000000 +0200
@@ -1,3 +1,3 @@
module ChildProcess
- VERSION = '0.7.0'
+ VERSION = '0.7.1'
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/childprocess.rb new/lib/childprocess.rb
--- old/lib/childprocess.rb 2017-05-08 02:43:19.000000000 +0200
+++ new/lib/childprocess.rb 2017-06-26 21:56:43.000000000 +0200
@@ -31,7 +31,7 @@
alias_method :build, :new
def logger
- return @logger if @logger
+ return @logger if defined?(@logger) and @logger
@logger = Logger.new($stderr)
@logger.level = $DEBUG ? Logger::DEBUG : Logger::INFO
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 2017-05-08 02:43:19.000000000 +0200
+++ new/metadata 2017-06-26 21:56:43.000000000 +0200
@@ -1,7 +1,7 @@
--- !ruby/object:Gem::Specification
name: childprocess
version: !ruby/object:Gem::Version
- version: 0.7.0
+ version: 0.7.1
platform: ruby
authors:
- Jari Bakken
@@ -9,7 +9,7 @@
autorequire:
bindir: bin
cert_chain: []
-date: 2017-05-08 00:00:00.000000000 Z
+date: 2017-06-26 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
name: ffi