cardboard 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/cardboard.gemspec +1 -1
- data/libexec/cibuild +3 -3
- metadata +2 -2
data/cardboard.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |gem|
|
2
2
|
gem.name = "cardboard"
|
3
|
-
gem.version = "1.0.
|
3
|
+
gem.version = "1.0.3"
|
4
4
|
gem.authors = ["John Barnette", "Will Farrington"]
|
5
5
|
gem.email = ["jbarnette@github.com", "wfarr@github.com"]
|
6
6
|
gem.description = "Development tools for Boxen's puppet modules."
|
data/libexec/cibuild
CHANGED
@@ -4,10 +4,10 @@
|
|
4
4
|
libexec=$(dirname "$0")
|
5
5
|
|
6
6
|
echo "--> Checking syntax:"
|
7
|
-
"$libexec/syntax" || exit 1
|
7
|
+
"$libexec/syntax" "$@" || exit 1
|
8
8
|
|
9
9
|
echo "--> Running specs:"
|
10
|
-
"$libexec/specs" || exit 1
|
10
|
+
"$libexec/specs" "$@" || exit 1
|
11
11
|
|
12
12
|
echo "--> Checking lint:"
|
13
|
-
"$libexec/lint" || exit 1
|
13
|
+
"$libexec/lint" "$@" || exit 1
|