capistrano 3.11.1 → 3.11.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f49655355a29df420b48044e15216c6edd72c9a11a41c502c00f2e2b34e61121
4
- data.tar.gz: 422078d39578d7688357f247d28337f76e071cae2c8fa780615f7c650f37aac5
3
+ metadata.gz: 95cdd3d0081c24ca53799c4581d720ab56417ddfa49450575eb1e6685111f3a8
4
+ data.tar.gz: d3ad3ee309f5b28d547ca66cc288cc09db552da8a1ff661b700a7c64a1301c5d
5
5
  SHA512:
6
- metadata.gz: c80d8785a8b09638e3cd44961469607ade3e84984e50fe79d680aa62f8ba7dfc8ce1baad91328ca6a7c29416ff46cdaa4efd933056efd9f857c344e1c2b48659
7
- data.tar.gz: ccd85825ce1005098fc7dda72d5bde5b118f79f7f9b039fccc4cb07bbc3d2e6b51f3164faa386ed594b926277b876e750670f781bf2f5f00bb19bce06c5f77c3
6
+ metadata.gz: 3bad690c28c420c53d86658b71ceb57dc5fda26f6d0caa4d02a3997bb523a5942698480db5c2d8b3134b439f5b7611a944c97a8000b73308a8d6119dd37dd2b5
7
+ data.tar.gz: e7ba13f36a3d6cfd8654f6bfbac46f32d6c7df099eb544d265e55411a6dde3cc8a8489ba969b8691042fa1b083e173c8a62baf2533048ecc2e3d3f855343a1c4
@@ -0,0 +1,17 @@
1
+ name-template: "$NEXT_PATCH_VERSION"
2
+ tag-template: "v$NEXT_PATCH_VERSION"
3
+ categories:
4
+ - title: "⚠️ Breaking Changes"
5
+ label: "⚠️ Breaking"
6
+ - title: "✨ New Features"
7
+ label: "✨ Feature"
8
+ - title: "🐛 Bug Fixes"
9
+ label: "🐛 Bug Fix"
10
+ - title: "📚 Documentation"
11
+ label: "📚 Docs"
12
+ - title: "🏠 Housekeeping"
13
+ label: "🏠 Housekeeping"
14
+ change-template: "- $TITLE (#$NUMBER) @$AUTHOR"
15
+ no-changes-template: "- No changes"
16
+ template: |
17
+ $CHANGES
@@ -0,0 +1,12 @@
1
+ on: push
2
+ name: Push
3
+ jobs:
4
+ draftRelease:
5
+ name: Draft Release
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - uses: actions/checkout@master
9
+ - name: Draft Release
10
+ uses: toolmantim/release-drafter@v5.2.0
11
+ env:
12
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -8,6 +8,7 @@ Lint/AmbiguousBlockAssociation:
8
8
  false
9
9
  Metrics/BlockLength:
10
10
  Exclude:
11
+ - "*.gemspec"
11
12
  - "spec/**/*"
12
13
  - "lib/**/*.rake"
13
14
  Style/BarePercentLiterals:
@@ -24,5 +24,5 @@ script: bundle exec rake spec rubocop
24
24
  install: bundle install --jobs=1
25
25
  cache: bundler
26
26
  branches:
