cukeq 0.0.1.dev2 → 0.0.1.dev3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/cukeq/scenario_runner.rb +1 -1
- data/lib/cukeq/version.rb +1 -1
- metadata +2 -2
@@ -28,7 +28,7 @@ module CukeQ
|
|
28
28
|
url = job['scm']['url']
|
29
29
|
rev = job['scm']['revision']
|
30
30
|
|
31
|
-
scm = Scm.new(@repos
|
31
|
+
scm = Scm.new(url, @repos)
|
32
32
|
unless scm.current_revision.to_s == rev.to_s
|
33
33
|
# TODO(jari): this doesn't ensure that current_revision == rev - it
|
34
34
|
# would also make sense to move the logic to Scm
|
data/lib/cukeq/version.rb
CHANGED