Hello community,

here is the log from the commit of package rubygem-airbrussh for 
openSUSE:Factory checked in at 2017-07-04 11:58:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-airbrussh (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-airbrussh.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-airbrussh"

Tue Jul  4 11:58:17 2017 rev:6 rq:505377 version:1.3.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-airbrussh/rubygem-airbrussh.changes      
2017-04-20 20:58:12.714349737 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-airbrussh.new/rubygem-airbrussh.changes 
2017-07-04 11:58:22.781492627 +0200
@@ -1,0 +2,10 @@
+Tue Jun 20 06:44:53 UTC 2017 - [email protected]
+
+- updated to version 1.3.0
+ see installed CHANGELOG.md
+
+  ## [1.3.0][] (2017-06-16)
+  
+  * [#109](https://github.com/mattbrictson/airbrussh/pull/109): Add 
configurable task prefix - [@gondalez](https://github.com/gondalez)
+
+-------------------------------------------------------------------

Old:
----
  airbrussh-1.2.0.gem

New:
----
  airbrussh-1.3.0.gem

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rubygem-airbrussh.spec ++++++
--- /var/tmp/diff_new_pack.pFQTKF/_old  2017-07-04 11:58:23.581380062 +0200
+++ /var/tmp/diff_new_pack.pFQTKF/_new  2017-07-04 11:58:23.581380062 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-airbrussh
-Version:        1.2.0
+Version:        1.3.0
 Release:        0
 %define mod_name airbrussh
 %define mod_full_name %{mod_name}-%{version}

++++++ airbrussh-1.2.0.gem -> airbrussh-1.3.0.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md    2017-04-14 18:06:45.000000000 +0200
+++ new/CHANGELOG.md    2017-06-16 17:06:00.000000000 +0200
@@ -6,6 +6,10 @@
 
 * Your contribution here!
 
+## [1.3.0][] (2017-06-16)
+
+* [#109](https://github.com/mattbrictson/airbrussh/pull/109): Add configurable 
task prefix - [@gondalez](https://github.com/gondalez)
+
 ## [1.2.0][] (2017-04-14)
 
 * [#95](https://github.com/mattbrictson/airbrussh/pull/95): colorize 
LogMessage label on WARN level and above - 
[@klyonrad](https://github.com/klyonrad)
@@ -131,7 +135,8 @@
 * Initial release
 
 [Semver]: http://semver.org
-[Unreleased]: https://github.com/mattbrictson/airbrussh/compare/v1.2.0...HEAD
+[Unreleased]: https://github.com/mattbrictson/airbrussh/compare/v1.3.0...HEAD
+[1.3.0]: https://github.com/mattbrictson/airbrussh/compare/v1.2.0...v1.3.0
 [1.2.0]: https://github.com/mattbrictson/airbrussh/compare/v1.1.2...v1.2.0
 [1.1.2]: https://github.com/mattbrictson/airbrussh/compare/v1.1.1...v1.1.2
 [1.1.1]: https://github.com/mattbrictson/airbrussh/compare/v1.1.0...v1.1.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md       2017-04-14 18:06:45.000000000 +0200
+++ new/README.md       2017-06-16 17:06:00.000000000 +0200
@@ -67,6 +67,7 @@
 |`command_output`|`true`|Set to `:stdout`, `:stderr`, or `true` to display the 
SSH output received via stdout, stderr, or both, respectively. Set to `false` 
to not show any SSH output, for a minimal look.|
 |`log_file`|`log/capistrano.log`|Capistrano's verbose output is saved to this 
file to facilitate debugging. Set to `nil` to disable completely.|
 |`truncate`|`:auto`|Set to a number (e.g. 80) to truncate the width of the 
output to that many characters, or `false` to disable truncation. If `:auto`, 
output is automatically truncated to the width of the terminal window, if it 
can be determined.|
+|`task_prefix`|`nil`|A string to prefix to task output. Handy for output 
collapsing like 
[buildkite](https://buildkite.com/docs/builds/managing-log-output)'s `---` 
prefix|
 
 ## FAQ
 
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/airbrussh/configuration.rb 
new/lib/airbrussh/configuration.rb
--- old/lib/airbrussh/configuration.rb  2017-04-14 18:06:45.000000000 +0200
+++ new/lib/airbrussh/configuration.rb  2017-06-16 17:06:00.000000000 +0200
@@ -5,7 +5,7 @@
 module Airbrussh
   class Configuration
     attr_accessor :log_file, :monkey_patch_rake, :color, :truncate, :banner,
-                  :command_output
+                  :command_output, :task_prefix
 
     def initialize
       self.log_file = nil
@@ -14,6 +14,7 @@
       self.truncate = :auto
       self.banner = :auto
       self.command_output = false
+      self.task_prefix = nil
     end
 
     def apply_options(options)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/airbrussh/console_formatter.rb 
new/lib/airbrussh/console_formatter.rb
--- old/lib/airbrussh/console_formatter.rb      2017-04-14 18:06:45.000000000 
+0200
+++ new/lib/airbrussh/console_formatter.rb      2017-06-16 17:06:00.000000000 
+0200
@@ -100,7 +100,7 @@
       return if current_task_name == last_printed_task
 
       self.last_printed_task = current_task_name
-      print_line("#{clock} #{blue(current_task_name)}")
+      print_line("#{config.task_prefix}#{clock} #{blue(current_task_name)}")
     end
 
     def clock
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/airbrussh/version.rb new/lib/airbrussh/version.rb
--- old/lib/airbrussh/version.rb        2017-04-14 18:06:45.000000000 +0200
+++ new/lib/airbrussh/version.rb        2017-06-16 17:06:00.000000000 +0200
@@ -1,4 +1,4 @@
 # frozen_string_literal: true
 module Airbrussh
-  VERSION = "1.2.0".freeze
+  VERSION = "1.3.0".freeze
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2017-04-14 18:06:45.000000000 +0200
+++ new/metadata        2017-06-16 17:06:00.000000000 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: airbrussh
 version: !ruby/object:Gem::Version
-  version: 1.2.0
+  version: 1.3.0
 platform: ruby
 authors:
 - Matt Brictson
 autorequire: 
 bindir: exe
 cert_chain: []
-date: 2017-04-14 00:00:00.000000000 Z
+date: 2017-06-16 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: sshkit
@@ -191,7 +191,7 @@
       version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.6.11
+rubygems_version: 2.6.12
 signing_key: 
 specification_version: 4
 summary: Airbrussh pretties up your SSHKit and Capistrano output


Reply via email to