cucumber_statistics 1.0.0 → 1.0.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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NWFjYzc0M2VmMzkzOTI2MGZkMzAyNWFjMDM5ODVmOTc2NDRkMWI5Yw==
4
+ MDE3NTMwOGZhZDY5YzcwYzVhZWEwN2JiMzM2NTk4MWU0NjEwOTEyZQ==
5
5
  data.tar.gz: !binary |-
6
- YjhjZTczMmMwYjEyYTc0Y2M4ZTI4YTZhNDQxMjc5NWJkOGI2Njc0MQ==
6
+ NDRlODQ3NzMzNjM2YmUwYjMwZDhjOGNiNjg0M2I5ZDk2NjhiNWZiYg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- NDFkNGUyNjNmZGI2ZjdkZGIyYTI4MTUwOTNhNjBjNmNkY2I0NWY5NjhjODgx
10
- NjIyODQ1NzRjNzI3MzE1MTdmNWMzMGU2NWZjMWMwMGUyYjQyY2I0OTBmYTkz
11
- MzZjMTQ0YWE2OTRmOGVkNzA1NTIwNzg2MjBkM2Q0ZmNhYzk0YTU=
9
+ MDAwZjkyMGNiMThlM2I4YmRiZDNhMDQzMmY5ZmQ0YjAyZjhiMmQ5ZDE0YjI2
10
+ ODRkYWI1NmVjM2UzZTg2NTNiYmE3NzcyNjkyZGVlODk2ZTkzYTVlNzkxZGRi
11
+ ZTg5NzRkNjcyOGJjYmY2N2E1OThjMWJlZWVlOGEwMDRiNWQyODc=
12
12
  data.tar.gz: !binary |-
13
- MjViMTU4NTdjYWVjY2I1MjY1MmNkMzgyODljN2Q0MGQ1ZmJmM2RhY2Y2NWJi
14
- Yjc2OTlmZGUwYTViZmMxYjZlN2Y5NGQxNjY1YzYyOWRiNDk5NDhmOWM4Yzc2
15
- ZDU1MDFhNjcwODVkNDg3YWRmMGIyZjU5YWE1Y2U0NTk1YTA5Nzk=
13
+ OGI3NWVhOTkzNGNkOTliOTdhZmJhNjcwNTQ1MGQ2ZGExMDI1MDVmNTNhZGQy
14
+ Nzk2Y2FjZDUzMDc1M2ZjNWJiYzU2YWFiMTZmMjQwN2Q3YjExYTJiYTEyNWVk
15
+ ZTMwMWVhNTQ3OTc2YmQ0YWIzN2I5MDVlOGE0OGNkNjNmNzFlY2I=
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Cucumber Statistics
2
2
 
3
- A cucumber formatter that will gather statistics and generate a single page showing step time metrics.
3
+ Tracks cucumber timing and displays results in a single html page with outliers highlighted in a table sortable by various metrics.
4
4
 
5
5
  ## Installation
6
6
 
@@ -9,7 +9,7 @@ module CucumberStatistics
9
9
  def time_td(step_results, metric, *warning_step_results)
10
10
  duration = step_results[1][metric]
11
11
 
12
- %{<td #{warning_class(step_results, warning_step_results)} data-value="#{duration}">#{format(duration)}</td>}
12
+ %{<td #{warning_class(step_results, warning_step_results)} data-value="#{duration}" title="#{duration}">#{format(duration)}</td>}
13
13
  end
14
14
 
15
15
  def warning_class(step_results, warning_step_results)
@@ -1,3 +1,3 @@
1
1
  module CucumberStatistics
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cucumber_statistics
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Ross