capistrano_recipes 1.0.2 → 1.0.3
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.
- checksums.yaml +8 -8
- data/capistrano_recipes.gemspec +1 -1
- data/lib/capistrano/recipes/git.rb +1 -0
- data/lib/capistrano_recipes.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NDc1YjMxNzE5OThkOTI4YmMxMjRlNTYwMmViYTNjZTliYzRkMzI1OA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MWVmZGNkYjNlNmQwMjBiMmFkNTYzMWRhZTNiMGMzYzY1ODYyZmQ5NQ==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZGZiYmVhZTc2ZTI1MTJlOWNiNTVmMTJiZGI2ZmE5NzRiMjljOTJhNDE1ZDY2
|
10
|
+
ODgxYTYxYTU0MzUzNTczNDc1NWMyYTU2NjA3YzVlNTQxNzdlZThhNjllNDkx
|
11
|
+
NTg2NDJlZjhiNGEzYTE3YWRlYjM5NmI1ZDI0ZmRlMjJkOGI5NWM=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NmEyMTk5NWY3MGJiODJiMjJiZDhhZTY1ZGQyMDU1MjdlYWIxNzg1YTJhZWI5
|
14
|
+
OWFmOTNlNTlkYmEyY2U4N2M1ZGM5OTlhZjcyZjFmYTlkZDk5YWU5MTNjZjI5
|
15
|
+
NWNlNjBiMTk3YTRiNTJmM2I2YjJjZWM4NDZlYzI2OWNmNjU3Nzk=
|
data/capistrano_recipes.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |s|
|
6
6
|
s.name = 'capistrano_recipes'
|
7
|
-
s.version = '1.0.
|
7
|
+
s.version = '1.0.3'
|
8
8
|
s.authors = ['Fernando Aleman']
|
9
9
|
s.email = ['fernandoaleman@mac.com']
|
10
10
|
s.description = 'Capistrano recipes to make your deployments fast and easy'
|
data/lib/capistrano_recipes.rb
CHANGED
@@ -5,7 +5,7 @@ module CapistranoRecipes
|
|
5
5
|
configuration.load('deploy')
|
6
6
|
|
7
7
|
configuration.load do
|
8
|
-
_cset :shared_children, %w(public/system log tmp/pids tmp/sockets)
|
8
|
+
_cset :shared_children, lambda { %w(public/system log tmp/pids tmp/sockets) }
|
9
9
|
_cset(:domain) { abort "Please specify domain, set :domain, 'domain.com'"}
|
10
10
|
_cset :config_dir, 'config'
|
11
11
|
_cset :config_path, lambda { File.join shared_path, config_dir }
|