rspec_spinner 1.1.2 → 1.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/rspec_spinner/bar.rb +1 -1
- data/lib/rspec_spinner/base.rb +1 -1
- data/lib/rspec_spinner/spinner.rb +1 -1
- data/rspec_spinner.gemspec +1 -1
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.3
|
data/lib/rspec_spinner/bar.rb
CHANGED
@@ -6,7 +6,7 @@ module RspecSpinner
|
|
6
6
|
@current = 0
|
7
7
|
@total = example_count
|
8
8
|
@error_state = :all_passing
|
9
|
-
@pbar =
|
9
|
+
@pbar = RTUI::Progress.new("#{example_count} examples", example_count,
|
10
10
|
{:out => output})
|
11
11
|
end
|
12
12
|
end
|
data/lib/rspec_spinner/base.rb
CHANGED
@@ -20,7 +20,7 @@ module RspecSpinner
|
|
20
20
|
@current = 0
|
21
21
|
@total = example_count
|
22
22
|
@error_state = :all_passing
|
23
|
-
@pbar =
|
23
|
+
@pbar = RTUI::Progress.new("#{example_count} examples", example_count,
|
24
24
|
{:out => output, :components => [:percentage, :spinner, :stat]})
|
25
25
|
end
|
26
26
|
|
@@ -5,7 +5,7 @@ module RspecSpinner
|
|
5
5
|
@current = 0
|
6
6
|
@total = example_count
|
7
7
|
@error_state = :all_passing
|
8
|
-
@pbar =
|
8
|
+
@pbar = RTUI::Progress.new("#{example_count} examples", example_count,
|
9
9
|
{:out => output, :components => [:percentage, :spinner, :subject, :stat]})
|
10
10
|
@pbar.subject = "Starting..."
|
11
11
|
end
|
data/rspec_spinner.gemspec
CHANGED