go_figure 0.0.6 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/go-pipelines.xml.erb +3 -3
- data/lib/go_figure/version.rb +1 -1
- metadata +1 -1
data/lib/go-pipelines.xml.erb
CHANGED
@@ -7,21 +7,21 @@
|
|
7
7
|
<jobs>
|
8
8
|
<job name="Test">
|
9
9
|
<tasks>
|
10
|
-
<exec command="bundle"
|
10
|
+
<exec command="bundle">
|
11
11
|
<arg>install</arg>
|
12
12
|
<arg>--local</arg>
|
13
13
|
<arg>--path</arg>
|
14
14
|
<arg>.bundle</arg>
|
15
15
|
<runif status="passed" />
|
16
16
|
</exec>
|
17
|
-
<exec command="bundle"
|
17
|
+
<exec command="bundle">
|
18
18
|
<arg>exec</arg>
|
19
19
|
<arg>rake</arg>
|
20
20
|
<arg>db:create</arg>
|
21
21
|
<arg>db:migrate</arg>
|
22
22
|
<runif status="passed" />
|
23
23
|
</exec>
|
24
|
-
<exec command="bundle"
|
24
|
+
<exec command="bundle">
|
25
25
|
<arg>exec</arg>
|
26
26
|
<arg>rake</arg>
|
27
27
|
<runif status="passed" />
|
data/lib/go_figure/version.rb
CHANGED