fuubar 2.4.1 → 2.5.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
  SHA256:
3
- metadata.gz: f33c75eecd40f56ed951ba0271450860b3ebebbb0bbd1176f77a78de206b28f6
4
- data.tar.gz: 185aa80a3b147b9c6178871c09474e7ffe9231219e3b4cb48cdf0262678dfcfb
3
+ metadata.gz: 1fd1a2c4590312a74d9626c64fc2ddd353ff5ebd351a74e3643087646c60462a
4
+ data.tar.gz: 46a97b176a9c504e0f20553a94f304be2bb97b171258e7350c5d460ff6d83fb8
5
5
  SHA512:
6
- metadata.gz: d8d30b539b96fe08156290d6ac407cea29a062e1b29eaf8fa39e041a8844abbb221775a0678e6644c0b1568b8996a5995ed84d23fc11729b0613b102af712d5c
7
- data.tar.gz: e6f41f9692280dae28a8c44daf08f9df19a59b083579ea195d29a166d63bf68a88816137d7d9b17f4733556e2087756b04363990cd1a1f2aa5387db0959f99ec
6
+ metadata.gz: 8545ad87bb3cf36a508feaa26f3d5cdbb82bf362187dd7fc522c92255d9b8456a98a436dc6da6288568655842567bd132b2418aab297d410b41e92404a7da194
7
+ data.tar.gz: ea0f79a6c37344dabf5bbbd23d273148856bd5e4220af3785155a7f9a748f3314eee8391f37f4c5c615f0f7ae5b90e4b360f0eb4a09fd13aae5bc247800a0242
checksums.yaml.gz.sig CHANGED
Binary file
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2010-2016 The Kompanee, Ltd
1
+ Copyright (c) 2010-2019 The Kompanee, Ltd
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1,6 +1,29 @@
1
1
  Fuubar
2
2
  ================================================================================
