busser-shindo 0.1.0 → 0.2.0
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/CHANGELOG.md +6 -30
- data/lib/busser/runner_plugin/shindo.rb +9 -3
- data/lib/busser/shindo/version.rb +1 -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: 98f32c29f3af8c20fd07685b4490c4662c900545
|
4
|
+
data.tar.gz: 5d0d9e4a0ad56b204e93792d523a8a3ed5858b62
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e9a5ee4d1ac75f096be7748479600c89c6f0f2c47c9eb3cf338fcf6499689095d864fc880f96e405c879b12da16afed93e60765d2ae99bbea5f5f6bcd345019
|
7
|
+
data.tar.gz: d3775919cc36f52d0a2d52a70acbc0aac74de9aab05912c2dd31f726b8ac5d11462428b1802d964d53020986d0cb0922052d5803ae172273806e97b169d7a11a
|
data/CHANGELOG.md
CHANGED
@@ -1,33 +1,9 @@
|
|
1
|
-
## 0.
|
1
|
+
## 0.1.1
|
2
2
|
|
3
|
-
|
4
|
-
|
3
|
+
- fix Gem bin path
|
4
|
+
- do bundle when found Gemfile
|
5
5
|
|
6
|
-
## 0.
|
6
|
+
## 0.1.0
|
7
7
|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
## 0.2.3 / 2013-07-10
|
12
|
-
|
13
|
-
* issue #2: remove tight dependency of serverspec. thanks to rteabeault.
|
14
|
-
|
15
|
-
## 0.2.2 / 2013-07-09
|
16
|
-
|
17
|
-
* issue #2: remove dependency rspec.
|
18
|
-
|
19
|
-
## 0.2.1 / 2013-06-18
|
20
|
-
|
21
|
-
* fix silly exit value.
|
22
|
-
|
23
|
-
## 0.2.0 / 2013-06-18
|
24
|
-
|
25
|
-
* issue #1: do not print full backtrace if serverspec test failure.
|
26
|
-
|
27
|
-
## 0.1.1 / 2013-06-06
|
28
|
-
|
29
|
-
* add cucumber test and fix related things
|
30
|
-
|
31
|
-
## 0.1.0 / 2013-05-22
|
32
|
-
|
33
|
-
* Initial release
|
8
|
+
- Initial release
|
9
|
+
- Just do run shindont
|
@@ -26,12 +26,18 @@ require 'busser/runner_plugin'
|
|
26
26
|
class Busser::RunnerPlugin::Shindo < Busser::RunnerPlugin::Base
|
27
27
|
postinstall do
|
28
28
|
install_gem("shindo")
|
29
|
+
install_gem("bundler")
|
29
30
|
end
|
30
31
|
|
31
32
|
def test
|
32
|
-
|
33
|
+
## Refered from busser-rspec
|
34
|
+
if File.exists?(File.join(suite_path, "Gemfile"))
|
35
|
+
# Bundle install local completes quickly if the gems are already found locally
|
36
|
+
# it fails if it needs to talk to the internet. The || below is the fallback
|
37
|
+
# to the internet-enabled version. It's a speed optimization.
|
38
|
+
run("env PATH=#{ENV['PATH']}:#{Gem.bindir} bundle install --local || bundle install")
|
39
|
+
end
|
33
40
|
|
34
|
-
|
35
|
-
run!("shindont #{suite_path('shindo')}")
|
41
|
+
run!("env PATH=#{ENV['PATH']}:#{Gem.bindir} shindont #{suite_path('shindo')}")
|
36
42
|
end
|
37
43
|
end
|