minicap 1.0.4 → 1.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +7 -3
- metadata +17 -5
data/README.md
CHANGED
@@ -15,7 +15,11 @@ Minicap also has two features that the stock deployment recipes lack;
|
|
15
15
|
|
16
16
|
## Using Minicap
|
17
17
|
|
18
|
-
|
18
|
+
First, install minicap
|
19
|
+
|
20
|
+
gem install minicap
|
21
|
+
|
22
|
+
Then set up your project to use minicap, by making your project's `Capfile` look like
|
19
23
|
|
20
24
|
require 'rubygems'
|
21
25
|
require 'minicap'
|
@@ -25,5 +29,5 @@ Copy the contents of minicap's `examples/deploy.rb` as a jumping off point for y
|
|
25
29
|
|
26
30
|
## Coming soon
|
27
31
|
|
28
|
-
*
|
29
|
-
*
|
32
|
+
* Transparent support for templated files. No more jumping through hoops to get a `database.yml` file up to production
|
33
|
+
* Built-in notification emails, ala cap-gun
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 1
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 1.0.
|
8
|
+
- 5
|
9
|
+
version: 1.0.5
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Mat Trudel
|
@@ -14,10 +14,22 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-
|
17
|
+
date: 2010-11-09 00:00:00 -05:00
|
18
18
|
default_executable:
|
19
|
-
dependencies:
|
20
|
-
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: capistrano
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
25
|
+
requirements:
|
26
|
+
- - ">="
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
segments:
|
29
|
+
- 0
|
30
|
+
version: "0"
|
31
|
+
type: :runtime
|
32
|
+
version_requirements: *id001
|
21
33
|
description: |-
|
22
34
|
Minicap provides a minimal yet functional set of git specific cap recipes.
|
23
35
|
Minicap's recipes roughly mimic those in the standard capistrano distribution, but are
|