cardboard 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/cardboard.gemspec +1 -1
  2. data/libexec/syntax +3 -6
  3. metadata +3 -3
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |gem|
2
2
  gem.name = "cardboard"
3
- gem.version = "1.0.0"
3
+ gem.version = "1.0.1"
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."
@@ -3,12 +3,9 @@
3
3
 
4
4
  set -e
5
5
 
6
- puppets=`find manifests -name '*.pp' -print 2>/dev/null`
7
- rubies=`find lib spec -name '*.rb' -not -path 'spec/fixtures/*' -print 2>/dev/null`
8
-
9
- if [ -d "templates" ] ; then
10
- templates=`find templates -type f -print 2>/dev/null`
11
- fi
6
+ puppets=`find . -type f -path './manifests/*' -name '*.pp' -print 2>/dev/null`
7
+ rubies=`find . -type f -path './lib/*' -or -path './spec/*' -not -path './spec/fixtures/*' -name '*.rb' -print 2>/dev/null`
8
+ templates=`find . -type f -path './templates/*' -name '*.erb' -print 2>/dev/null`
12
9
 
13
10
  for puppet in $puppets; do
14
11
  /bin/echo -n "${puppet}: "
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 0
8
- - 0
9
- version: 1.0.0
8
+ - 1
9
+ version: 1.0.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - John Barnette
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2013-02-13 00:00:00 -08:00
18
+ date: 2013-03-05 00:00:00 -08:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency