cucumber_statistics 2.0.0 → 2.1.0
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 +4 -4
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/README.md +1 -1
- data/cucumber_statistics.gemspec +5 -5
- data/lib/cucumber_statistics/configuration.rb +1 -1
- data/lib/cucumber_statistics/version.rb +1 -1
- metadata +5 -4
- data/.rvmrc +0 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fe3cb2b754b4eb935d055b725cb1223b59e940dc
|
|
4
|
+
data.tar.gz: 453850dc25c43a248319c9bad6b8dc1cc7119d60
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e1f98ef1cf996db82dc9afe108703401e61740cfebe44e57ca629cca5281df0b10133a805d3d9e53d8c910b6c88232385020b112a6daed58ef8897d865565e61
|
|
7
|
+
data.tar.gz: 49e20ce31f63b3748ea4b5af3fc514c74999f1c3bcd83cb24f2e139a24bf89d713fef0a1c8553ba99078033969e302bd47ccd24762fb402391baa91dda46cf05
|
data/.ruby-gemset
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
cucumber_statistics
|
data/.ruby-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ruby-2.2.2
|
data/README.md
CHANGED
|
@@ -20,7 +20,7 @@ Tracks cucumber timing and displays results in a single html page with outliers
|
|
|
20
20
|
|
|
21
21
|
## Results
|
|
22
22
|
|
|
23
|
-
Look in the `./
|
|
23
|
+
Look in the `./target/cucumber_statistics` for the generated html document.
|
|
24
24
|
|
|
25
25
|
## Why?
|
|
26
26
|
|
data/cucumber_statistics.gemspec
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
2
|
lib = File.expand_path('../lib', __FILE__)
|
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
-
require
|
|
4
|
+
require 'cucumber_statistics/version'
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
|
-
spec.name =
|
|
7
|
+
spec.name = 'cucumber_statistics'
|
|
8
8
|
spec.version = CucumberStatistics::VERSION
|
|
9
|
-
spec.authors = [
|
|
10
|
-
spec.email = [
|
|
9
|
+
spec.authors = ['Kevin Ross']
|
|
10
|
+
spec.email = ['kevin.ross@alienfast.com.com']
|
|
11
11
|
spec.summary = <<-TEXT
|
|
12
12
|
An cucumber formatter that will gather statistics and generate a single page showing step time metrics.
|
|
13
13
|
TEXT
|
|
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
|
|
|
16
16
|
TEXT
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
spec.homepage =
|
|
19
|
+
spec.homepage = 'http://github.com/alienfast/cucumber_statistics'
|
|
20
20
|
spec.license = 'MIT'
|
|
21
21
|
|
|
22
22
|
spec.files = `git ls-files`.split($/).reject { |f| f =~ /^samples\// }
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cucumber_statistics
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kevin Ross
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-09-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -118,7 +118,8 @@ extra_rdoc_files: []
|
|
|
118
118
|
files:
|
|
119
119
|
- ".document"
|
|
120
120
|
- ".gitignore"
|
|
121
|
-
- ".
|
|
121
|
+
- ".ruby-gemset"
|
|
122
|
+
- ".ruby-version"
|
|
122
123
|
- Gemfile
|
|
123
124
|
- LICENSE.txt
|
|
124
125
|
- README.md
|
|
@@ -163,7 +164,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
163
164
|
version: '0'
|
|
164
165
|
requirements: []
|
|
165
166
|
rubyforge_project:
|
|
166
|
-
rubygems_version: 2.4.
|
|
167
|
+
rubygems_version: 2.4.8
|
|
167
168
|
signing_key:
|
|
168
169
|
specification_version: 4
|
|
169
170
|
summary: An cucumber formatter that will gather statistics and generate a single page
|
data/.rvmrc
DELETED