perf_check 0.1.16 → 0.1.17
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.
- checksums.yaml +4 -4
- data/lib/perf_check/git.rb +3 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 652fdb1324ce2aa4643aa2918473efc2542bde0e
|
4
|
+
data.tar.gz: f6efe52a88e37d5ffc70f025f00982dc42920cfe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e2e64a0443959db20be5f795178845f1866ba39b7f74edf3cbb187bac7a1aefd3845e61863cef9dd28bb02179a3857cbc7fa4fa3f50f148de391348fd243fdc
|
7
|
+
data.tar.gz: 3a0edc3fdb8da04684ae10797459a12f1b3175e3cad80b1c17bda25938b05f7e77088fd6390b07997889edad7f6fceadfcb63dc5a744a5e3e0b1d8b667df13d2
|
data/lib/perf_check/git.rb
CHANGED
@@ -21,9 +21,11 @@ class PerfCheck
|
|
21
21
|
end
|
22
22
|
|
23
23
|
def self.checkout(branch)
|
24
|
-
$stderr.print "Checking out #{branch}... "
|
24
|
+
$stderr.print "Checking out #{branch} and bundling... "
|
25
25
|
`git checkout #{branch} --quiet`
|
26
26
|
abort "Problem with git checkout! Bailing..." unless $?.success?
|
27
|
+
`bundle`
|
28
|
+
abort "Problem bundling! Bailing..." unless $?.success?
|
27
29
|
end
|
28
30
|
|
29
31
|
def self.stash_if_needed
|