capigen 0.1.1
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/Capfile +22 -0
- data/History.txt +3 -0
- data/License.txt +20 -0
- data/Manifest.txt +83 -0
- data/README.txt +35 -0
- data/Rakefile +4 -0
- data/config/hoe.rb +70 -0
- data/config/requirements.rb +17 -0
- data/init.rb +3 -0
- data/lib/capigen/config.rb +84 -0
- data/lib/capigen/helper.rb +51 -0
- data/lib/capigen/helpers/gem_helper.rb +15 -0
- data/lib/capigen/helpers/package_helper.rb +40 -0
- data/lib/capigen/helpers/script_helper.rb +30 -0
- data/lib/capigen/helpers/wget_helper.rb +17 -0
- data/lib/capigen/packagers/yum.rb +46 -0
- data/lib/capigen/profiles.rb +19 -0
- data/lib/capigen/recipes.yml +14 -0
- data/lib/capigen/templates.rb +65 -0
- data/lib/capigen/version.rb +9 -0
- data/lib/capigen.rb +26 -0
- data/recipes/README +12 -0
- data/recipes/bootstrap/patch.rb +87 -0
- data/recipes/centos.rb +40 -0
- data/recipes/deploy.rb +17 -0
- data/recipes/gems.rb +8 -0
- data/recipes/imagemagick.rb +9 -0
- data/recipes/install.rb +13 -0
- data/recipes/memcached.rb +15 -0
- data/recipes/mongrel_cluster.rb +49 -0
- data/recipes/monit.rb +16 -0
- data/recipes/mysql.rb +24 -0
- data/recipes/nginx.rb +42 -0
- data/recipes/profiles/centos-sick.rb +65 -0
- data/recipes/rails.rb +14 -0
- data/recipes/ruby.rb +14 -0
- data/recipes/sphinx.rb +62 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/script/txt2html +74 -0
- data/setup.rb +1585 -0
- data/tasks/capigen.rake +13 -0
- data/tasks/deployment.rake +34 -0
- data/tasks/environment.rake +7 -0
- data/tasks/website.rake +17 -0
- data/templates/capistrano/Capfile +22 -0
- data/templates/capistrano/deploy.rb.erb +61 -0
- data/templates/centos/setup.sh +17 -0
- data/templates/centos/sudoers +95 -0
- data/templates/imagemagick/install.sh +20 -0
- data/templates/memcached/install.sh +27 -0
- data/templates/memcached/memcached.initd.centos.erb +70 -0
- data/templates/memcached/memcached.monitrc.erb +4 -0
- data/templates/mongrel/mongrel_cluster.initd.erb +61 -0
- data/templates/mongrel/mongrel_cluster.monitrc.erb +15 -0
- data/templates/mongrel/mongrel_cluster.yml.erb +10 -0
- data/templates/monit/cert.sh +14 -0
- data/templates/monit/install.sh +29 -0
- data/templates/monit/monit.cnf +34 -0
- data/templates/monit/monit.initd.centos.erb +68 -0
- data/templates/monit/monitrc.erb +28 -0
- data/templates/monit/patch_inittab.sh +15 -0
- data/templates/mysql/install.sh.erb +10 -0
- data/templates/mysql/install_db.sql.erb +5 -0
- data/templates/mysql/mysql.monitrc.erb +6 -0
- data/templates/nginx/install.sh.erb +42 -0
- data/templates/nginx/nginx.conf.erb +76 -0
- data/templates/nginx/nginx.initd.erb +62 -0
- data/templates/nginx/nginx.monitrc.erb +4 -0
- data/templates/nginx/nginx_vhost.conf.erb +94 -0
- data/templates/rails/database.yml.erb +42 -0
- data/templates/ruby/ruby_install.sh +26 -0
- data/templates/ruby/rubygems_install.sh +13 -0
- data/templates/sphinx/install.sh.erb +22 -0
- data/templates/sphinx/sphinx.conf.erb +496 -0
- data/templates/sphinx/sphinx.monitrc.erb +4 -0
- data/templates/sphinx/sphinx_app.initd.centos.erb +67 -0
- data/templates/sphinx/sphinx_app.initd.erb +57 -0
- data/website/index.html +93 -0
- data/website/index.txt +39 -0
- data/website/javascripts/rounded_corners_lite.inc.js +285 -0
- data/website/stylesheets/screen.css +138 -0
- data/website/template.rhtml +48 -0
- metadata +141 -0
metadata
ADDED
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: capigen
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.1
|
|
5
|
+
platform: ""
|
|
6
|
+
authors:
|
|
7
|
+
- Gabriel Handford
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
|
|
12
|
+
date: 2008-02-06 00:00:00 -05:00
|
|
13
|
+
default_executable:
|
|
14
|
+
dependencies: []
|
|
15
|
+
|
|
16
|
+
description: Capistrano recipe library for all types of remote tasks.
|
|
17
|
+
email:
|
|
18
|
+
- gabrielh@gmail.com
|
|
19
|
+
executables: []
|
|
20
|
+
|
|
21
|
+
extensions: []
|
|
22
|
+
|
|
23
|
+
extra_rdoc_files:
|
|
24
|
+
- History.txt
|
|
25
|
+
- License.txt
|
|
26
|
+
- Manifest.txt
|
|
27
|
+
- README.txt
|
|
28
|
+
- website/index.txt
|
|
29
|
+
files:
|
|
30
|
+
- Capfile
|
|
31
|
+
- History.txt
|
|
32
|
+
- License.txt
|
|
33
|
+
- Manifest.txt
|
|
34
|
+
- README.txt
|
|
35
|
+
- Rakefile
|
|
36
|
+
- config/hoe.rb
|
|
37
|
+
- config/requirements.rb
|
|
38
|
+
- init.rb
|
|
39
|
+
- lib/capigen.rb
|
|
40
|
+
- lib/capigen/config.rb
|
|
41
|
+
- lib/capigen/helper.rb
|
|
42
|
+
- lib/capigen/helpers/gem_helper.rb
|
|
43
|
+
- lib/capigen/helpers/package_helper.rb
|
|
44
|
+
- lib/capigen/helpers/script_helper.rb
|
|
45
|
+
- lib/capigen/helpers/wget_helper.rb
|
|
46
|
+
- lib/capigen/packagers/yum.rb
|
|
47
|
+
- lib/capigen/profiles.rb
|
|
48
|
+
- lib/capigen/recipes.yml
|
|
49
|
+
- lib/capigen/templates.rb
|
|
50
|
+
- lib/capigen/version.rb
|
|
51
|
+
- recipes/README
|
|
52
|
+
- recipes/bootstrap/patch.rb
|
|
53
|
+
- recipes/centos.rb
|
|
54
|
+
- recipes/deploy.rb
|
|
55
|
+
- recipes/gems.rb
|
|
56
|
+
- recipes/imagemagick.rb
|
|
57
|
+
- recipes/install.rb
|
|
58
|
+
- recipes/memcached.rb
|
|
59
|
+
- recipes/mongrel_cluster.rb
|
|
60
|
+
- recipes/monit.rb
|
|
61
|
+
- recipes/mysql.rb
|
|
62
|
+
- recipes/nginx.rb
|
|
63
|
+
- recipes/profiles/centos-sick.rb
|
|
64
|
+
- recipes/rails.rb
|
|
65
|
+
- recipes/ruby.rb
|
|
66
|
+
- recipes/sphinx.rb
|
|
67
|
+
- script/destroy
|
|
68
|
+
- script/generate
|
|
69
|
+
- script/txt2html
|
|
70
|
+
- setup.rb
|
|
71
|
+
- tasks/capigen.rake
|
|
72
|
+
- tasks/deployment.rake
|
|
73
|
+
- tasks/environment.rake
|
|
74
|
+
- tasks/website.rake
|
|
75
|
+
- templates/capistrano/Capfile
|
|
76
|
+
- templates/capistrano/deploy.rb.erb
|
|
77
|
+
- templates/centos/setup.sh
|
|
78
|
+
- templates/centos/sudoers
|
|
79
|
+
- templates/imagemagick/install.sh
|
|
80
|
+
- templates/memcached/install.sh
|
|
81
|
+
- templates/memcached/memcached.initd.centos.erb
|
|
82
|
+
- templates/memcached/memcached.monitrc.erb
|
|
83
|
+
- templates/mongrel/mongrel_cluster.initd.erb
|
|
84
|
+
- templates/mongrel/mongrel_cluster.monitrc.erb
|
|
85
|
+
- templates/mongrel/mongrel_cluster.yml.erb
|
|
86
|
+
- templates/monit/cert.sh
|
|
87
|
+
- templates/monit/install.sh
|
|
88
|
+
- templates/monit/monit.cnf
|
|
89
|
+
- templates/monit/monit.initd.centos.erb
|
|
90
|
+
- templates/monit/monitrc.erb
|
|
91
|
+
- templates/monit/patch_inittab.sh
|
|
92
|
+
- templates/mysql/install.sh.erb
|
|
93
|
+
- templates/mysql/install_db.sql.erb
|
|
94
|
+
- templates/mysql/mysql.monitrc.erb
|
|
95
|
+
- templates/nginx/install.sh.erb
|
|
96
|
+
- templates/nginx/nginx.conf.erb
|
|
97
|
+
- templates/nginx/nginx.initd.erb
|
|
98
|
+
- templates/nginx/nginx.monitrc.erb
|
|
99
|
+
- templates/nginx/nginx_vhost.conf.erb
|
|
100
|
+
- templates/rails/database.yml.erb
|
|
101
|
+
- templates/ruby/ruby_install.sh
|
|
102
|
+
- templates/ruby/rubygems_install.sh
|
|
103
|
+
- templates/sphinx/install.sh.erb
|
|
104
|
+
- templates/sphinx/sphinx.conf.erb
|
|
105
|
+
- templates/sphinx/sphinx.monitrc.erb
|
|
106
|
+
- templates/sphinx/sphinx_app.initd.centos.erb
|
|
107
|
+
- templates/sphinx/sphinx_app.initd.erb
|
|
108
|
+
- website/index.html
|
|
109
|
+
- website/index.txt
|
|
110
|
+
- website/javascripts/rounded_corners_lite.inc.js
|
|
111
|
+
- website/stylesheets/screen.css
|
|
112
|
+
- website/template.rhtml
|
|
113
|
+
has_rdoc: true
|
|
114
|
+
homepage: http://capigen.rubyforge.org
|
|
115
|
+
post_install_message:
|
|
116
|
+
rdoc_options:
|
|
117
|
+
- --main
|
|
118
|
+
- README.txt
|
|
119
|
+
require_paths:
|
|
120
|
+
- lib
|
|
121
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
122
|
+
requirements:
|
|
123
|
+
- - ">="
|
|
124
|
+
- !ruby/object:Gem::Version
|
|
125
|
+
version: "0"
|
|
126
|
+
version:
|
|
127
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
128
|
+
requirements:
|
|
129
|
+
- - ">="
|
|
130
|
+
- !ruby/object:Gem::Version
|
|
131
|
+
version: "0"
|
|
132
|
+
version:
|
|
133
|
+
requirements: []
|
|
134
|
+
|
|
135
|
+
rubyforge_project: capigen
|
|
136
|
+
rubygems_version: 0.9.5
|
|
137
|
+
signing_key:
|
|
138
|
+
specification_version: 2
|
|
139
|
+
summary: Capistrano recipe library for all types of remote tasks.
|
|
140
|
+
test_files: []
|
|
141
|
+
|