recipiez 0.0.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/History.txt +1 -0
- data/MIT-LICENSE +20 -0
- data/README.textile +13 -0
- data/lib/activecollab_notifier.rb +58 -0
- data/lib/basecamp.rb +486 -0
- data/lib/basecamp_notifier.rb +34 -0
- data/recipes/apache.rb +41 -0
- data/recipes/chef.rb +8 -0
- data/recipes/deployment_recipiez.rb +295 -0
- data/recipes/logrotate.rb +9 -0
- data/recipes/monit.rb +46 -0
- data/recipes/nginx.rb +35 -0
- data/recipes/render.rb +6 -0
- data/recipes/templates/apache_monit.erb +11 -0
- data/recipes/templates/logrotate.erb +9 -0
- data/recipes/templates/monit_config.erb +7 -0
- data/recipes/templates/mysql_monit.erb +6 -0
- data/recipes/templates/nginx_monit.erb +9 -0
- data/recipes/templates/nginx_vhost.erb +135 -0
- data/recipes/templates/passenger_vhost.erb +13 -0
- data/recipes/templates/php_handler.erb +1 -0
- data/recipes/templates/php_vhost.erb +12 -0
- data/recipes/templates/recipiez.yml.example +8 -0
- data/recipes/templates/sshd_monit.erb +5 -0
- data/recipes/templates/thin_monit.erb +16 -0
- data/recipes/thin.rb +37 -0
- data/recipes/tolk.rb +13 -0
- metadata +72 -0
data/recipes/tolk.rb
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
namespace :tolk do
|
2
|
+
|
3
|
+
desc "Runs tolk:sync on the remove server. Useful for when you update"
|
4
|
+
task :sync do
|
5
|
+
run "cd #{current_path};rake tolk:sync RAILS_ENV=#{rails_env}"
|
6
|
+
end
|
7
|
+
|
8
|
+
desc "Runs tolk:dump_all on the remove server. Useful for when you update"
|
9
|
+
task :dump_all do
|
10
|
+
run "cd #{current_path};rake tolk:dump_all RAILS_ENV=#{rails_env}"
|
11
|
+
end
|
12
|
+
|
13
|
+
end
|
metadata
ADDED
@@ -0,0 +1,72 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: recipiez
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Alastair Brunton
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2011-09-27 00:00:00.000000000Z
|
13
|
+
dependencies: []
|
14
|
+
description: DB Syncing, Logrotate, Apache, Thin, Basecamp, Activecollab, Monit
|
15
|
+
email:
|
16
|
+
- info@simplyexcited.co.uk
|
17
|
+
executables: []
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- History.txt
|
22
|
+
- MIT-LICENSE
|
23
|
+
- README.textile
|
24
|
+
- lib/activecollab_notifier.rb
|
25
|
+
- lib/basecamp.rb
|
26
|
+
- lib/basecamp_notifier.rb
|
27
|
+
- recipes/apache.rb
|
28
|
+
- recipes/chef.rb
|
29
|
+
- recipes/deployment_recipiez.rb
|
30
|
+
- recipes/logrotate.rb
|
31
|
+
- recipes/monit.rb
|
32
|
+
- recipes/nginx.rb
|
33
|
+
- recipes/render.rb
|
34
|
+
- recipes/templates/apache_monit.erb
|
35
|
+
- recipes/templates/logrotate.erb
|
36
|
+
- recipes/templates/monit_config.erb
|
37
|
+
- recipes/templates/mysql_monit.erb
|
38
|
+
- recipes/templates/nginx_monit.erb
|
39
|
+
- recipes/templates/nginx_vhost.erb
|
40
|
+
- recipes/templates/passenger_vhost.erb
|
41
|
+
- recipes/templates/php_handler.erb
|
42
|
+
- recipes/templates/php_vhost.erb
|
43
|
+
- recipes/templates/recipiez.yml.example
|
44
|
+
- recipes/templates/sshd_monit.erb
|
45
|
+
- recipes/templates/thin_monit.erb
|
46
|
+
- recipes/thin.rb
|
47
|
+
- recipes/tolk.rb
|
48
|
+
homepage: http://github.com/pyrat/deployment_recipiez
|
49
|
+
licenses: []
|
50
|
+
post_install_message:
|
51
|
+
rdoc_options: []
|
52
|
+
require_paths:
|
53
|
+
- lib
|
54
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
55
|
+
none: false
|
56
|
+
requirements:
|
57
|
+
- - ! '>='
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: '0'
|
60
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
61
|
+
none: false
|
62
|
+
requirements:
|
63
|
+
- - ! '>='
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: 1.3.1
|
66
|
+
requirements: []
|
67
|
+
rubyforge_project:
|
68
|
+
rubygems_version: 1.8.6
|
69
|
+
signing_key:
|
70
|
+
specification_version: 3
|
71
|
+
summary: Collection of capistrano recipies which do good things.
|
72
|
+
test_files: []
|