oneblackbear-obbistrano 1.0.3 → 1.0.4
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/README.textile +23 -0
- data/obbistrano.gemspec +2 -2
- metadata +2 -2
data/README.textile
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
h1. Automated Server and application deployment
|
2
|
+
|
3
|
+
h2. Server-wide setup
|
4
|
+
|
5
|
+
@cap host:setup -s h=xxxx@
|
6
|
+
Ensures that there is a setup for each app on the specified server.
|
7
|
+
Includes setup of a user, group, apache vhost, mysql login for each app.
|
8
|
+
|
9
|
+
@cap host:backup -s h=xxxx@
|
10
|
+
Trigger a backup of each application stored on the specified server.
|
11
|
+
|
12
|
+
@cap host:s3backup -s h=xxxx@
|
13
|
+
Triggers an Amazon S3 backup of the backup folder.
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
h2. Application Level Setup
|
18
|
+
|
19
|
+
@cap app:deploy -s a=xxxx@
|
20
|
+
|
21
|
+
|
22
|
+
cap app:
|
23
|
+
|
data/obbistrano.gemspec
CHANGED
@@ -2,12 +2,12 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{obbistrano}
|
5
|
-
s.version = "1.0.
|
5
|
+
s.version = "1.0.4"
|
6
6
|
s.authors = ["Ross Riley", "One Black Bear"]
|
7
7
|
s.date = Time.now
|
8
8
|
s.description = %q{An extension to Capistrano to allow deploys to Slicehost for One Black Bear}
|
9
9
|
s.email = %q{ross@oneblackbear.com}
|
10
|
-
s.files = ["README.
|
10
|
+
s.files = ["README.textile", "obbistrano.gemspec"]
|
11
11
|
s.files << Dir["lib/*"]
|
12
12
|
s.homepage = %q{http://github.com/oneblackbear/obbistrano}
|
13
13
|
s.rubygems_version = %q{1.3.0}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: oneblackbear-obbistrano
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ross Riley
|
@@ -42,7 +42,7 @@ extensions: []
|
|
42
42
|
extra_rdoc_files: []
|
43
43
|
|
44
44
|
files:
|
45
|
-
- README.
|
45
|
+
- README.textile
|
46
46
|
- obbistrano.gemspec
|
47
47
|
has_rdoc: false
|
48
48
|
homepage: http://github.com/oneblackbear/obbistrano
|