opskeleton 0.0.4 → 0.0.5

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.
data/TODOS CHANGED
@@ -1,3 +1,5 @@
1
1
  * Add testing support, both smoke and rspec
2
2
  * Add travis.ci support
3
3
  * Test thor tasks using http://tinyurl.com/a7x4j8r
4
+ * Add optional git skip flag
5
+ * Validate boxes agains existing vagrant boxes and issue warning
data/bin/opsk CHANGED
@@ -23,6 +23,12 @@ module Opsk
23
23
  empty_directory('pkg')
24
24
  end
25
25
 
26
+ def create_scripts
27
+ empty_directory('scripts')
28
+ template('templates/scripts/lookup.sh', "scripts/lookup.sh")
29
+ template('templates/scripts/run.sh', "scripts/run.sh")
30
+ end
31
+
26
32
  def package
27
33
  name = File.basename(Dir.getwd)
28
34
  ignored = IO.readlines('.gitignore').map(&:chomp)
@@ -1,3 +1,3 @@
1
1
  module Opskeleton
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
@@ -0,0 +1 @@
1
+ wget -q -O - "http://$1:8080/registry/profile/$2"
@@ -0,0 +1,2 @@
1
+ puppet apply --modulepath=modules:static-modules manifests/default.pp\
2
+ --node_terminus exec --external_nodes=`pwd`/scripts/lookup.sh --hiera_config hiera.yaml $@
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opskeleton
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-02-12 00:00:00.000000000 Z
12
+ date: 2013-02-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: thor
@@ -57,6 +57,8 @@ files:
57
57
  - templates/puppetfile.erb
58
58
  - templates/run.sh
59
59
  - templates/rvmrc.erb
60
+ - templates/scripts/lookup.sh
61
+ - templates/scripts/run.sh
60
62
  - templates/spec.erb
61
63
  - templates/vagrant.erb
62
64
  homepage: https://github.com/narkisr/opskeleton