busser 0.6.1 → 0.6.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7b72fd59135ca003d371dd87f7424b419b1c6b4c
4
- data.tar.gz: b54e624af6811629926648fb49b9506e8c3b4def
3
+ metadata.gz: 4d045253e54d678f4f93e164d58da94b6c67d9fc
4
+ data.tar.gz: 80164131f2d702ca8be26f23346a030c8eb29617
5
5
  SHA512:
6
- metadata.gz: e884518990da3a8a31c6076e2f9cbd386b5ef3aa940e70c8d346010f425418ec14cd5372e92aa0e8fb32ba50356b6188ce473b37bd18f9f9cb476525b9eab666
7
- data.tar.gz: a806bd91b9f165c6588c54b5ae69a6ba9972be466fa5b5ad3327355697f5e08310c002c33662a032fe98300e3dd612bc0118c9620f3ce7468a37896b2f357384
6
+ metadata.gz: e55ea6aba11d5800810e1edf771c9ae2d929616f7dda3155bc6ba92109efdbf4cb77b8d2fcf4a80fb7831aaf4f8d6845e180731b87c2afc9a39c60fa196dc201
7
+ data.tar.gz: 1704d27a0812b2103e730300d82b09461d1a30fd136608bc604a28d2db1fe8ebce4b65117a273ba4e2eeb0996a4ba7860f7481fdff47e56ed0df0d2dd932f897
data/.travis.yml CHANGED
@@ -1,16 +1,17 @@
1
1
  language: ruby
2
2
 
3
3
  rvm:
4
+ - 2.1
4
5
  - 2.0.0
5
6
  - 1.9.3
6
7
  - 1.9.2
7
8
  - ruby-head
8
9
 
9
10
  env:
10
- - RUBYGEMS_VERSION=2.0.3 CHEF_VERSION=11.8.0
11
- - RUBYGEMS_VERSION=2.0.3 CHEF_VERSION=10.28.2
12
- - RUBYGEMS_VERSION=1.8.25 CHEF_VERSION=11.8.0
13
- - RUBYGEMS_VERSION=1.8.25 CHEF_VERSION=10.28.2
11
+ - RUBYGEMS_VERSION=2.2.2
12
+ - RUBYGEMS_VERSION=2.1.11
13
+ - RUBYGEMS_VERSION=2.0.14
14
+ - RUBYGEMS_VERSION=1.8.28
14
15
 
15
16
  before_install:
16
17
  - gem update --system $RUBYGEMS_VERSION
@@ -20,9 +21,9 @@ bundler_args: --without guard
20
21
 
21
22
  matrix:
22
23
  exclude:
24
+ - rvm: 2.1
25
+ env: RUBYGEMS_VERSION=1.8.28
23
26
  - rvm: 2.0.0
24
- env: RUBYGEMS_VERSION=1.8.25 CHEF_VERSION=10.28.2
25
- - rvm: 2.0.0
26
- env: RUBYGEMS_VERSION=1.8.25 CHEF_VERSION=11.8.0
27
+ env: RUBYGEMS_VERSION=1.8.28
27
28
  allow_failures:
28
29
  - rvm: ruby-head
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## 0.6.2 / 2014-03-23
2
+
3
+ ### Bug fixes
4
+
5
+ * Pull request [#8][]: Invoke prepare.sh scripts with /bin/sh for platforms without bash. ([@fnichol][])
6
+
7
+
1
8
  ## 0.6.1 / 2014-03-23
2
9
 
3
10
  ### Bug fixes
@@ -99,6 +106,7 @@
99
106
  [#5]: https://github.com/test-kitchen/busser/issues/5
100
107
  [#6]: https://github.com/test-kitchen/busser/issues/6
101
108
  [#7]: https://github.com/test-kitchen/busser/issues/7
109
+ [#8]: https://github.com/test-kitchen/busser/issues/8
102
110
  [@fnichol]: https://github.com/fnichol
103
111
  [@jtimberman]: https://github.com/jtimberman
104
112
  [@neuhalje]: https://github.com/neuhalje
data/Gemfile CHANGED
@@ -3,15 +3,7 @@ source 'https://rubygems.org'
3
3
  gemspec
4
4
 
5
5
  group :guard do
6
- gem 'rb-inotify', :require => false
7
- gem 'rb-fsevent', :require => false
8
- gem 'rb-fchange', :require => false
9
6
  gem 'guard-minitest'
10
7
  gem 'guard-cucumber'
11
8
  gem 'guard-cane'
12
9
  end
13
-
14
- group :test do
15
- # allow CI to override the version of Chef for matrix testing
16
- gem 'chef', (ENV['CHEF_VERSION'] || '>= 0.10.10')
17
- end
data/busser.gemspec CHANGED
@@ -22,8 +22,6 @@ Gem::Specification.new do |spec|
22
22
 
23
23
  spec.add_dependency 'thor', '<= 0.19.0'
24
24
 
25
- spec.add_development_dependency "chef"
26
-
27
25
  spec.add_development_dependency "bundler", "~> 1.3"
28
26
  spec.add_development_dependency "rake"
29
27
  spec.add_development_dependency 'minitest'
@@ -60,7 +60,7 @@ module Busser
60
60
 
61
61
  if prepare_sh_script.exist?
62
62
  banner "Preparing #{runner} suite with #{prepare_sh_script}"
63
- run!("bash #{prepare_sh_script}")
63
+ run!("/bin/sh #{prepare_sh_script}")
64
64
  end
65
65
  end
66
66
 
@@ -17,5 +17,5 @@
17
17
  # limitations under the License.
18
18
 
19
19
  module Busser
20
- VERSION = "0.6.1"
20
+ VERSION = "0.6.2"
21
21
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: busser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fletcher Nichol
@@ -24,20 +24,6 @@ dependencies:
24
24
  - - "<="
25
25
  - !ruby/object:Gem::Version
26
26
  version: 0.19.0
27
- - !ruby/object:Gem::Dependency
28
- name: chef
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: '0'
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - ">="
39
- - !ruby/object:Gem::Version
40
- version: '0'
41
27
  - !ruby/object:Gem::Dependency
42
28
  name: bundler
43
29
  requirement: !ruby/object:Gem::Requirement