capistrano-drush-make 0.1.0 → 0.1.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/.gitignore +1 -0
- data/README.md +12 -2
- data/capistrano-drush-make.gemspec +19 -0
- metadata +39 -4
data/.gitignore
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
*.gem
|
data/README.md
CHANGED
@@ -15,7 +15,17 @@ require ditching this requirement.
|
|
15
15
|
|
16
16
|
## USAGE
|
17
17
|
|
18
|
-
# gem install capistrano-drush-make
|
18
|
+
# gem install capistrano-drush-make
|
19
19
|
|
20
|
-
|
20
|
+
## Capfile
|
21
21
|
|
22
|
+
* set :deploy_via, :drush_make
|
23
|
+
* set :strategy, Capistrano::Deploy::Strategy::DrushMake.new(self)
|
24
|
+
|
25
|
+
* set :default_multisite, "multisite_directory_to_link_default_to"
|
26
|
+
|
27
|
+
|
28
|
+
## TODO
|
29
|
+
|
30
|
+
* Rebuild to eliminate capistrano-ash tasks.
|
31
|
+
* Work on a deployment that goes to default and ignores multisite
|
@@ -0,0 +1,19 @@
|
|
1
|
+
Gem::Specification.new do |s|
|
2
|
+
s.name = 'capistrano-drush-make'
|
3
|
+
s.version = '0.1.1'
|
4
|
+
s.summary = "Deployment strategy for Drupal drush makefiles"
|
5
|
+
s.description = "Drush makefiles are used to build a drupal code base with specific version. This gem focused on deploying with those makefiles"
|
6
|
+
s.authors = ["Christian Pearce"]
|
7
|
+
s.email = 'pearcec@xforty.com'
|
8
|
+
s.files = `git ls-files`.split("\n")
|
9
|
+
s.homepage = 'https://github.com/xforty/capistrano-drush-make'
|
10
|
+
s.require_paths = ["lib"]
|
11
|
+
s.extra_rdoc_files = [
|
12
|
+
"README.md"
|
13
|
+
]
|
14
|
+
|
15
|
+
s.add_runtime_dependency(%q<capistrano>, [">=2.0"])
|
16
|
+
s.add_runtime_dependency(%q<capistrano-ash>, [">=1.1.16"])
|
17
|
+
s.add_runtime_dependency(%q<capistrano-ext>, [">=1.2.1"])
|
18
|
+
s.add_runtime_dependency(%q<railsless-deploy>, [">=1.0.2"])
|
19
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-drush-make
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -13,7 +13,7 @@ date: 2012-02-13 00:00:00.000000000Z
|
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: capistrano
|
16
|
-
requirement: &
|
16
|
+
requirement: &20617780 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,7 +21,40 @@ dependencies:
|
|
21
21
|
version: '2.0'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *20617780
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: capistrano-ash
|
27
|
+
requirement: &20617280 !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
29
|
+
requirements:
|
30
|
+
- - ! '>='
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 1.1.16
|
33
|
+
type: :runtime
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: *20617280
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: capistrano-ext
|
38
|
+
requirement: &20616800 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ! '>='
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: 1.2.1
|
44
|
+
type: :runtime
|
45
|
+
prerelease: false
|
46
|
+
version_requirements: *20616800
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: railsless-deploy
|
49
|
+
requirement: &20616320 !ruby/object:Gem::Requirement
|
50
|
+
none: false
|
51
|
+
requirements:
|
52
|
+
- - ! '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 1.0.2
|
55
|
+
type: :runtime
|
56
|
+
prerelease: false
|
57
|
+
version_requirements: *20616320
|
25
58
|
description: Drush makefiles are used to build a drupal code base with specific version. This
|
26
59
|
gem focused on deploying with those makefiles
|
27
60
|
email: pearcec@xforty.com
|
@@ -30,7 +63,9 @@ extensions: []
|
|
30
63
|
extra_rdoc_files:
|
31
64
|
- README.md
|
32
65
|
files:
|
66
|
+
- .gitignore
|
33
67
|
- README.md
|
68
|
+
- capistrano-drush-make.gemspec
|
34
69
|
- lib/capistrano-drush-make.rb
|
35
70
|
homepage: https://github.com/xforty/capistrano-drush-make
|
36
71
|
licenses: []
|
@@ -52,7 +87,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
52
87
|
version: '0'
|
53
88
|
requirements: []
|
54
89
|
rubyforge_project:
|
55
|
-
rubygems_version: 1.8.
|
90
|
+
rubygems_version: 1.8.16
|
56
91
|
signing_key:
|
57
92
|
specification_version: 3
|
58
93
|
summary: Deployment strategy for Drupal drush makefiles
|