cukeq 0.0.1.dev2 → 0.0.1.dev3
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/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