27
- except:
28
- - legacy-v2
27
+ only:
28
+ - master
@@ -1,657 +1 @@
1
- # Capistrano 3.x Changelog
2
-
3
- All notable changes to this project will be documented in this file, in reverse chronological order.
4
-
5
- **Capistrano follows a modified version of [SemVer](http://semver.org)**, similar to the Ruby on Rails project. For a `X.Y.Z` release:
6
-
7
- * `Z` indicates bug fixes only; no breaking changes and no new features, except as necessary for security fixes.
8
- * `Y` is bumped when we add new features. Occasionally a `Y` release may include small breaking changes. We will notify via CHANGELOG entries and/or deprecation notices if there are breaking changes.
9
- * `X` is incremented for significant breaking changes. This is reserved for special occasions, like a complete rewrite.
10
-
11
- **Capistrano uses a six-week release cadence.** Every six weeks, give or take, any changes in master will be published as a new rubygems version. If you'd like to use a feature or fix that is in master and you can't wait for the next planned release, put this in your project's Gemfile to use the master branch directly:
12
-
13
- ```ruby
14
- gem "capistrano", github: "capistrano/capistrano", require: false
15
- ```
16
-
17
- ## [master]
18
-
19
- [master]: https://github.com/capistrano/capistrano/compare/v3.11.0...HEAD
20
-
21
- * Your contribution here!
22
-
23
- ## [`3.11.1`] (2019-08-29)
24
-
25
- * [#2027](https://github.com/capistrano/capistrano/pull/2027): Batch rm -rf calls in deploy:cleanup to fix an error when there are too many old releases [@azin634](https://github.com/azin634)
26
-
27
- [`3.11.1`]: https://github.com/capistrano/capistrano/compare/v3.11.0...v3.11.1
28
-
29
- ## [`3.11.0`] (2018-06-02)
30
-
31
- * [#1972](https://github.com/capistrano/capistrano/pull/1972): fallback ask to default when used in non interactive session
32
-
33
- [`3.11.0`]: https://github.com/capistrano/capistrano/compare/v3.10.2...v3.11.0
34
-
35
- ## [`3.10.2`] (2018-04-15)
36
-
37
- [`3.10.2`]: https://github.com/capistrano/capistrano/compare/v3.10.1...v3.10.2
38
-
39
- ### Breaking changes:
40
-
41
- * None
42
-
43
- ### Fixes:
44
-
45
- * [#1977](https://github.com/capistrano/capistrano/pull/1977): Remove append operator when writing the git file - [@mmiller1](https://github.com/mmiller1)
46
-
47
- ## [`3.10.1`] (2017-12-08)
48
-
49
- [`3.10.1`]: https://github.com/capistrano/capistrano/compare/v3.10.0...v3.10.1
50
-
51
- ### Breaking changes:
52
-
53
- * None
54
-
55
- ### Fixes:
56
-
57
- * [#1954](https://github.com/capistrano/capistrano/pull/1954): Fix Host filtering when multi-host strings contain `0`
58
-
59
- ## [`3.10.0`] (2017-10-23)
60
-
61
- [`3.10.0`]: https://github.com/capistrano/capistrano/compare/v3.9.1...v3.10.0
62
-
63
- As of this release, version 2.x of Capistrano is officially End of Life. No further releases of 2.x series are planned, and pull requests against 2.x are no longer accepted. The maintainers encourage you to upgrade to 3.x if possible.
64
-
65
- ### Breaking changes:
66
-
67
- * None
68
-
69
- ### New features:
70
-
71
- * [#1943](https://github.com/capistrano/capistrano/issues/1943): Make 'releases' and 'shared' directory names configurable from deployment target
72
- * [#1922](https://github.com/capistrano/capistrano/pull/1922): Prevents last good release from being deleted during cleanup if there are too many subsequent failed deploys
73
- * [#1930](https://github.com/capistrano/capistrano/issues/1930): Default to locking the version using the pessimistic version operator at the patch level.
74
-
75
- ### Fixes:
76
-
77
- * [#1937](https://github.com/capistrano/capistrano/pull/1937): Clarify error message when plugin is required in the wrong config file.
78
-
79
- ## [`3.9.1`] (2017-09-08)
80
-
81
- [`3.9.1`]: https://github.com/capistrano/capistrano/compare/v3.9.0...v3.9.1
82
-
83
- ### Breaking changes:
84
-
85
- * None
86
-
87
- ### Fixes:
88
-
89
- * [#1912](https://github.com/capistrano/capistrano/pull/1912): Fixed an issue where questions posed by `ask` were not printed on certain platforms - [@kminiatures](https://github.com/kminiatures)
90
-
91
- ## [`3.9.0`] (2017-07-28)
92
-
93
- [`3.9.0`]: https://github.com/capistrano/capistrano/compare/v3.8.2...v3.9.0
94
-
95
- ### Breaking changes:
96
-
97
- * None
98
-
99
- ### New features:
100
-
101
- * [#1911](https://github.com/capistrano/capistrano/pull/1911): Add Capistrano::DSL#invoke! for repetitive tasks
102
-
103
- ### Fixes:
104
-
105
- * [#1899](https://github.com/capistrano/capistrano/pull/1899): Updated `deploy:cleanup` to continue rotating the releases and skip the invalid directory names instead of skipping the whole rotation of releases. The warning message has changed slightly due to the change of behavior.
106
-
107
- ## [`3.8.2`] (2017-06-16)
108
-
109
- [`3.8.2`]: https://github.com/capistrano/capistrano/compare/v3.8.1...v3.8.2
110
-
111
- ### Breaking changes:
112
-
113
- * None
114
-
115
- ### Other changes:
116
-
117
- * [#1882](https://github.com/capistrano/capistrano/pull/1882): Explain where to add new Capfile lines in scm deprecation warning - [@robd](https://github.com/robd)
118
-
119
- ## [`3.8.1`] (2017-04-21)
120
-
121
- [`3.8.1`]: https://github.com/capistrano/capistrano/compare/v3.8.0...v3.8.1
122
-
123
- ### Breaking changes:
124
-
125
- * None
126
-
127
- ### Fixes:
128
-
129
- * [#1867](https://github.com/capistrano/capistrano/pull/1867): Allow `cap -T` to run without Capfile present - [@mattbrictson](https://github.com/mattbrictson)
130
-
131
- ## [`3.8.0`] (2017-03-10)
132
-
133
- [`3.8.0`]: https://github.com/capistrano/capistrano/compare/v3.7.2...v3.8.0
134
-
135
- ### Minor breaking changes:
136
-
137
- * [#1846](https://github.com/capistrano/capistrano/pull/1846): add_host - When this method has already been called once for a given host and it is called a second time with a port, a new host will be added. Previously, the first host would have been updated. [(@dbenamy)](https://github.com/dbenamy)
138
-
139
- ### New features:
140
-
141
- * [#1860](https://github.com/capistrano/capistrano/pull/1860): Allow cap to be run within subdir and still work - [@mattbrictson](https://github.com/mattbrictson)
142
-
143
- ### Fixes:
144
-
145
- * [#1835](https://github.com/capistrano/capistrano/pull/1835): Stopped printing parenthesis in ask prompt if no default or nil was passed as argument [(@chamini2)](https://github.com/chamini2)
146
- * [#1840](https://github.com/capistrano/capistrano/pull/1840): Git plugin: shellescape git_wrapper_path [(@olleolleolle)](https://github.com/olleolleolle)
147
- * [#1843](https://github.com/capistrano/capistrano/pull/1843): Properly shell escape git:wrapper steps - [@mattbrictson](https://github.com/mattbrictson)
148
- * [#1846](https://github.com/capistrano/capistrano/pull/1846): Defining a role is now O(hosts) instead of O(hosts^2) [(@dbenamy)](https://github.com/dbenamy)
149
- * Run `svn switch` to work with svn branches if repo_url is changed
150
- * [#1856](https://github.com/capistrano/capistrano/pull/1856): Fix hg repo_tree implementation - [@mattbrictson](https://github.com/mattbrictson)
151
- * [#1857](https://github.com/capistrano/capistrano/pull/1857): Don't emit doctor warning when repo_tree is set - [@mattbrictson](https://github.com/mattbrictson)
152
-
153
- ### Other changes:
154
-
155
- * [capistrano-harrow#4](https://github.com/harrowio/capistrano-harrow/issues/4): Drop dependency on `capistrano-harrow` gem. Gem can still be installed separately [(@leehambley)](https://github.com/leehambley)
156
- * [#1859](https://github.com/capistrano/capistrano/pull/1859): Move git-specific repo_url logic into git plugin - [@mattbrictson](https://github.com/mattbrictson)
157
- * [#1858](https://github.com/capistrano/capistrano/pull/1858): Unset the :scm variable when an SCM plugin is used - [@mattbrictson](https://github.com/mattbrictson)
158
-
159
- ## [`3.7.2`] (2017-01-27)
160
-
161
- [`3.7.2`]: https://github.com/capistrano/capistrano/compare/v3.7.1...v3.7.2
162
-
163
- ### Potentially breaking changes:
164
-
165
- * None
166
-
167
- ### Other changes:
168
-
169
- * Suppress log messages of `git ls-remote` by filtering remote refs (@aeroastro)
170
- * The Git SCM now allows the repo_url to be changed without manually wiping out the mirror on each target host first (@javanthropus)
171
-
172
- ## [`3.7.1`] (2016-12-16)
173
-
174
- [`3.7.1`]: https://github.com/capistrano/capistrano/compare/v3.7.0...v3.7.1
175
-
176
- ### Potentially breaking changes:
177
-
178
- * None
179
-
180
- ### Fixes:
181
-
182
- * Fixed a bug with mercurial deploys failing due to an undefined variable
183
-
184
- ## [`3.7.0`] (2016-12-10)
185
-
186
- [`3.7.0`]: https://github.com/capistrano/capistrano/compare/v3.6.1...v3.7.0
187
-
188
- *Note: These release notes include all changes since 3.6.1, including the changes that were first published in 3.7.0.beta1.*
189
-
190
- ### Deprecations:
191
-
192
- * The `set :scm, ...` mechanism is now deprecated in favor of a new SCM plugin system. See the [UPGRADING-3.7](UPGRADING-3.7.md) document for details
193
-
194
- ### Potentially breaking changes:
195
-
196
- * The `:git_strategy`, `:hg_strategy`, and `:svn_strategy` settings have been removed with no replacement. If you have been using these to customize Capistrano's SCM behavior, you will need to rewrite your customization using the [new plugin system](http://capistranorb.com/documentation/advanced-features/custom-scm/)
197
- * `remote_file` feature has been removed and is no longer available to use @SaiVardhan
198
-
199
- ### New features:
200
-
201
- * The `tar` used by the Git SCM now honors the SSHKit command map, allowing an alternative tar binary to be used (e.g. gtar) #1787 (@caius)
202
- * Add support for custom on-filters [#1776](https://github.com/capistrano/capistrano/issues/1776)
203
-
204
- ### Fixes:
205
-
206
- * Fix test suite to work with Mocha 1.2.0 (@caius)
207
- * Fix bug where host_filter and role_filter were overly greedy [#1766](https://github.com/capistrano/capistrano/issues/1766) (@cseeger-epages)
208
- * Fix the removal of old releases `deploy:cleanup`. Logic is changed because of unreliable modification times on folders. Removal of directories is now decided by sorting on folder names (name is generated from current datetime format YmdHis). Cleanup is skipped, and a warning is given when a folder name is in a different format
209
-
210
- ## [`3.7.0.beta1`] (2016-11-02)
211
-
212
- [`3.7.0.beta1`]: https://github.com/capistrano/capistrano/compare/v3.6.1...v3.7.0.beta1
213
-
214
- ### Deprecations:
215
-
216
- * The `set :scm, ...` mechanism is now deprecated in favor of a new SCM plugin
217
- system. See the [UPGRADING-3.7](UPGRADING-3.7.md) document for details.
218
-
219
- ### Potentially breaking changes:
220
-
221
- * The `:git_strategy`, `:hg_strategy`, and `:svn_strategy` settings have been
222
- removed with no replacement. If you have been using these to customize
223
- Capistrano's SCM behavior, you will need to rewrite your customization using
224
- the [new plugin system](http://capistranorb.com/documentation/advanced-features/custom-scm/).
225
- * `remote_file` feature has been removed and is no longer available to use @SaiVardhan
226
-
227
- ### New features:
228
-
229
- * The `tar` used by the Git SCM now honors the SSHKit command map, allowing an alternative tar binary to be used (e.g. gtar) #1787 (@caius)
230
-
231
- ### Fixes:
232
-
233
- * Fix test suite to work with Mocha 1.2.0 (@caius)
234
- * Fix bug where host_filter and role_filter were overly greedy [#1766](https://github.com/capistrano/capistrano/issues/1766) (@cseeger-epages)
235
-
236
- ## [`3.6.1`] (2016-08-23)
237
-
238
- [`3.6.1`]: https://github.com/capistrano/capistrano/compare/v3.6.0...v3.6.1
239
-
240
- ### Fixes:
241
-
242
- * Restore compatibility with older versions of Rake (< 11.0.0) (@troelskn)
243
- * Fix `NoMethodError: undefined method gsub` when setting `:application` to a Proc. The original fix released in 3.6.0 worked for values specified with blocks, but not for those specified with procs or lambdas (the latter syntax is much more common). [#1681](https://github.com/capistrano/capistrano/issues/1681)
244
- * Fix a bug where deploy would fail if `:local_user` contained a space; spaces are now replaced with dashes when computing the git-ssh suffix. (@will_in_wi)
245
-
246
- ## [`3.6.0`] (2016-07-26)
247
-
248
- [`3.6.0`]: https://github.com/capistrano/capistrano/compare/v3.5.0...v3.6.0
249
-
250
- Thank you to the many first-time contributors from the Capistrano community who
251
- helped with this release!
252
-
253
- ### Deprecations:
254
-
255
- * Deprecate `remote_file` feature (will be removed in Capistrano 3.7.0) (@lebedev-yury)
256
- * Deprecate `:git_strategy`, `:hg_strategy`, and `:svn_strategy` variables.
257
- These will be completely removed in 3.7.0.
258
- * Added warning about future deprecation of reinvocation behaviour (@troelskn)
259
-
260
- Refer to the [Capistrano 3.7.0 upgrade document](UPGRADING-3.7.md) if you are
261
- affected by these deprecations.
262
-
263
- ### New features:
264
-
265
- * Added a `doctor:servers` subtask that outputs a summary of servers, roles & properties (@irvingwashington)
266
- * Make path to git wrapper script configurable (@thickpaddy)
267
- * Make name of current directory configurable via configuration variable `:current_directory` (@websi)
268
- * It is now possible to rollback to a specific release using the
269
- `ROLLBACK_RELEASE` environment variable.
270
- [#1155](https://github.com/capistrano/capistrano/issues/1155) (@lanrion)
271
-
272
- ### Fixes:
273
-
274
- * `doctor` no longer erroneously warns that `:git_strategy` and other SCM options are "unrecognized" (@shanesaww)
275
- * Fix `NoMethodError: undefined method gsub` when setting `:application` to a
276
- Proc. [#1681](https://github.com/capistrano/capistrano/issues/1681)
277
- (@mattbrictson)
278
-
279
- ### Other changes:
280
-
281
- * Raise a better error when an ‘after’ hook isn’t found (@jdelStrother)
282
- * Change git wrapper path to work better with multiple users (@thickpaddy)
283
- * Restrict the uploaded git wrapper script permissions to 700 (@irvingwashington)
284
- * Add `net-ssh` gem version to `doctor:gems` output (@lebedev-yury)
285
-
286
- ## [`3.5.0`]
287
-
288
- [`3.5.0`]: https://github.com/capistrano/capistrano/compare/v3.4.1...v3.5.0
289
-
290
- **You'll notice a big cosmetic change in this release: the default logging
291
- format has been changed to
292
- [Airbrussh](https://github.com/mattbrictson/airbrussh).** For more details on
293
- what Airbrussh does
294
- and how to configure it, visit the
295
- [Airbrussh README](https://github.com/mattbrictson/airbrussh#readme).
296
-
297
- * To opt out of the new format, simply add `set :format, :pretty` to switch to
298
- the old default of Capistrano 3.4.0 and earlier.
299
- * If you are already an Airbrussh user, note that the default configuration has
300
- changed, and the syntax for configuring Airbrussh has changed as well.
301
- [This simple upgrade guide](https://github.com/mattbrictson/airbrussh/blob/master/UPGRADING-CAP-3.5.md)
302
- will walk you through it.
303
-
304
- ### Potentially breaking changes:
305
-
306
- * Drop support for Ruby 1.9.3 (Capistrano does no longer work with 1.9.3)
307
- * Git version 1.6.3 or greater is now required
308
- * Remove 'vendor/bundle' from default :linked_dirs (@ojab)
309
- * Old versions of SSHKit (before 1.9.0) are no longer supported
310
- * SHA1 hash of current git revision written to REVISION file is no longer abbreviated
311
- * Ensure task invocation within after hooks is namespace aware, which may require
312
- you to change how your `after` hooks are declared in some cases; see
313
- [#1652](https://github.com/capistrano/capistrano/issues/1652) for an example
314
- and how to correct it (@thickpaddy)
315
- * Validation of the `:application` variable forbids special characters such as slash,
316
- this may be a breaking change in case that you rely on using a `/` in your application
317
- name to deploy from a sub directory.
318
-
319
- ### New features:
320
-
321
- * Added a `doctor` task that outputs helpful troubleshooting information. Try it like this: `cap production doctor`. (@mattbrictson)
322
- * Added a `dry_run?` helper method
323
- * `remove` DSL method for removing values like from arrays like `linked_dirs`
324
- * `append` DSL method for pushing values like `linked_dirs`
325
- [#1447](https://github.com/capistrano/capistrano/pull/1447),
326
- [#1586](https://github.com/capistrano/capistrano/pull/1586)
327
- * Added support for git shallow clone
328
- * Added new runtime option `--print-config-variables` that inspect all defined config variables in order to assist development of new capistrano tasks (@gerardo-navarro)
329
- * Prune dead tracking branches from git repositories while updating
330
- * Added options to set username and password when using Subversion as SCM (@dsthode)
331
- * Allow after() to refer to tasks that have not been loaded yet (@jcoglan)
332
- * Allow use "all" as string for server filtering (@theist)
333
- * Print a warning and abort if "load:defaults" is erroneously invoked after
334
- capistrano is already loaded, e.g. when a plugin is loaded in `deploy.rb`
335
- instead of `Capfile`. (@mattbrictson)
336
- * Added option to set specific revision when using Subversion as SCM (@marcovtwout)
337
- * Deduplicate list of linked directories
338
- * Integration with Harrow.io (See http://capistranorb.com/documentation/harrow/) when running `cap install`
339
- * Added validate method to DSL to allow validation of certain values (@Kriechi)
340
- * validate values before assignment inside of `set(:key, value)`
341
- * should raise a `Capistrano::ValidationError` if invalid
342
- * Added default validation for Capistrano-specific variables (@Kriechi)
343
-
344
- ### Fixes:
345
-
346
- * Capistrano is now fully-compatible with Rake 11.0. (@mattbrictson)
347
- * Fix filtering behaviour when using literal hostnames in on() block (@townsen)
348
- * Allow dot in :application name (@marcovtwout)
349
- * Fixed git-ssh permission error (@spight)
350
-
351
- ### Other changes:
352
-
353
- * Internal Rubocop cleanups.
354
- * Removed the post-install message (@Kriechi)
355
- * Refactor `Configuration::Filter` to use filtering strategies instead
356
- of case statements (@cshaffer)
357
- * Clean up rubocop lint warnings (@cshaffer)
358
-
359
- ## [`3.4.0`]
360
-
361
- [`3.4.0`]: https://github.com/capistrano/capistrano/compare/v3.3.5...v3.4.0
362
-
363
- * Fixed fetch revision for annotated git tags. (@igorsokolov)
364
- * Fixed updating roles when custom user or port is specified. (@ayastreb)
365
- * Disables statistics collection.
366
-
367
- * `bin/` is not suggested to be in `linked_dirs` anymore (@kirs)
368
- * bin/ is often checked out into repo
369
- * https://github.com/capistrano/bundler/issues/45#issuecomment-69349237
370
-
371
- * Bugfix:
372
- * release_roles did not honour additional property filtering (@townsen)
373
- * Refactored and simplified property filtering code (@townsen)
374
-
375
- * Breaking Changes
376
- * Hosts with the same name are now consolidated into one irrespective of the
377
- user and port. This allows multiple declarations of a server to be made safely.
378
- The last declared properties will win. See capistranorb.com Properties documentation
379
- for details.
380
- * Inside the on() block the host variable is now a copy of the host, so changes can be
381
- made within the block (such as dynamically overriding the user) that will not persist.
382
- This is very convenient for switching the SSH user temporarily to 'root' for example.
383
-
384
- * Minor changes
385
- * Add role_properties() method (see capistrano.github.io PR for doc) (@townsen)
386
- * Add equality syntax ( eg. port: 1234) for property filtering (@townsen)
387
- * Add documentation regarding property filtering (@townsen)
388
- * Clarify wording and recommendation in stage template. (@Kriechi)
389
- * Both available syntaxes provide similar functionality, do not use both for the same server+role combination.
390
- * Allow specification of repo_path using stage variable
391
- default is as before (@townsen)
392
-
393
- ## [`3.3.5`]
394
-
395
- [`3.3.5`]: https://github.com/capistrano/capistrano/compare/v3.3.4...v3.3.5
396
-
397
- * Fixed setting properties twice when creating new server. See [issue
398
- #1214](https://github.com/capistrano/capistrano/issues/1214) (@ayastreb)
399
-
400
- ## [`3.3.4`]
401
-
402
- [`3.3.4`]: https://github.com/capistrano/capistrano/compare/v3.3.3...v3.3.4
403
-
404
- * Minor changes:
405
- * Rely on a newer version of capistrano-stats with better privacy (@leehambley)
406
- * Fix cucumber spec for loading tasks from stage configs (@sponomarev)
407
- * Minor documentation fixes (@deeeki, @seuros, @andresilveira)
408
- * Spec improvements (@dimitrid, @sponomarev)
409
- * Fix to CLI flags for git-ls-remote (@dimitrid)
410
-
411
- ## [`3.3.3`]
412
-
413
- [`3.3.3`]: https://github.com/capistrano/capistrano/compare/v3.2.1...v3.3.3
414
-
415
- * Enhancement (@townsen)
416
- * Added the variable `:repo_tree` which allows the specification of a sub-tree that
417
- will be extracted from the repository. This is useful when deploying a project
418
- that lives in a subdirectory of a larger repository.
419
- Implemented only for git and hg.
420
- If not defined then the behaviour is as previously and the whole repository is
421
- extracted (subject to git-archive `.gitattributes` of course).
422
-
423
- * Enhancement (@townsen): Remove unnecessary entries from default backtrace
424
-
425
- When the `--backtrace` (or `--trace`) command line option is not supplied
426
- Rake lowers the noise level in exception backtraces by building
427
- a regular expression containing all the system library paths and
428
- using it to exclude backtrace entries that match.
429
-
430
- This does not always go far enough, particularly in RVM environments when
431
- many gem paths are added. This commit reverses that approach and _only_
432
- include backtrace entries that fall within the Capfile and list of tasks
433
- imported thereafter. This makes reading exceptions much easier on the eye.
434
-
435
- If the full unexpurgated backtrace is required then the --backtrace
436
- and --trace options supply it as before.
437
-
438
- * Disable loading stages configs on `cap -T` (@sponomarev)
439
-
440
- * Enhancements (@townsen)
441
- * Fix matching on hosts with custom ports or users set
442
- * Previously filtering would affect any generated configuration files so that
443
- files newly deployed would not be the same as those on the hosts previously
444
- deployed (and now excluded by filters). This is almost certainly not what is
445
- wanted: the filters should apply only to the on() method and thus any
446
- configuration files deployed will be identical across the set of servers
447
- making up the stage.
448
- * Host and Role filtering now affects only `on()` commands
449
- and not the `roles()`, `release_roles()` and `primary()` methods.
450
- * This applies to filters defined via the command line, the environment
451
- and the :filter variable.
452
- * Filtering now supports Regular expressions
453
- * This change _could_ cause existing scripts that use filtering and depend on
454
- the old behaviour to fail, though it is unlikely. Users who rely on
455
- filtering should check that generated configuration files are correct, and
456
- where not introduce server properties to do the filtering. For example, if a
457
- filter was used to specify an active subset of servers (by hostname), it should
458
- be removed and replaced with an 'active' property (set to true or false) on the
459
- server definitions. This keeps the stage file as the canonical model of the
460
- deployment environment.
461
-
462
- * See the documentation in the README.md file
463
-
464
- * Enhancements (@townsen)
465
- * Added set_if_empty method to DSL to allow conditional setting
466
- * Altered standard Capistrano defaults so that they are not set
467
- at the start of a stage if they have been previously set. This
468
- allows variables like :default_env to be set in deploy.rb.
469
- * Deep copy properties added using the 'roles' keyword
470
- * If a property exists on a server when another definition is
471
- encountered and is an Array, Set or Hash then add the new values
472
-
473
- This allows roles to specify properties common to all servers and
474
- then for individual servers to modify them, keeping things DRY
475
-
476
- Breaking Changes:
477
- * By using Ruby's noecho method introduced in Ruby version 1.9.3, we dropped support for Ruby versions prior to 1.9.3. See [issue #878](https://github.com/capistrano/capistrano/issues/878) and [PR #1112](https://github.com/capistrano/capistrano/pull/1112) for more information. (@kaikuchn)
478
- * Track (anonymous) statistics, see https://github.com/capistrano/stats. This breaks automated deployment on continuous integration servers until the `.capistrano/metrics` file is created (with content `full` to simulate a "yes") via the interactive prompt or manually.
479
-
480
- * Bug Fixes:
481
- * Fixed compatibility with FreeBSD tar (@robbertkl)
482
- * remote_file can be used inside a namespace (@mikz)
483
-
484
- * Minor Changes
485
- * Remove -v flag from mkdir call. (@caligo-mentis)
486
- * Capistrano now allows to customize `local_user` for revision log. (@sauliusgrigaitis)
487
- * Added tests for after/before hooks features (@juanibiapina, @miry)
488
- * Added `--force` flag to `svn export` command to fix errors when the release directory already exists.
489
- * Improved the output of `cap --help`. (@mbrictson)
490
- * Cucumber suite now runs on the latest version of Vagrant (@tpett)
491
- * The `ask` method now supports the `echo: false` option. (@mbrictson, @kaikuchn)
492
- * Cucumber scenario improvements (@bruno-)
493
- * Added suggestion to Capfile to use 'capistrano-passenger' gem, replacing suggestion in config/deploy.rb to re-implement 'deploy:restart' (@betesh)
494
- * Updated svn fetch_revision method to use `svnversion`
495
- * `cap install` no longer overwrites existing files. (@dmarkow)
496
-
497
- ## [`3.2.1`]
498
-
499
- [`3.2.1`]: https://github.com/capistrano/capistrano/compare/v3.2.0...v3.2.1
500
-
501
- * Bug Fixes:
502
- * 3.2.0 introduced some behaviour to modify the way before/after hooks were called, to allow the optional
503
- preservation of arguments to be passed to tasks. This release reverts that commit in order to restore
504
- original functionality, and fix (fairly serious) bugs introduced by the refactoring.
505
-
506
- * Minor changes:
507
- * Update dsl#local_user method and add test for it. (@bruno-)
508
- * Revert short sha1 revision with git. (@blaugueux)
509
- * Changed asking question to more standard format (like common unix commandline tools) (@sponomarev)
510
- * Fixed typos in the README. (@sponomarev)
511
- * Added `keys` method to Configuration to allow introspection of configuration options. (@juanibiapina)
512
- * Improve error message when git:check fails (raise instead of silently `exit 1`) (@mbrictson)
513
-
514
- ## [`3.2.0`]
515
-
516
- The changelog entries here are incomplete, because many authors choose not to
517
- be credited for their work, check the tag comparison link for Github.
518
-
519
- [`3.2.0`]: https://github.com/capistrano/capistrano/compare/v3.1.0...v3.2.0
520
-
521
- * Minor changes:
522
- * Added `keys` method to Server properties to allow introspection of automatically added
523
- properties.
524
- * Compatibility with Rake 10.2.0 - `ensure_task` is now added to `@top_level_tasks` as a string. (@dmarkow)
525
- * Amended the git check command, "ls-remote", to use "-h", limiting the list to refs/heads
526
-
527
- ## [`3.1.0`]
528
-
529
- [`3.1.0`]: https://github.com/capistrano/capistrano/compare/v3.0.1...v3.1.0
530
-
531
- Breaking changes:
532
-
533
- * `deploy:restart` task **is no longer run by default**.
534
- From this version, developers who restart the app on each deploy need to declare it in their deploy flow (eg `after 'deploy:publishing', 'deploy:restart'`)
535
- or, for passenger applications, use the capistrano-passenger gem.
536
-
537
- Please, check https://github.com/capistrano/capistrano/commit/4e6523e1f50707499cf75eb53dce37a89528a9b0 for more information. (@kirs)
538
-
539
- * Minor changes
540
- * Tasks that used `linked_dirs` and `linked_files` now run on all roles, not just app roles (@mikespokefire)
541
- * Tasks `deploy:linked_dirs`, `deploy:make_linked_dirs`, `deploy:linked_files`, `deploy:cleanup_rollback`,
542
- `deploy:log_revision` and `deploy:revert_release` now use `release_roles()` not `roles()` meaning that they
543
- will only run on servers where the `no_release` property is not falsy. (@leehambley)
544
- * Fixed bug when `deploy:cleanup` was executed twice by default (@kirs)
545
- * Config location can now be changed with `deploy_config_path` and `stage_config_path` options (@seenmyfate)
546
- * `no_release` option is now available (@seenmyfate)
547
- * Raise an error if developer tries to define `:all` role, which is reserved (@kirs)
548
- * `deploy:failed` hook was added to add some custom behaviour on failed deploy (@seenmyfate)
549
- * Correctly infer namespace in task enhancements (@seenmyfate)
550
- * Add SHA to revision log (@blackxored)
551
- * Allow configuration of multiple servers with same hostname but different ports (@rsslldnphy)
552
- * Add command line option to control role filtering (@andytinycat)
553
- * Make use of recent changes in Rake to over-ride the application name (@shime)
554
- * Readme corrections (@nathanstitt)
555
- * Allow roles to be fetched with a variable containing an array (@seenmyfate)
556
- * Improve console (@jage)
557
- * Add ability to filter tasks to specific servers (host filtering). (@andytinycat)
558
- * Add a command line option to control role filter (`--roles`) (@andytinycat)
559
- * Use an SCM object with a pluggable strategy (@coffeeaddict)
560
-
561
- Big thanks to @Kriechi for his help.
562
-
563
- ## [`3.0.1`]
564
-
565
- [`3.0.1`]: https://github.com/capistrano/capistrano/compare/v3.0.0...v3.0.1
566
-
567
- * `capify` not listed as executable (@leehambley)
568
- * Confirm license as MIT (@leehambley)
569
- * Move the git ssh helper to application path (@mpapis)
570
-
571
- ## [`3.0.0`]
572
-
573
- [`3.0.0`]: https://github.com/capistrano/capistrano/compare/2.15.5...v3.0.0
574
-
575
- If you are coming here to wonder why your Capfile doesn't work anymore, please
576
- vendor lock your Capistrano at 2.x, whichever version was working for you
577
- until today.
578
-
579
- Capistrano 3 is a ground-up rewrite with modularity, stability, speed and
580
- future proofing in mind. It's a big change, but now the code is 10x smaller,
581
- runs faster, is easier to read, and quicker to extend. In the reduction we've
582
- come up with a great gem based modular system for plugins and we're really
583
- proud of this release.
584
-
585
- The 3.0.0 release contains 38 patches from the following amazing people:
586
-
587
- * Tom `seenmyfate` Clements: more than 28 patches including cucumber integration tests! Not to
588
- mention Rails asset pipeline code, and bundler integrations.
589
- * Lee Hambley: Small changes around compatibility and log formatting
590
- * Kir Shatrov: for improvements in the core to make it easier to write extensions, for
591
- improving documentation, and for effectively building the chruby, rvm and rbenv integrations.
592
- * Michael Nikitochkin: Fixing a bug around linked files and directories.
593
- * Jack Thorne: for improvements to the default `Capfile` to fix some bad example syntax.
594
- * Erik Hetzner: for (what looks like great) work on the Mercurial (Hg) support. The Hg and Git
595
- source control mechanisms do not work the same way, but rather lean on the strengths of the
596
- underlying tools.
597
-
598
- (If I missed anyone, I'm sorry, your contributions have been awesome)
599
-
600
- The 2.x branch of code is now no longer maintained. Towards the end of it's
601
- useful life there were an increasing number of features and pieces of code
602
- which didn't make sense for certain groups of people, in certain situations,
603
- leading a to a ping-pong tennis effect with pull requests every few weeks
604
- "fixing" a use-case which had already been "fixed" shortly before. As many of
605
- the use-cases are outside the scope of the testing environments I (and by
606
- extension the trusted contributors and IRC regulars) were able to test for.
607
-
608
- There's a more extensive post about my failure to be able to keep up with the
609
- demands of maintaining v2 whilst trying to build something which is appropriate
610
- for the current landscape. If you are affected by the unsupported 2 branch,
611
- please contact me (Lee Hambley) to discuss how my company can help support you.
612
- Otherwise, please try v3, we're sure you'll like it, and the code is designed
613
- to be so simple that anyone can work on it.
614
-
615
- ## `3.0.0.pre14`
616
-
617
- * Thanks to numerous contributors, in particular (@teohm) for a series of improvements.
618
-
619
- ## `3.0.0.pre13`
620
-
621
- * Fixed typos in the Capfile. (@teohm)
622
- * Allow setting SSH options globally. (@korin)
623
- * Change the flow (and hooks) see http://www.capistranorb.com/documentation/getting-started/flow/ for more information. Requires min SSHKit 0.0.34 (@teohm)
624
- * Fix sorting releases in lexicographical order (@teohm)
625
-
626
- ## `3.0.0.pre12`
627
-
628
- * `capistrano/bundler` now runs bundle on all roles, this addresses the same
629
- issue as the related changes in `pre11`. (@leehambley)
630
-
631
- ## `3.0.0.pre11`
632
-
633
- * Some deploy.rake tasks now apply to all servers, not expecting a
634
- primary(:app) server which may not exist in all deploy environments.
635
- (@leehambley).
636
-
637
- ## `3.0.0.pre10`
638
-
639
- * Fixes pre9.
640
-
641
- ## `3.0.0.pre9`
642
-
643
- * Fixes a syntax error introduced with filtering (with tests) introduced in
644
- `pre8`. (@leehambley)
645
-
646
- ## `3.0.0.pre8`
647
-
648
- * Fixed a syntax where `roles(:foo, :bar)` was being mistaken as a filter
649
- (roles(:foo, :bar => nil). The correct syntax to use is: roles([:foo,:bar])
650
- (@leehambley)
651
-
652
- ## `3.0.0.pre7`
653
-
654
- * Fix Git https authentication. (@leehambley)
655
- * Capfile template fixes (repo/repo_url) (@teohm)
656
- * Readme Fixes (@ffmike, @kejadlen, @dwickwire)
657
- * Fix the positioning of the bundler hook, now immediately after finalize. (@teohm)
1
+ Release notes for this project are kept here: https://github.com/capistrano/capistrano/releases
data/Dangerfile CHANGED
@@ -1 +1 @@
1
- danger.import_dangerfile(github: "capistrano/danger")
1
+ danger.import_dangerfile(github: "capistrano/danger", branch: "no-changelog")
data/Gemfile CHANGED
@@ -30,3 +30,8 @@ end
30
30
  if Gem::Requirement.new("< 2.1").satisfied_by?(Gem::Version.new(RUBY_VERSION))
31
31
  gem "i18n", "< 1.3.0"
32
32
  end
33
+
34
+ # We only run danger once on a new-ish ruby; no need to install it otherwise
35
+ if Gem::Requirement.new("> 2.4").satisfied_by?(Gem::Version.new(RUBY_VERSION))
36
+ gem "danger"
37
+ end
@@ -11,7 +11,7 @@
11
11
  2. **Ensure all tests are passing by running `rake spec` and `rake features`.**
12
12
  3. Determine which would be the correct next version number according to [semver](http://semver.org/).
13
13
  4. Update the version in `./lib/capistrano/version.rb`.
14
- 4. Update the version in the `./README.md` Gemfile example (`gem "capistrano", "~> X.Y"`).
15
- 5. Update the `CHANGELOG`.
16
- 6. Commit the changelog and version in a single commit, the message should be "Preparing vX.Y.Z"
14
+ 5. Update the version in the `./README.md` Gemfile example (`gem "capistrano", "~> X.Y"`).
15
+ 6. Commit the `version.rb` and `README.md` changes in a single commit, the message should be "Preparing vX.Y.Z"
17
16
  7. Run `rake release`; this will tag, push to GitHub, and publish to rubygems.org.
17
+ 8. Update the draft release on the [GitHub releases page](https://github.com/capistrano/capistrano/releases) to point to the new tag and publish the release
data/Rakefile CHANGED
@@ -10,3 +10,8 @@ Cucumber::Rake::Task.new(:features)
10
10
 
11
11
  desc "Run RuboCop checks"
12
12
  RuboCop::RakeTask.new
13
+
14
+ Rake::Task["release"].enhance do
15
+ puts "Don't forget to publish the release on GitHub!"
16
+ system "open https://github.com/capistrano/capistrano/releases"
17
+ end
@@ -11,9 +11,13 @@ Gem::Specification.new do |gem|
11
11
  gem.email = ["seenmyfate@gmail.com", "lee.hambley@gmail.com"]
12
12
  gem.description = "Capistrano is a utility and framework for executing commands in parallel on multiple remote machines, via SSH."
13
13
  gem.summary = "Capistrano - Welcome to easy deployment with Ruby over SSH"
14
- gem.homepage = "http://capistranorb.com/"
14
+ gem.homepage = "https://capistranorb.com/"
15
15
  gem.metadata = {
16
- "changelog_uri" => "https://github.com/capistrano/capistrano/blob/master/CHANGELOG.md"
16
+ "bug_tracker_uri" => "https://github.com/capistrano/capistrano/issues",
17
+ "changelog_uri" => "https://github.com/capistrano/capistrano/releases",
18
+ "source_code_uri" => "https://github.com/capistrano/capistrano",
19
+ "homepage_uri" => "https://capistranorb.com/",
20
+ "documentation_uri" => "https://capistranorb.com/"
17
21
  }
18
22
  gem.files = `git ls-files -z`.split("\x0").reject { |f| f =~ /^docs/ }
19
23
  gem.executables = %w(cap capify)
@@ -28,7 +32,6 @@ Gem::Specification.new do |gem|
28
32
  gem.add_dependency "rake", ">= 10.0.0"
29
33
  gem.add_dependency "sshkit", ">= 1.9.0"
30
34
 
31
- gem.add_development_dependency "danger"
32
35
  gem.add_development_dependency "mocha"
33
36
  gem.add_development_dependency "rspec"
34
37
  gem.add_development_dependency "rubocop", "0.48.1"
@@ -36,12 +36,12 @@ module Capistrano
36
36
  end
37
37
 
38
38
  def gets
39
- return unless $stdin.tty?
39
+ return unless stdin.tty?
40
40
 
41
41
  if echo?
42
- $stdin.gets
42
+ stdin.gets
43
43
  else
44
- $stdin.noecho(&:gets).tap { $stdout.print "\n" }
44
+ stdin.noecho(&:gets).tap { $stdout.print "\n" }
45
45
  end
46
46
  rescue Errno::EIO
47
47
  # when stdio gets closed
@@ -59,6 +59,10 @@ module Capistrano
59
59
  def echo?
60
60
  (options || {}).fetch(:echo, true)
61
61
  end
62
+
63
+ def stdin
64
+ (options || {}).fetch(:stdin, $stdin)
65
+ end
62
66
  end
63
67
  end
64
68
  end
@@ -1,3 +1,3 @@
1
1
  module Capistrano
2
- VERSION = "3.11.1".freeze
2
+ VERSION = "3.11.2".freeze
3
3
  end
@@ -356,14 +356,16 @@ describe Capistrano::DSL do
356
356
  end
357
357
 
358
358
  describe "asking for a variable" do
359
+ let(:stdin) { stub(tty?: true) }
360
+
359
361
  before do
360
- dsl.ask(:scm, :svn)
362
+ dsl.ask(:scm, :svn, stdin: stdin)
361
363
  $stdout.stubs(:print)
362
364
  end
363
365
 
364
366
  context "variable is provided" do
365
367
  before do
366
- $stdin.expects(:gets).returns("git")
368
+ stdin.expects(:gets).returns("git")
367
369
  end
368
370
 
369
371
  it "sets the input as the variable" do
@@ -373,7 +375,7 @@ describe Capistrano::DSL do
373
375
 
374
376
  context "variable is not provided" do
375
377
  before do
376
- $stdin.expects(:gets).returns("")
378
+ stdin.expects(:gets).returns("")
377
379
  end
378
380
 
379
381
  it "sets the variable as the default" do
@@ -3,12 +3,12 @@ require "spec_helper"
3
3
  module Capistrano
4
4
  class Configuration
5
5
  describe Question do
6
- let(:question) { Question.new(key, default, options) }
7
- let(:question_without_echo) { Question.new(key, default, echo: false) }
8
- let(:question_without_default) { Question.new(key, nil) }
6
+ let(:question) { Question.new(key, default, stdin: stdin) }
7
+ let(:question_without_echo) { Question.new(key, default, echo: false, stdin: stdin) }
8
+ let(:question_without_default) { Question.new(key, nil, stdin: stdin) }
9
9
  let(:default) { :default }
10
10
  let(:key) { :branch }
11
- let(:options) { nil }
11
+ let(:stdin) { stub(tty?: true) }
12
12
 
13
13
  describe ".new" do
14
14
  it "takes a key, default, options" do
@@ -22,15 +22,15 @@ module Capistrano
22
22
 
23
23
  it "returns the echoed value" do
24
24
  $stdout.expects(:print).with("Please enter branch (default): ")
25
- $stdin.expects(:gets).returns(branch)
26
- $stdin.expects(:noecho).never
25
+ stdin.expects(:gets).returns(branch)
26
+ stdin.expects(:noecho).never
27
27
 
28
28
  expect(question.call).to eq(branch)
29
29
  end
30
30
 
31
31
  it "returns the value but does not echo it" do
32
32
  $stdout.expects(:print).with("Please enter branch (default): ")
33
- $stdin.expects(:noecho).returns(branch)
33
+ stdin.expects(:noecho).returns(branch)
34
34
  $stdout.expects(:print).with("\n")
35
35
 
36
36
  expect(question_without_echo.call).to eq(branch)
@@ -38,8 +38,8 @@ module Capistrano
38
38
 
39
39
  it "returns the value but has no default between parenthesis" do
40
40
  $stdout.expects(:print).with("Please enter branch: ")
41
- $stdin.expects(:gets).returns(branch)
42
- $stdin.expects(:noecho).never
41
+ stdin.expects(:gets).returns(branch)
42
+ stdin.expects(:noecho).never
43
43
 
44
44
  expect(question_without_default.call).to eq(branch)
45
45
  end
@@ -50,7 +50,7 @@ module Capistrano
50
50
 
51
51
  before do
52
52
  $stdout.expects(:print).with("Please enter branch (default): ")
53
- $stdin.expects(:gets).returns("")
53
+ stdin.expects(:gets).returns("")
54
54
  end
55
55
 
56
56
  it "returns the default as the value" do
@@ -60,8 +60,8 @@ module Capistrano
60
60
 
61
61
  context "tty unavailable", capture_io: true do
62
62
  before do
63
- $stdin.expects(:gets).never
64
- $stdin.expects(:tty?).returns(false)
63
+ stdin.expects(:gets).never
64
+ stdin.expects(:tty?).returns(false)
65
65
  end
66
66
 
67
67
  it "returns the default as the value" do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.11.1
4
+ version: 3.11.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Clements
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-08-29 00:00:00.000000000 Z
12
+ date: 2019-09-29 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: airbrussh
@@ -67,20 +67,6 @@ dependencies:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
69
  version: 1.9.0
70
- - !ruby/object:Gem::Dependency
71
- name: danger
72
- requirement: !ruby/object:Gem::Requirement
73
- requirements:
74
- - - ">="
75
- - !ruby/object:Gem::Version
76
- version: '0'
77
- type: :development
78
- prerelease: false
79
- version_requirements: !ruby/object:Gem::Requirement
80
- requirements:
81
- - - ">="
82
- - !ruby/object:Gem::Version
83
- version: '0'
84
70
  - !ruby/object:Gem::Dependency
85
71
  name: mocha
86
72
  requirement: !ruby/object:Gem::Requirement
@@ -136,6 +122,8 @@ extra_rdoc_files: []
136
122
  files:
137
123
  - ".github/issue_template.md"
138
124
  - ".github/pull_request_template.md"
125
+ - ".github/release-drafter.yml"
126
+ - ".github/workflows/push.yml"
139
127
  - ".gitignore"
140
128
  - ".rubocop.yml"
141
129
  - ".travis.yml"
@@ -265,11 +253,15 @@ files:
265
253
  - spec/support/tasks/plugin.rake
266
254
  - spec/support/tasks/root.rake
267
255
  - spec/support/test_app.rb
268
- homepage: http://capistranorb.com/
256
+ homepage: https://capistranorb.com/
269
257
  licenses:
270
258
  - MIT
271
259
  metadata:
272
- changelog_uri: https://github.com/capistrano/capistrano/blob/master/CHANGELOG.md
260
+ bug_tracker_uri: https://github.com/capistrano/capistrano/issues
261
+ changelog_uri: https://github.com/capistrano/capistrano/releases
262
+ source_code_uri: https://github.com/capistrano/capistrano
263
+ homepage_uri: https://capistranorb.com/
264
+ documentation_uri: https://capistranorb.com/
273
265
  post_install_message:
274
266
  rdoc_options: []
275
267
  require_paths:
@@ -285,7 +277,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
285
277
  - !ruby/object:Gem::Version
286
278
  version: '0'
287
279
  requirements: []
288
- rubygems_version: 3.0.3
280
+ rubygems_version: 3.0.6
289
281
  signing_key:
290
282
  specification_version: 4
291
283
  summary: Capistrano - Welcome to easy deployment with Ruby over SSH