godhead 0.0.1 → 0.0.2

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.1
1
+ 0.0.2
data/godhead.gemspec ADDED
@@ -0,0 +1,76 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{godhead}
8
+ s.version = "0.0.2"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Philip (flip) Kromer"]
12
+ s.date = %q{2009-12-07}
13
+ s.description = %q{Configure God monitored processes according to their concerns the servers (path and so forth), site policy (number, ports, etc), and notification (email groups, mailserver, etc).}
14
+ s.email = %q{flip@infochimps.org}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README-god.textile"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".gitignore",
22
+ "LICENSE",
23
+ "README-god.textile",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "godhead.gemspec",
27
+ "lib/godhead.rb",
28
+ "lib/godhead/extensions.rb",
29
+ "lib/godhead/extensions/hash.rb",
30
+ "lib/godhead/god_recipe.rb",
31
+ "lib/godhead/mixins.rb",
32
+ "lib/godhead/mixins/runs_as_service.rb",
33
+ "lib/godhead/notification.rb",
34
+ "lib/godhead/notification/gmail.rb",
35
+ "lib/godhead/process_groups.rb",
36
+ "lib/godhead/recipes.rb",
37
+ "lib/godhead/recipes/beanstalkd_recipe.rb",
38
+ "lib/godhead/recipes/generic_worker_recipe.rb",
39
+ "lib/godhead/recipes/memcached_recipe.rb",
40
+ "lib/godhead/recipes/nginx_recipe.rb",
41
+ "lib/godhead/recipes/starling_recipe.rb",
42
+ "lib/godhead/recipes/thin_recipe.rb",
43
+ "lib/godhead/recipes/tyrant_recipe.rb",
44
+ "sample.god",
45
+ "spec/godhead_spec.rb",
46
+ "spec/spec_helper.rb"
47
+ ]
48
+ s.homepage = %q{http://github.com/mrflip/godhead}
49
+ s.rdoc_options = ["--charset=UTF-8"]
50
+ s.require_paths = ["lib"]
51
+ s.rubygems_version = %q{1.3.5}
52
+ s.summary = %q{God recipes that separate configuration for processes, site policy and notifications; comes with many examples}
53
+ s.test_files = [
54
+ "spec/godhead_spec.rb",
55
+ "spec/spec_helper.rb"
56
+ ]
57
+
58
+ if s.respond_to? :specification_version then
59
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
60
+ s.specification_version = 3
61
+
62
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
63
+ s.add_development_dependency(%q<rspec>, [">= 0"])
64
+ s.add_development_dependency(%q<yard>, [">= 0"])
65
+ s.add_runtime_dependency(%q<extlib>, [">= 0"])
66
+ else
67
+ s.add_dependency(%q<rspec>, [">= 0"])
68
+ s.add_dependency(%q<yard>, [">= 0"])
69
+ s.add_dependency(%q<extlib>, [">= 0"])
70
+ end
71
+ else
72
+ s.add_dependency(%q<rspec>, [">= 0"])
73
+ s.add_dependency(%q<yard>, [">= 0"])
74
+ s.add_dependency(%q<extlib>, [">= 0"])
75
+ end
76
+ end
@@ -15,7 +15,6 @@ module Godhead
15
15
  def initialize _options={}
16
16
  super _options
17
17
  raise "need a runner path" unless options[:runner_path]
18
- p options
19
18
  end
20
19
 
21
20
  # name the recipe after the worker script
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: godhead
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Philip (flip) Kromer
@@ -58,6 +58,7 @@ files:
58
58
  - README-god.textile
59
59
  - Rakefile
60
60
  - VERSION
61
+ - godhead.gemspec
61
62
  - lib/godhead.rb
62
63
  - lib/godhead/extensions.rb
63
64
  - lib/godhead/extensions/hash.rb