busser 0.6.0.beta.1 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -1
- data/lib/busser/command/setup.rb +4 -4
- data/lib/busser/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 800f39c4cfe169cf851757eca11e4e278759066d
|
4
|
+
data.tar.gz: 82795ffc0a8d04d0390bc03dcbe84c12d8856bf8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: da2598e151602e7b976c03137060bfa3a3a582d08f89b172109c5d28a59baaa02eebcf86c25130f42a5d8e15b0978c5b24431ff8d108a573dea1726c239558c3
|
7
|
+
data.tar.gz: 79414b62137ed0a2e8bd6622fb3d35b6ab3e47755ba81023763f2de9d69fe42954f3a5a996232fbc7de63a30c64f7f44bcf65548f65a4f9d25854faaf7c64dce
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
## 0.6.0 / 2013-11-27
|
2
|
+
|
3
|
+
### Breaking changes
|
4
|
+
|
5
|
+
* Pull request [#2][]: Remove soft dependency on Chef library code (chef\_apply). ([@fnichol][])
|
6
|
+
|
7
|
+
### Improvements
|
8
|
+
|
9
|
+
* Ensure that the Busser binstub script is bourne shell safe. ([@fnichol][])
|
10
|
+
|
1
11
|
## 0.5.0 / 2013-11-20
|
2
12
|
|
3
13
|
### Improvements
|
@@ -73,4 +83,5 @@
|
|
73
83
|
* Initial release
|
74
84
|
|
75
85
|
<!--- The following link definition list is generated by PimpMyChangelog --->
|
76
|
-
[
|
86
|
+
[#2]: https://github.com/test-kitchen/busser/issues/2
|
87
|
+
[@fnichol]: https://github.com/fnichol
|
data/lib/busser/command/setup.rb
CHANGED
@@ -48,21 +48,21 @@ module Busser
|
|
48
48
|
info "Creating busser binstub"
|
49
49
|
create_file(binstub, :verbose => false) do
|
50
50
|
<<-BUSSER_BINSTUB.gsub(/^ {12}/, '')
|
51
|
-
#!/usr/bin/env
|
51
|
+
#!/usr/bin/env sh
|
52
52
|
#
|
53
53
|
# This file was generated by Busser.
|
54
54
|
#
|
55
55
|
# The application 'busser' is installed as part of a gem, and
|
56
56
|
# this file is here to facilitate running it.
|
57
57
|
#
|
58
|
-
[ -n "$DEBUG" ]
|
58
|
+
if [ -n "$DEBUG" ] ; then set -x ; fi
|
59
59
|
|
60
60
|
# Get the directory where this ruby is. This will also resolve
|
61
61
|
# any symlinks in the directory/script, so it will be the fully
|
62
62
|
# resolved path.
|
63
63
|
SOURCE="#{ruby_bin}"
|
64
|
-
while [ -h "$SOURCE" ] ; do SOURCE="
|
65
|
-
DIR="
|
64
|
+
while [ -h "$SOURCE" ] ; do SOURCE="`readlink "$SOURCE"`"; done
|
65
|
+
DIR="`cd -P "\\`dirname "$SOURCE"\\`" && pwd`"
|
66
66
|
|
67
67
|
# Set Busser Root path
|
68
68
|
BUSSER_ROOT="#{root_path}"
|
data/lib/busser/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: busser
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.0
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fletcher Nichol
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-11-
|
11
|
+
date: 2013-11-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -264,9 +264,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
264
264
|
version: 1.9.1
|
265
265
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
266
266
|
requirements:
|
267
|
-
- - '
|
267
|
+
- - '>='
|
268
268
|
- !ruby/object:Gem::Version
|
269
|
-
version:
|
269
|
+
version: '0'
|
270
270
|
requirements: []
|
271
271
|
rubyforge_project:
|
272
272
|
rubygems_version: 2.0.3
|