geordi 0.7.0 → 0.8.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.
- data/bin/cuc +2 -1
- data/lib/geordi/version.rb +1 -1
- metadata +7 -5
data/bin/cuc
CHANGED
|
@@ -20,7 +20,8 @@ format_args = spinner_available ? ['--format', 'CucumberSpinner::CuriousProgress
|
|
|
20
20
|
# Check if parallel_tests is available
|
|
21
21
|
parallel_tests_available = ['rake', 'parallel:spec'] if File.exists?('Gemfile') && File.open('Gemfile').read.scan(/parallel_tests/).any?
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
rerun_txt_exists_and_has_content = File.exists?('rerun.txt') && File.size('rerun.txt') > 0
|
|
24
|
+
use_parallel_tests = parallel_tests_available && (ARGV[0] == nil) && !rerun_txt_exists_and_has_content
|
|
24
25
|
|
|
25
26
|
use_firefox_for_selenium = "PATH=#{Geordi::SetupFirefoxForSelenium::FIREFOX_FOR_SELENIUM_PATH}:$PATH"
|
|
26
27
|
|
data/lib/geordi/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: geordi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 63
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
8
|
+
- 8
|
|
9
9
|
- 0
|
|
10
|
-
version: 0.
|
|
10
|
+
version: 0.8.0
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Henning Koch
|
|
@@ -15,7 +15,8 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2012-01-
|
|
18
|
+
date: 2012-01-11 00:00:00 +01:00
|
|
19
|
+
default_executable:
|
|
19
20
|
dependencies: []
|
|
20
21
|
|
|
21
22
|
description: Collection of command line tools we use in our daily work with Ruby, Rails and Linux at makandra.
|
|
@@ -74,6 +75,7 @@ files:
|
|
|
74
75
|
- lib/geordi/gitpt.rb
|
|
75
76
|
- lib/geordi/setup_firefox_for_selenium.rb
|
|
76
77
|
- lib/geordi/version.rb
|
|
78
|
+
has_rdoc: true
|
|
77
79
|
homepage: http://makandra.com
|
|
78
80
|
licenses: []
|
|
79
81
|
|
|
@@ -103,7 +105,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
103
105
|
requirements: []
|
|
104
106
|
|
|
105
107
|
rubyforge_project: geordi
|
|
106
|
-
rubygems_version: 1.
|
|
108
|
+
rubygems_version: 1.3.9.3
|
|
107
109
|
signing_key:
|
|
108
110
|
specification_version: 3
|
|
109
111
|
summary: Collection of command line tools we use in our daily work with Ruby, Rails and Linux at makandra.
|