capistrano-wp 0.4.8 → 0.4.9

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 CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- OTVkMDRjNDBlOWU3ZjY2NjYxMjIxMTFiYTBmMDllYWNmMWY3MGUzNw==
5
- data.tar.gz: !binary |-
6
- MDMwOThmMjhlN2UzZGMxOWRjZmQzZTczZmQyOGMyMDY4MTQyOGQxMg==
2
+ SHA1:
3
+ metadata.gz: 44c1ddc2eddcf8b8c473579440b876259618344f
4
+ data.tar.gz: 40b0f0c3a4a4455d73a371e66535a5a8a74de392
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- N2I1MzhkM2MwYWE2OGRkMzk1ODUyYzFhZjlkYTE3OTdjZTM1YzA4NTMwMGY5
10
- ZmZjNGNkZDJhMmIwN2Y0ZTA4OWNiN2U4MDIwMzEzZTI4ODM5OGY5ZmQ1NDM0
11
- ZjkzMGVkZWQ3YjQzZTY1OTFiMTQ5ZTQ5MDNhMjE0YWM2NTMyMGQ=
12
- data.tar.gz: !binary |-
13
- ZGYwOTczYjBmODNlNDRjMjQ3NTJhNDc2NDZjY2U0YjE1Y2M3ZDdiMDE5MDc4
14
- NTExZDUyY2RiNzg2NTUyZTE2NThiNjhmYzAzMGVkNzhjNzdlYWQ5NDE4YjE0
15
- ZmQ2NjBhYjMyZmEyMmZkNjI2NjE3NTRjYzQxMDY0MDI2M2QzYzA=
6
+ metadata.gz: ef25825c3df8655f62af8abb356a615137c0392a89c3b62999cc0d4ee1333873cc9b44c37fae2cc003cd0667ac55a59d29e6e19059c6bd4b7fcda0f92c9f0272
7
+ data.tar.gz: f344d03e02d969c8cd47cc7ec298c070d0c95310b963ecd1251014bbe6208b288b7bf09048538eb104bdda70e254b90c2b5119597817e322c606769560c9db5d
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.8
1
+ 0.4.9
@@ -2,15 +2,16 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: capistrano-wp 0.4.8 ruby lib
5
+ # stub: capistrano-wp 0.4.9 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "capistrano-wp"
9
- s.version = "0.4.8"
9
+ s.version = "0.4.9"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
+ s.require_paths = ["lib"]
12
13
  s.authors = ["Crowd Favorite"]
13
- s.date = "2014-01-29"
14
+ s.date = "2014-02-18"
14
15
  s.description = "Recipes for deploying and maintaining remote WordPress installations with\nCapistrano. Pulls in WordPress from SVN, optionally using a local or\nremote cache, and supports a number of common operations and tasks towards\nthe care and feeding of sites that may not be 100% maintained through\nversion control.\n"
15
16
  s.executables = ["capify-wp"]
16
17
  s.extra_rdoc_files = [
@@ -54,8 +55,7 @@ Gem::Specification.new do |s|
54
55
  ]
55
56
  s.homepage = "http://github.com/crowdfavorite/gem-capistrano-wp"
56
57
  s.licenses = ["Apache License version 2"]
57
- s.require_paths = ["lib"]
58
- s.rubygems_version = "2.1.11"
58
+ s.rubygems_version = "2.2.2"
59
59
  s.summary = "Crowd Favorite WordPress Capistrano recipes"
60
60
 
61
61
  if s.respond_to? :specification_version then
@@ -20,10 +20,12 @@ module Capistrano
20
20
  # time. This could cause wierd-ness in the remote cache if the url
21
21
  # changes between calls, but as long as the repositories are all
22
22
  # based from each other it should still work fine.
23
- if remote != 'origin'
24
- execute << "#{git} config remote.#{remote}.url #{variable(:repository)}"
25
- execute << "#{git} config remote.#{remote}.fetch +refs/heads/*:refs/remotes/#{remote}/*"
26
- end
23
+ #
24
+ # Since it's even worse to have the URL be out of date
25
+ # than it is to set it too many times, set it every time
26
+ # even for origin.
27
+ execute << "#{git} config remote.#{remote}.url #{variable(:repository)}"
28
+ execute << "#{git} config remote.#{remote}.fetch +refs/heads/*:refs/remotes/#{remote}/*"
27
29
 
