drush-deploy 1.0.6 → 1.0.8
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.md +8 -2
- data/drush-deploy.gemspec +1 -1
- data/lib/drush_deploy/recipes/db.rb +1 -1
- metadata +8 -8
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
version 1.0.
|
|
1
|
+
version 1.0.8
|
|
2
2
|
|
|
3
3
|
## DESCRIPTION
|
|
4
4
|
|
|
@@ -20,6 +20,12 @@ On remote servers you must have
|
|
|
20
20
|
|
|
21
21
|
## USAGE
|
|
22
22
|
|
|
23
|
-
#
|
|
23
|
+
# Initial Setup
|
|
24
|
+
gem install drush-deploy
|
|
25
|
+
|
|
26
|
+
# Once for each new site
|
|
27
|
+
drush-deploy TARGET=<drush alias> deploy:setup
|
|
28
|
+
|
|
29
|
+
# To deploy
|
|
24
30
|
cd <Drupal root>
|
|
25
31
|
drush-deploy TARGET=<drush alias>
|
data/drush-deploy.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'drush-deploy'
|
|
3
|
-
s.version = '1.0.
|
|
3
|
+
s.version = '1.0.8'
|
|
4
4
|
s.summary = "Deployment strategy for Drupal using Drush"
|
|
5
5
|
s.description = "Utilizes capistrano to allow for doing intellegent deployments of drupal projects."
|
|
6
6
|
s.authors = ["Matt Edlefsen"]
|
|
@@ -58,7 +58,7 @@ namespace :db do
|
|
|
58
58
|
configure unless configured
|
|
59
59
|
settings = databases.inject({}) do |h,(k,site)|
|
|
60
60
|
h[k] = site.inject({}) do |h,(k,db)|
|
|
61
|
-
h[k] = db.keep_if { |k,v| DrushDeploy::Database::STANDARD_KEYS.include? k }
|
|
61
|
+
h[k] = db.dup.keep_if { |k,v| DrushDeploy::Database::STANDARD_KEYS.include? k }
|
|
62
62
|
h
|
|
63
63
|
end
|
|
64
64
|
h
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: drush-deploy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.8
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,11 +9,11 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-
|
|
12
|
+
date: 2012-06-04 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: capistrano
|
|
16
|
-
requirement: &
|
|
16
|
+
requirement: &22363580 !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ! '>='
|
|
@@ -21,10 +21,10 @@ dependencies:
|
|
|
21
21
|
version: '2.0'
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements: *
|
|
24
|
+
version_requirements: *22363580
|
|
25
25
|
- !ruby/object:Gem::Dependency
|
|
26
26
|
name: railsless-deploy
|
|
27
|
-
requirement: &
|
|
27
|
+
requirement: &22363040 !ruby/object:Gem::Requirement
|
|
28
28
|
none: false
|
|
29
29
|
requirements:
|
|
30
30
|
- - ! '>='
|
|
@@ -32,10 +32,10 @@ dependencies:
|
|
|
32
32
|
version: 1.0.2
|
|
33
33
|
type: :runtime
|
|
34
34
|
prerelease: false
|
|
35
|
-
version_requirements: *
|
|
35
|
+
version_requirements: *22363040
|
|
36
36
|
- !ruby/object:Gem::Dependency
|
|
37
37
|
name: php_serialize
|
|
38
|
-
requirement: &
|
|
38
|
+
requirement: &22362420 !ruby/object:Gem::Requirement
|
|
39
39
|
none: false
|
|
40
40
|
requirements:
|
|
41
41
|
- - ! '>='
|
|
@@ -43,7 +43,7 @@ dependencies:
|
|
|
43
43
|
version: '1.2'
|
|
44
44
|
type: :runtime
|
|
45
45
|
prerelease: false
|
|
46
|
-
version_requirements: *
|
|
46
|
+
version_requirements: *22362420
|
|
47
47
|
description: Utilizes capistrano to allow for doing intellegent deployments of drupal
|
|
48
48
|
projects.
|
|
49
49
|
email: matt@xforty.com
|