cukeq 0.0.1.dev3 → 0.0.1.dev4
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/lib/cukeq/async_job.rb +1 -1
- data/lib/cukeq/version.rb +1 -1
- data/lib/cukeq.rb +5 -4
- metadata +2 -2
data/lib/cukeq/async_job.rb
CHANGED
@@ -40,7 +40,7 @@ module CukeQ
|
|
40
40
|
end
|
41
41
|
|
42
42
|
def command
|
43
|
-
"cucumber -rfeatures --format Cucumber::Formatter::Json --out #{output_file} #{@feature_file}"
|
43
|
+
"bundle install && bundle exec cucumber -rfeatures --format Cucumber::Formatter::Json --out #{output_file} #{@feature_file}"
|
44
44
|
end
|
45
45
|
|
46
46
|
def child_finished(stdout, stderr, status)
|
data/lib/cukeq/version.rb
CHANGED
data/lib/cukeq.rb
CHANGED
@@ -16,12 +16,13 @@ require "cukeq/webapp"
|
|
16
16
|
require "cukeq/scm"
|
17
17
|
require "cukeq/scm/git_bridge"
|
18
18
|
|
19
|
-
begin
|
20
|
-
|
21
|
-
rescue LoadError
|
19
|
+
# begin
|
20
|
+
# require "cukeq/scm/svn_bridge"
|
21
|
+
# rescue LoadError
|
22
22
|
require "cukeq/scm/shell_svn_bridge"
|
23
|
-
end
|
23
|
+
# end
|
24
24
|
|
25
|
+
require "cukeq/async_job"
|
25
26
|
require "cukeq/reporter"
|
26
27
|
require "cukeq/scenario_exploder"
|
27
28
|
require "cukeq/scenario_runner"
|