3
- [![Gem Version](https://img.shields.io/gem/v/fuubar.svg)](https://rubygems.org/gems/fuubar) ![Rubygems Rank Overall](https://img.shields.io/gem/rt/fuubar.svg) ![Rubygems Rank Daily](https://img.shields.io/gem/rd/fuubar.svg) ![Rubygems Downloads](https://img.shields.io/gem/dv/fuubar/stable.svg) [![Build Status](https://img.shields.io/travis/thekompanee/fuubar/master.svg)](http://travis-ci.org/thekompanee/fuubar) [![Code Climate](https://codeclimate.com/github/thekompanee/fuubar.svg)](https://codeclimate.com/github/thekompanee/fuubar)
3
+
4
+ <div align="center">
5
+ <a href="https://rubygems.org/gems/fuubar" alt="RubyGems Version">
6
+ <img src="https://img.shields.io/gem/v/fuubar.svg?style=flat-square&label=current-version" alt="RubyGems Version" />
7
+ </a>
8
+
9
+ <a href="https://rubygems.org/gems/fuubar" alt="RubyGems Rank Overall">
10
+ <img src="https://img.shields.io/gem/rt/fuubar.svg?style=flat-square&label=total-rank" alt="RubyGems Rank Overall" />
11
+ </a>
12
+
13
+ <a href="https://rubygems.org/gems/fuubar" alt="RubyGems Rank Daily">
14
+ <img src="https://img.shields.io/gem/rd/fuubar.svg?style=flat-square&label=daily-rank" alt="RubyGems Rank Daily" />
15
+ </a>
16
+
17
+ <a href="https://rubygems.org/gems/fuubar" alt="RubyGems Downloads">
18
+ <img src="https://img.shields.io/gem/dt/fuubar.svg?style=flat-square&label=total-downloads" alt="RubyGems Downloads" />
19
+ </a>
20
+
21
+ <a href="https://github.com/thekompanee/fuubar/actions?query=workflow%3ABuild" alt="Build Status">
22
+ <img src="https://img.shields.io/github/workflow/status/jfelchner/fuubar/Build?label=CI&style=flat-square&logo=github" alt="Build Status" />
23
+ </a>
24
+ </div>
25
+
26
+ <br>
4
27
 
5
28
  fuubar is an instafailing [RSpec][rspec] formatter that uses
6
29
  a progress bar instead of a string of letters and dots as feedback.
@@ -23,22 +46,22 @@ Usage
23
46
 
24
47
  In order to use fuubar, you have three options.
25
48
 
26
- ### Option 1: Invoke It Manually Via The Command Line ###
49
+ ### Option 1: Invoke It Manually Via The Command Line
27
50
 
28
- ```
51
+ ```bash
29
52
  rspec --format Fuubar --color
30
53
  ```
31
54
 
32
- ### Option 2: Add It To Your Local `.rspec` File ###
55
+ ### Option 2: Add It To Your Local `.rspec` File
33
56
 
34
- ```
57
+ ```text
35
58
  # .rspec
36
59
 
37
60
  --format Fuubar
38
61
  --color
39
62
  ```
40
63
 
41
- ### Option 3: Add It To Your `spec_helper.rb` ###
64
+ ### Option 3: Add It To Your `spec_helper.rb`
42
65
 
43
66
  ```ruby
44
67
  # spec/spec_helper.rb
@@ -51,7 +74,7 @@ end
51
74
  Advanced Usage
52
75
  --------------------------------
53
76
 
54
- ### Customizing The Bar ###
77
+ ### Customizing The Bar
55
78
 
56
79
  fuubar exposes an RSpec configuration variable called
57
80
  `fuubar_progress_bar_options` which, when set will be passed directly to
@@ -59,7 +82,7 @@ fuubar exposes an RSpec configuration variable called
59
82
  the [ruby-progressbar documentation][rpb-docs] for details on all of the options
60
83
  you can pass in.
61
84
 
62
- #### Example ####
85
+ #### Example
63
86
 
64
87
  Let's say for example that you would like to change the format of the bar. You
65
88
  would do that like so:
@@ -74,9 +97,11 @@ end
74
97
 
75
98
  would make it so that, when fuubar is output, it would look something like:
76
99
 
77
- My Fuubar! <================================ > 53.44% 00:12:31
100
+ ```text
101
+ My Fuubar! <================================ > 53.44% 00:12:31
102
+ ```
78
103
 
79
- ### Hiding Pending/Skipped Spec Summary ###
104
+ ### Hiding Pending/Skipped Spec Summary
80
105
 
81
106
  By default fuubar follows RSpec's lead and will dump out a summary of all of the
82
107
  pending specs in the suite once the test run is over. This is a good idea
@@ -84,7 +109,7 @@ because the additional noise is a nudge to fix those tests. We realize however
84
109
  that not all teams have the luxury of implementing all of the pending specs and
85
110
  therefore fuubar gives you the option of supressing that summary.
86
111
 
87
- #### Example ####
112
+ #### Example
88
113
 
89
114
  ```ruby
90
115
  # spec/spec_helper.rb
@@ -94,42 +119,72 @@ RSpec.configure do |config|
94
119
  end
95
120
  ```
96
121
 
97
- ### Disabling Auto-Refresh ###
98
-
99
- By default fuubar will automatically refresh the bar (and therefore the ETA)
100
- every second. Unfortunately this doesn't play well with things like debuggers.
101
- When you're debugging, having a bar show up every second is undesireable.
102
- [Pry][pry] gives us hooks so that we can automatically disable the refresh when
103
- it's used. Unfortunately [byebug][byebug] does not and disabling the bar must be
104
- done manually.
122
+ ### Enabling Auto-Refresh
105
123
 
106
- #### Example ####
124
+ By default fuubar refreshes the bar only between each spec.
125
+ You can enable an auto-refresh feature that will keep refreshing the bar (and
126
+ therefore the ETA) every second.
127
+ You can enable the feature as follows:
107
128
 
108
129
  ```ruby
109
130
  # spec/spec_helper.rb
110
131
 
111
132
  RSpec.configure do |config|
112
- config.fuubar_auto_refresh = false
133
+ config.fuubar_auto_refresh = true
113
134
  end
114
135
  ```
115
136
 
137
+ #### Undesirable Effects
138
+
139
+ Unfortunately this option doesn't play well with things like debuggers, as
140
+ having a bar show up every second would be undesireable (which is why the
141
+ feature is disabled by default). Depending on what you are using, you may be
142
+ given ways to work around this problem.
143
+
144
+ ##### Pry
145
+
146
+ [Pry][pry] provides hooks that can be used to disable fuubar during a debugging
147
+ session, you could for example add the following to your spec helper:
148
+
149
+ ```ruby
150
+ # spec/spec_helper.rb
151
+
152
+ Pry.config.hooks.add_hook(:before_session, :disable_fuubar_auto_refresh) do |_output, _binding, _pry|
153
+ RSpec.configuration.fuubar_auto_refresh = false
154
+ end
155
+
156
+ Pry.config.hooks.add_hook(:after_session, :restore_fuubar_auto_refresh) do |_output, _binding, _pry|
157
+ RSpec.configuration.fuubar_auto_refresh = true
158
+ end
159
+ ```
160
+
161
+ ##### Byebug
162
+
163
+ Unfortunately [byebug][byebug] does not provide hooks, so your best bet is to
164
+ disable auto-refresh manually before calling `byebug`.
165
+
166
+ ```ruby
167
+ RSpec.configuration.fuubar_auto_refresh = false
168
+ byebug
169
+ ```
170
+
116
171
  Security
117
172
  --------------------------------------------------------------------------------
118
173
 
119
174
  fuubar is cryptographically signed. To be sure the gem you install hasn’t been
120
175
  tampered with, follow these steps:
121
176
 
122
- 1. Add my public key (if you haven’t already) as a trusted certificate
177
+ * Add my public key (if you haven’t already) as a trusted certificate
123
178
 
124
- ```
125
- gem cert --add <(curl -Ls https://raw.github.com/thekompanee/fuubar/master/certs/thekompanee.pem)
126
- ```
179
+ ```bash
180
+ gem cert --add <(curl -Ls https://raw.github.com/thekompanee/fuubar/master/certs/thekompanee.pem)
181
+ ```
127
182
 
128
- 2. Install fuubar telling it to use security checks when possible.
183
+ * Install fuubar telling it to use security checks when possible.
129
184
 
130
- ```
131
- gem install fuubar -P MediumSecurity
132
- ```
185
+ ```bash
186
+ gem install fuubar -P MediumSecurity
187
+ ```
133
188
 
134
189
  > **Note:** The `MediumSecurity` trust profile will verify signed gems, but
135
190
  > allow the installation of unsigned dependencies.
@@ -152,7 +207,7 @@ The names and logos for The Kompanee are trademarks of The Kompanee, Ltd.
152
207
  License
153
208
  --------------------------------------------------------------------------------
154
209
 
155
- fuubar is Copyright &copy; 2010-2019 Jeff Kreeftmeijer and Jeff Felchner. It is
210
+ fuubar is Copyright &copy; 2010-2021 Jeff Kreeftmeijer and Jeff Felchner. It is
156
211
  free software, and may be redistributed under the terms specified in the
157
212
  [LICENSE][license] file.
158
213
 
data/lib/fuubar/output.rb CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  require 'delegate'
4
4
 
5
- class Fuubar < RSpec::Core::Formatters::BaseTextFormatter
5
+ class Fuubar < ::RSpec::Core::Formatters::BaseTextFormatter
6
6
  class Output < ::Delegator
7
- def initialize(output, force_tty = false)
7
+ def initialize(output, force_tty = false) # rubocop:disable Style/OptionalBooleanParameter, Lint/MissingSuper
8
8
  @raw_output = output
9
9
  @force_tty = force_tty
10
10
  end
data/lib/fuubar.rb CHANGED
@@ -5,34 +5,24 @@ require 'rspec/core/formatters/base_text_formatter'
5
5
  require 'ruby-progressbar'
6
6
  require 'fuubar/output'
7
7
 
8
- RSpec.configuration.add_setting :fuubar_progress_bar_options, :default => {}
9
- RSpec.configuration.add_setting :fuubar_auto_refresh, :default => true
10
- RSpec.configuration.add_setting :fuubar_output_pending_results, :default => true
11
-
12
- if Object.const_defined?('Pry')
13
- Pry.
14
- config.
15
- hooks.
16
- add_hook(:when_started, :fuubar_kill_refresh) do |_target, _opt, _|
17
- RSpec.configuration.fuubar_auto_refresh = false
18
- end
19
- end
8
+ ::RSpec.configuration.add_setting :fuubar_progress_bar_options, :default => {}
9
+ ::RSpec.configuration.add_setting :fuubar_auto_refresh, :default => false
10
+ ::RSpec.configuration.add_setting :fuubar_output_pending_results, :default => true
20
11
 
21
- class Fuubar < RSpec::Core::Formatters::BaseTextFormatter
12
+ class Fuubar < ::RSpec::Core::Formatters::BaseTextFormatter
22
13
  DEFAULT_PROGRESS_BAR_OPTIONS = { :format => ' %c/%C |%w>%i| %e ' }.freeze
23
14
 
24
- RSpec::Core::Formatters.register self,
25
- :close,
26
- :dump_failures,
27
- :dump_pending,
28
- :example_failed,
29
- :example_passed,
30
- :example_pending,
31
- :message,
32
- :start
33
-
34
- attr_accessor :example_tick_thread,
35
- :example_tick_lock,
15
+ ::RSpec::Core::Formatters.register self,
16
+ :close,
17
+ :dump_failures,
18
+ :dump_pending,
19
+ :example_failed,
20
+ :example_passed,
21
+ :example_pending,
22
+ :message,
23
+ :start
24
+
25
+ attr_accessor :example_tick_lock,
36
26
  :progress,
37
27
  :passed_count,
38
28
  :pending_count,
@@ -41,8 +31,8 @@ class Fuubar < RSpec::Core::Formatters::BaseTextFormatter
41
31
  def initialize(*args)
42
32
  super
43
33
 
44
- self.example_tick_lock = Mutex.new
45
- self.progress = ProgressBar.create(
34
+ self.example_tick_lock = ::Mutex.new
35
+ self.progress = ::ProgressBar.create(
46
36
  DEFAULT_PROGRESS_BAR_OPTIONS.
47
37
  merge(:throttle_rate => continuous_integration? ? 1.0 : nil).
48
38
  merge(:total => 0,
@@ -59,19 +49,10 @@ class Fuubar < RSpec::Core::Formatters::BaseTextFormatter
59
49
  :output => output,
60
50
  :autostart => false)
61
51
 
62
- self.progress = ProgressBar.create(progress_bar_options)
63
- self.passed_count = 0
64
- self.pending_count = 0
65
- self.failed_count = 0
66
- self.example_tick_thread = Thread.new do
67
- loop do
68
- sleep(1)
69
-
70
- if configuration.fuubar_auto_refresh
71
- example_tick(notification)
72
- end
73
- end
74
- end # rubocop:disable Layout/BlockAlignment
52
+ self.progress = ::ProgressBar.create(progress_bar_options)
53
+ self.passed_count = 0
54
+ self.pending_count = 0
55
+ self.failed_count = 0
75
56
 
76
57
  super
77
58
 
@@ -111,6 +92,18 @@ class Fuubar < RSpec::Core::Formatters::BaseTextFormatter
111
92
  end
112
93
  end
113
94
 
95
+ def example_tick_thread
96
+ ::Thread.new do
97
+ loop do
98
+ sleep(1)
99
+
100
+ if configuration.fuubar_auto_refresh
101
+ example_tick(notification)
102
+ end
103
+ end
104
+ end
105
+ end
106
+
114
107
  def message(notification)
115
108
  if progress.respond_to? :log
116
109
  progress.log(notification.message)
@@ -132,11 +125,9 @@ class Fuubar < RSpec::Core::Formatters::BaseTextFormatter
132
125
  super
133
126
  end
134
127
 
135
- # rubocop:disable Naming/MemoizedInstanceVariableName
136
128
  def output
137
- @fuubar_output ||= Fuubar::Output.new(super, configuration.tty?)
129
+ @fuubar_output ||= ::Fuubar::Output.new(super, configuration.tty?) # rubocop:disable Naming/MemoizedInstanceVariableName
138
130
  end
139
- # rubocop:enable Naming/MemoizedInstanceVariableName
140
131
 
141
132
  private
142
133
 
@@ -169,11 +160,11 @@ class Fuubar < RSpec::Core::Formatters::BaseTextFormatter
169
160
  end
170
161
 
171
162
  def color_code_for(*args)
172
- RSpec::Core::Formatters::ConsoleCodes.console_code_for(*args)
163
+ ::RSpec::Core::Formatters::ConsoleCodes.console_code_for(*args)
173
164
  end
174
165
 
175
166
  def configuration
176
- RSpec.configuration
167
+ ::RSpec.configuration
177
168
  end
178
169
 
179
170
  def continuous_integration?
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,43 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fuubar
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.1
4
+ version: 2.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicholas Evans
8
8
  - Jeff Kreeftmeijer
9
9
  - jfelchner
10
- autorequire:
10
+ autorequire:
11
11
  bindir: bin
12
12
  cert_chain:
13
13
  - |
14
14
  -----BEGIN CERTIFICATE-----
15
- MIIEdjCCAt6gAwIBAgIBATANBgkqhkiG9w0BAQsFADAyMTAwLgYDVQQDDCdhY2Nv
16
- dW50c19ydWJ5Z2Vtcy9EQz10aGVrb21wYW5lZS9EQz1jb20wHhcNMTgwODAzMjEz
17
- NjUzWhcNMTkwODAzMjEzNjUzWjAyMTAwLgYDVQQDDCdhY2NvdW50c19ydWJ5Z2Vt
15
+ MIIEGDCCAoCgAwIBAgIBAjANBgkqhkiG9w0BAQsFADAyMTAwLgYDVQQDDCdhY2Nv
16
+ dW50c19ydWJ5Z2Vtcy9EQz10aGVrb21wYW5lZS9EQz1jb20wHhcNMjAxMjI2MjIy
17
+ NTE5WhcNMjExMjI2MjIyNTE5WjAyMTAwLgYDVQQDDCdhY2NvdW50c19ydWJ5Z2Vt
18
18
  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
- ggGKAoIBgQDR6ma5Z4B2Qz+ykVUKn2CoWwoJ3vStZLDNc6nIOUTUDFS5rg43XwwB
20
- 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
- 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
- d1h5FZIkAqgw7rx65W+e4HUSNnUvzUmZKoO0u/yMlnc4NcK05RdgHZ5FcXgSAZG/
23
- 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
- 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
- +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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 09JNgxpgZHCDuKwoycU+wXdWVSzMtchMQygnEu6th1SY5qHj4ISipBEBtKG0MdgB
38
- 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
39
37
  -----END CERTIFICATE-----
40
- date: 2019-07-03 00:00:00.000000000 Z
38
+ date: 2020-12-31 00:00:00.000000000 Z
41
39
  dependencies:
42
40
  - !ruby/object:Gem::Dependency
43
41
  name: rspec-core
@@ -103,7 +101,7 @@ metadata:
103
101
  homepage_uri: https://github.com/thekompanee/fuubar
104
102
  source_code_uri: https://github.com/thekompanee/fuubar
105
103
  wiki_uri: https://github.com/thekompanee/fuubar/wiki
106
- post_install_message:
104
+ post_install_message:
107
105
  rdoc_options: []
108
106
  require_paths:
109
107
  - lib
@@ -118,8 +116,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
118
116
  - !ruby/object:Gem::Version
119
117
  version: '0'
120
118
  requirements: []
121
- rubygems_version: 3.0.4
122
- signing_key:
119
+ rubygems_version: 3.2.3
120
+ signing_key:
123
121
  specification_version: 4
124
122
  summary: the instafailing RSpec progress bar formatter
125
123
  test_files: []
metadata.gz.sig CHANGED
Binary file