28
30
  # since we're in a local branch already, just reset to specified revision rather than merge
29
31
  execute << "#{git} fetch #{verbose} #{remote} && #{git} fetch --tags #{verbose} #{remote} && #{git} reset #{verbose} --hard #{revision}"
metadata CHANGED
@@ -1,153 +1,147 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-wp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.8
4
+ version: 0.4.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Crowd Favorite
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-29 00:00:00.000000000 Z
11
+ date: 2014-02-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: 2.15.3
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: 2.15.3
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: capistrano-ext
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: 1.2.1
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: 1.2.1
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: railsless-deploy
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ~>
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
47
  version: 1.1.2
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ~>
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: 1.1.2
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: erubis
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ~>
59
+ - - "~>"
60
60
  - !ruby/object:Gem::Version
61
61
  version: 2.7.0
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - ~>
66
+ - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: 2.7.0
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rspec
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - ~>
73
+ - - "~>"
74
74
  - !ruby/object:Gem::Version
75
75
  version: '2.11'
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - ~>
80
+ - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '2.11'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: bundler
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - ~>
87
+ - - "~>"
88
88
  - !ruby/object:Gem::Version
89
89
  version: '1.0'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - ~>
94
+ - - "~>"
95
95
  - !ruby/object:Gem::Version
96
96
  version: '1.0'
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: jeweler
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
- - - ~>
101
+ - - "~>"
102
102
  - !ruby/object:Gem::Version
103
103
  version: '1.8'
104
104
  type: :development
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
- - - ~>
108
+ - - "~>"
109
109
  - !ruby/object:Gem::Version
110
110
  version: '1.8'
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: simplecov
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
- - - ! '>='
115
+ - - ">="
116
116
  - !ruby/object:Gem::Version
117
117
  version: '0'
118
118
  type: :development
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
- - - ! '>='
122
+ - - ">="
123
123
  - !ruby/object:Gem::Version
124
124
  version: '0'
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: capistrano-spec
127
127
  requirement: !ruby/object:Gem::Requirement
128
128
  requirements:
129
- - - ! '>='
129
+ - - ">="
130
130
  - !ruby/object:Gem::Version
131
131
  version: '0'
132
132
  type: :development
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
- - - ! '>='
136
+ - - ">="
137
137
  - !ruby/object:Gem::Version
138
138
  version: '0'
139
- description: ! 'Recipes for deploying and maintaining remote WordPress installations
140
- with
141
-
139
+ description: |
140
+ Recipes for deploying and maintaining remote WordPress installations with
142
141
  Capistrano. Pulls in WordPress from SVN, optionally using a local or
143
-
144
142
  remote cache, and supports a number of common operations and tasks towards
145
-
146
143
  the care and feeding of sites that may not be 100% maintained through
147
-
148
144
  version control.
149
-
150
- '
151
145
  email:
152
146
  executables:
153
147
  - capify-wp
@@ -156,7 +150,7 @@ extra_rdoc_files:
156
150
  - LICENSE.txt
157
151
  - README.md
158
152
  files:
159
- - .document
153
+ - ".document"
160
154
  - Gemfile
161
155
  - Gemfile.lock
162
156
  - LICENSE.txt
@@ -199,17 +193,17 @@ require_paths:
199
193
  - lib
200
194
  required_ruby_version: !ruby/object:Gem::Requirement
201
195
  requirements:
202
- - - ! '>='
196
+ - - ">="
203
197
  - !ruby/object:Gem::Version
204
198
  version: '0'
205
199
  required_rubygems_version: !ruby/object:Gem::Requirement
206
200
  requirements:
207
- - - ! '>='
201
+ - - ">="
208
202
  - !ruby/object:Gem::Version
209
203
  version: '0'
210
204
  requirements: []
211
205
  rubyforge_project:
212
- rubygems_version: 2.1.11
206
+ rubygems_version: 2.2.2
213
207
  signing_key:
214
208
  specification_version: 4
215
209
  summary: Crowd Favorite WordPress Capistrano recipes