bcalloway-slicehost 0.0.2.6 → 0.0.3.0

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.
Files changed (30) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README +99 -0
  3. data/lib/capistrano/ext/slicehost.rb +7 -0
  4. data/lib/capistrano/ext/slicehost/apache.rb +90 -0
  5. data/lib/capistrano/ext/slicehost/aptitude.rb +94 -0
  6. data/lib/capistrano/ext/slicehost/disk.rb +13 -0
  7. data/lib/capistrano/ext/slicehost/gems.rb +41 -0
  8. data/lib/capistrano/ext/slicehost/git.rb +6 -0
  9. data/lib/capistrano/ext/slicehost/iptables.rb +21 -0
  10. data/lib/capistrano/ext/slicehost/mysql.rb +36 -0
  11. data/lib/capistrano/ext/slicehost/nginx.rb +70 -0
  12. data/lib/capistrano/ext/slicehost/postgresql.rb +37 -0
  13. data/lib/capistrano/ext/slicehost/profile.rb +11 -0
  14. data/lib/capistrano/ext/slicehost/render.rb +6 -0
  15. data/lib/capistrano/ext/slicehost/ruby.rb +59 -0
  16. data/lib/capistrano/ext/slicehost/slice.rb +10 -0
  17. data/lib/capistrano/ext/slicehost/ssh.rb +59 -0
  18. data/lib/capistrano/ext/slicehost/templates/bashrc.erb +93 -0
  19. data/lib/capistrano/ext/slicehost/templates/iptables.erb +42 -0
  20. data/lib/capistrano/ext/slicehost/templates/mydircolors.erb +170 -0
  21. data/lib/capistrano/ext/slicehost/templates/nanorc.erb +260 -0
  22. data/lib/capistrano/ext/slicehost/templates/passenger.conf.erb +2 -0
  23. data/lib/capistrano/ext/slicehost/templates/passenger.load.erb +1 -0
  24. data/lib/capistrano/ext/slicehost/templates/sshd_config.erb +81 -0
  25. data/lib/capistrano/ext/slicehost/templates/vhost.erb +8 -0
  26. data/lib/capistrano/ext/slicehost/templates/vhost_nginx.erb +23 -0
  27. data/lib/capistrano/ext/slicehost/templates/vimrc.erb +4 -0
  28. data/lib/capistrano/ext/slicehost/useradd.rb +68 -0
  29. data/lib/capistrano/ext/slicehost/vim.rb +19 -0
  30. metadata +39 -10
@@ -0,0 +1,19 @@
1
+ namespace :vim do
2
+ desc "setup vim on slicehost"
3
+ task :setup, :roles => :files do
4
+ install
5
+ load_vimrc
6
+ end
7
+
8
+ desc "install vim from aptitude"
9
+ task :install, :roles => :files do
10
+ sudo "aptitude install -y vim"
11
+ end
12
+
13
+ desc "load up a simple .vimrc"
14
+ task :load_vimrc, :roles => :files do
15
+ put render("vimrc", binding), "/home/#{user}/.vimrc"
16
+ end
17
+
18
+
19
+ end
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bcalloway-slicehost
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2.6
4
+ version: 0.0.3.0
5
5
  platform: ruby
6
6
  authors:
7
- - Joshua Peek
7
+ - Brandon Calloway
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-03-17 00:00:00 -07:00
12
+ date: 2009-11-12 00:00:00 -05:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -23,18 +23,47 @@ dependencies:
23
23
  version: 2.5.0
24
24
  version:
25
25
  description: Slicehost Capistrano recipes for configuring and managing your slice.
26
- email: josh@joshpeek.com
26
+ email: brandon@brandoncalloway.com
27
27
  executables: []
28
28
 
29
29
  extensions: []
30
30
 
31
31
  extra_rdoc_files: []
32
32
 
33
- files: []
33
+ files:
34
+ - README
35
+ - MIT-LICENSE
36
+ - lib/capistrano/ext/slicehost/apache.rb
37
+ - lib/capistrano/ext/slicehost/aptitude.rb
38
+ - lib/capistrano/ext/slicehost/disk.rb
39
+ - lib/capistrano/ext/slicehost/gems.rb
40
+ - lib/capistrano/ext/slicehost/git.rb
41
+ - lib/capistrano/ext/slicehost/iptables.rb
42
+ - lib/capistrano/ext/slicehost/mysql.rb
43
+ - lib/capistrano/ext/slicehost/nginx.rb
44
+ - lib/capistrano/ext/slicehost/postgresql.rb
45
+ - lib/capistrano/ext/slicehost/profile.rb
46
+ - lib/capistrano/ext/slicehost/render.rb
47
+ - lib/capistrano/ext/slicehost/ruby.rb
48
+ - lib/capistrano/ext/slicehost/slice.rb
49
+ - lib/capistrano/ext/slicehost/ssh.rb
50
+ - lib/capistrano/ext/slicehost/templates/bashrc.erb
51
+ - lib/capistrano/ext/slicehost/templates/iptables.erb
52
+ - lib/capistrano/ext/slicehost/templates/mydircolors.erb
53
+ - lib/capistrano/ext/slicehost/templates/nanorc.erb
54
+ - lib/capistrano/ext/slicehost/templates/passenger.conf.erb
55
+ - lib/capistrano/ext/slicehost/templates/passenger.load.erb
56
+ - lib/capistrano/ext/slicehost/templates/sshd_config.erb
57
+ - lib/capistrano/ext/slicehost/templates/vhost.erb
58
+ - lib/capistrano/ext/slicehost/templates/vhost_nginx.erb
59
+ - lib/capistrano/ext/slicehost/templates/vimrc.erb
60
+ - lib/capistrano/ext/slicehost/useradd.rb
61
+ - lib/capistrano/ext/slicehost/vim.rb
62
+ - lib/capistrano/ext/slicehost.rb
63
+ has_rdoc: true
64
+ homepage: http://github.com/bcalloway/slicehost
65
+ licenses: []
34
66
 
35
- has_rdoc: false
36
- homepage: http://github.com/josh/slicehost
37
- licenses:
38
67
  post_install_message:
39
68
  rdoc_options: []
40
69
 
@@ -57,7 +86,7 @@ requirements: []
57
86
  rubyforge_project:
58
87
  rubygems_version: 1.3.5
59
88
  signing_key:
60
- specification_version: 2
61
- summary: Capistrano recipes for setting up and deploying to Slicehost
89
+ specification_version: 3
90
+ summary: Fork of original Capistrano recipes for setting up and deploying to Slicehost
62
91
  test_files: []
63
92