cap-hacks 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 ADDED
@@ -0,0 +1,5 @@
1
+ == 0.0.1 / 2008-01-26
2
+
3
+ * First version
4
+ * Multi server plugin added
5
+
data/Manifest.txt ADDED
@@ -0,0 +1,7 @@
1
+ History.txt
2
+ Manifest.txt
3
+ README.txt
4
+ Rakefile
5
+ bin/cap-hacks
6
+ lib/cap-hacks.rb
7
+ test/test_cap-hacks.rb
data/README.txt ADDED
@@ -0,0 +1,45 @@
1
+ cap-hacks
2
+ by Ben Marini
3
+ FIX (url)
4
+
5
+ == DESCRIPTION:
6
+
7
+ cap-hacks is a collection of plugins and recipes for capistrano, to aid
8
+ in sysadmin related tasks.
9
+
10
+ == SYNOPSIS:
11
+
12
+ FIX (code sample of usage)
13
+
14
+ == REQUIREMENTS:
15
+
16
+ capistrano 2.1.0 or greater
17
+
18
+ == INSTALL:
19
+
20
+ sudo gem install cap-hacks
21
+
22
+ == LICENSE:
23
+
24
+ (The MIT License)
25
+
26
+ Copyright (c) 2008 Ben Marini
27
+
28
+ Permission is hereby granted, free of charge, to any person obtaining
29
+ a copy of this software and associated documentation files (the
30
+ 'Software'), to deal in the Software without restriction, including
31
+ without limitation the rights to use, copy, modify, merge, publish,
32
+ distribute, sublicense, and/or sell copies of the Software, and to
33
+ permit persons to whom the Software is furnished to do so, subject to
34
+ the following conditions:
35
+
36
+ The above copyright notice and this permission notice shall be
37
+ included in all copies or substantial portions of the Software.
38
+
39
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
40
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
41
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
42
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
43
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
44
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
45
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,22 @@
1
+ # -*- ruby -*-
2
+
3
+ require 'rubygems'
4
+ require 'hoe'
5
+ require './lib/cap-hacks.rb'
6
+
7
+ Hoe.new('cap-hacks', CapHacks::VERSION) do |p|
8
+ p.rubyforge_name = 'cap-hacks'
9
+ p.author = 'Ben Marini'
10
+ p.email = 'bmarini@gmail.com'
11
+ p.summary = 'A collection of plugins and recipes for sysadmin related tasks'
12
+ p.description = <<-EOF
13
+ This is a collection of sysadmin related tasks and extensions for capistrano.
14
+ It is meant to ease the burden of sysadmin chores on multiple servers by allowing
15
+ you to define a list of servers and execute common tasks arbitrarily on them.
16
+ EOF
17
+ p.extra_deps = ['capistrano >= 2.1.0']
18
+ p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
19
+ p.remote_rdoc_dir = '' # Release to root
20
+ end
21
+
22
+ # vim: syntax=Ruby
data/bin/cap-hacks ADDED
File without changes
data/lib/cap-hacks.rb ADDED
@@ -0,0 +1,3 @@
1
+ class CapHacks
2
+ VERSION = '0.0.1'
3
+ end
File without changes
metadata ADDED
@@ -0,0 +1,79 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cap-hacks
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Ben Marini
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-01-26 00:00:00 -08:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: capistrano >= 2.1.0
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: "0"
23
+ version:
24
+ - !ruby/object:Gem::Dependency
25
+ name: hoe
26
+ version_requirement:
27
+ version_requirements: !ruby/object:Gem::Requirement
28
+ requirements:
29
+ - - ">="
30
+ - !ruby/object:Gem::Version
31
+ version: 1.4.0
32
+ version:
33
+ description: This is a collection of sysadmin related tasks and extensions for capistrano. It is meant to ease the burden of sysadmin chores on multiple servers by allowing you to define a list of servers and execute common tasks arbitrarily on them.
34
+ email: bmarini@gmail.com
35
+ executables:
36
+ - cap-hacks
37
+ extensions: []
38
+
39
+ extra_rdoc_files:
40
+ - History.txt
41
+ - Manifest.txt
42
+ - README.txt
43
+ files:
44
+ - History.txt
45
+ - Manifest.txt
46
+ - README.txt
47
+ - Rakefile
48
+ - bin/cap-hacks
49
+ - lib/cap-hacks.rb
50
+ - test/test_cap-hacks.rb
51
+ has_rdoc: true
52
+ homepage: http://www.zenspider.com/ZSS/Products/cap-hacks/
53
+ post_install_message:
54
+ rdoc_options:
55
+ - --main
56
+ - README.txt
57
+ require_paths:
58
+ - lib
59
+ required_ruby_version: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ version: "0"
64
+ version:
65
+ required_rubygems_version: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: "0"
70
+ version:
71
+ requirements: []
72
+
73
+ rubyforge_project: cap-hacks
74
+ rubygems_version: 1.0.1
75
+ signing_key:
76
+ specification_version: 2
77
+ summary: A collection of plugins and recipes for sysadmin related tasks
78
+ test_files:
79
+ - test/test_cap-hacks.rb