fuubar-cucumber 0.0.14 → 0.0.15
Sign up to get free protection for your applications and to get access to all the features.
- data/README.textile +5 -5
- data/fuubar-cucumber.gemspec +1 -1
- data/lib/fuubar-cucumber.rb +10 -0
- metadata +7 -6
data/README.textile
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
h1. Fuubar-cucumber
|
2
2
|
|
3
|
-
Fuubar-cucumber is an instafailing "Cucumber":https://github.com/aslakhellesoy/cucumber formatter that uses a progress bar instead of a string of letters and dots as feedback. It is based on RSpec formatter "Fuubar":https://github.com/jeffkreeftmeijer/fuubar.
|
3
|
+
Fuubar-cucumber is an instafailing "Cucumber":https://github.com/aslakhellesoy/cucumber formatter that uses a progress bar instead of a string of letters and dots as feedback. It is based on RSpec formatter "Fuubar":https://github.com/jeffkreeftmeijer/fuubar.
|
4
4
|
|
5
5
|
Fuubar displays progress bar with percentage of steps completed and ETA instead of green dots. When one of the steps fails, it is instantly displayed so you can go and fix it witchout waiting for all scenarios.
|
6
6
|
|
7
7
|
h2. Installation
|
8
8
|
|
9
|
-
Installing Fuubar-cucumber is easy. Just put it in your @Gemfile@
|
9
|
+
Installing Fuubar-cucumber is easy. Just put it in your @Gemfile@
|
10
10
|
|
11
11
|
bc. gem 'fuubar-cucumber'
|
12
12
|
|
@@ -18,14 +18,14 @@ bc. $ gem install fuubar-cucumber
|
|
18
18
|
|
19
19
|
You can now run your features like this:
|
20
20
|
|
21
|
-
bc. $ cucumber
|
21
|
+
bc. $ cucumber --format fuubar
|
22
22
|
|
23
23
|
If you want to use Fuubar as your default formatter, simply put the option in your @cucumber.yml@ file:
|
24
24
|
|
25
|
-
bc. --format
|
25
|
+
bc. --format fuubar
|
26
26
|
|
27
27
|
h2. Contributing
|
28
|
-
|
28
|
+
|
29
29
|
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
|
30
30
|
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
|
31
31
|
* Fork the project
|
data/fuubar-cucumber.gemspec
CHANGED
@@ -0,0 +1,10 @@
|
|
1
|
+
require 'cucumber/formatter/fuubar'
|
2
|
+
|
3
|
+
# Extend Cucumber's builtin formats, so that this
|
4
|
+
# formatter can be used with --format fuubar
|
5
|
+
require 'cucumber/cli/options'
|
6
|
+
|
7
|
+
Cucumber::Cli::Options::BUILTIN_FORMATS["fuubar"] = [
|
8
|
+
"Cucumber::Formatter::Fuubar",
|
9
|
+
"The instafailing Cucumber progress bar formatter"
|
10
|
+
]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fuubar-cucumber
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.15
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2011-10-
|
12
|
+
date: 2011-10-04 00:00:00.000000000Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: cucumber
|
16
|
-
requirement: &
|
16
|
+
requirement: &2156145380 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: 1.0.2
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *2156145380
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: ruby-progressbar
|
27
|
-
requirement: &
|
27
|
+
requirement: &2156137580 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ~>
|
@@ -32,7 +32,7 @@ dependencies:
|
|
32
32
|
version: 0.0.10
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *2156137580
|
36
36
|
description: the instafailing Cucumber progress bar formatter
|
37
37
|
email:
|
38
38
|
- marcin.ciunelis@gmail.com
|
@@ -49,6 +49,7 @@ files:
|
|
49
49
|
- Rakefile
|
50
50
|
- fuubar-cucumber.gemspec
|
51
51
|
- lib/cucumber/formatter/fuubar.rb
|
52
|
+
- lib/fuubar-cucumber.rb
|
52
53
|
homepage: https://github.com/martinciu/fuubar-cucumber
|
53
54
|
licenses:
|
54
55
|
- MIT
|