server-blender-manifest 0.0.9 → 0.0.11

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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.9
1
+ 0.0.11
@@ -0,0 +1,5 @@
1
+ module Blender
2
+ module Manifest
3
+ ROOT = File.expand_path("../manifest/root.rb", __FILE__)
4
+ end
5
+ end
@@ -1,14 +1,14 @@
1
1
  require 'ruby-debug'
2
- $: << File.dirname(__FILE__) # FIXME: remove?
3
2
 
4
3
  module Blender
5
4
  module Manifest; end
6
5
  module Recipes; end
7
6
  end
8
- require 'init'
9
- require 'nodes'
10
- require 'roles'
11
- require 'mixer'
7
+
8
+ require 'blender/manifest/init'
9
+ require 'blender/manifest/nodes'
10
+ require 'blender/manifest/roles'
11
+ require 'blender/manifest/mixer'
12
12
 
13
13
  class Root < ::ShadowPuppet::Manifest
14
14
  include Blender::Manifest::Init
@@ -34,5 +34,5 @@ include Blender::Manifest::Mixer
34
34
  # "project" recipe directory
35
35
  $: << "recipes"
36
36
 
37
- # add all libs in the ./vendor directory to the path
38
- $:.concat Dir["vendor/recipes/*/"]
37
+ # add all libs in the ./cookbook directory to the path
38
+ $:.concat Dir["cookbook/*/recipes"]
@@ -5,17 +5,15 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{server-blender-manifest}
8
- s.version = "0.0.9"
8
+ s.version = "0.0.11"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Vitaly Kushner"]
12
12
  s.date = %q{2010-06-15}
13
- s.default_executable = %q{blender-mix-recipe}
14
13
  s.description = %q{This gem is part of the server-blender family (http://astrails.com/opensource/server-blender)
15
14
  It contains server-side root manifest implementation for blender recipes. See server-blender for more information.
16
15
  }
17
16
  s.email = %q{vitaly@astrails.com}
18
- s.executables = ["blender-mix-recipe"]
19
17
  s.extra_rdoc_files = [
20
18
  "LICENSE",
21
19
  "README.markdown"
@@ -26,7 +24,7 @@ It contains server-side root manifest implementation for blender recipes. See se
26
24
  "README.markdown",
27
25
  "Rakefile",
28
26
  "VERSION",
29
- "bin/blender-mix-recipe",
27
+ "lib/blender/manifest.rb",
30
28
  "lib/blender/manifest/init.rb",
31
29
  "lib/blender/manifest/mixer.rb",
32
30
  "lib/blender/manifest/nodes.rb",
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 9
9
- version: 0.0.9
8
+ - 11
9
+ version: 0.0.11
10
10
  platform: ruby
11
11
  authors:
12
12
  - Vitaly Kushner
@@ -15,7 +15,7 @@ bindir: bin
15
15
  cert_chain: []
16
16
 
17
17
  date: 2010-06-15 00:00:00 +03:00
18
- default_executable: blender-mix-recipe
18
+ default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: rspec
@@ -36,8 +36,8 @@ description: |
36
36
  It contains server-side root manifest implementation for blender recipes. See server-blender for more information.
37
37
 
38
38
  email: vitaly@astrails.com
39
- executables:
40
- - blender-mix-recipe
39
+ executables: []
40
+
41
41
  extensions: []
42
42
 
43
43
  extra_rdoc_files:
@@ -49,7 +49,7 @@ files:
49
49
  - README.markdown
50
50
  - Rakefile
51
51
  - VERSION
52
- - bin/blender-mix-recipe
52
+ - lib/blender/manifest.rb
53
53
  - lib/blender/manifest/init.rb
54
54
  - lib/blender/manifest/mixer.rb
55
55
  - lib/blender/manifest/nodes.rb
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- system "shadow_puppet", File.expand_path("../../lib/blender/manifest/root.rb", __FILE__)