capistrano-distribution 0.2.0 → 0.3.2
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 +4 -4
- data/LICENSE +1 -1
- data/NEWS.md +12 -0
- data/README.md +10 -1
- data/lib/capistrano/distribution/version.rb +1 -1
- data/lib/capistrano/tasks/distribution.cap +0 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a10f051da360d0daef93fef3671bb5eb9ad3d8da
|
|
4
|
+
data.tar.gz: d8cfb16bf539b2cac10c55e20b503294a746bafd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e08755bd304d7eea89498b97260f1e3e6a9f55fd9bf034d509f66536a5606b544b98df49c4dfeaa60b5991dc3cfd24245b55245d12a90e7ca8788f4958864fbb
|
|
7
|
+
data.tar.gz: cb0fc973197a54b7a3ada98f49fca22cf59b950a83e7a1a82a04dd47f89e7142a12d5338420e4009e30fd90896665b0f6ada75b35371ad9b5f8e9b98f552df38
|
data/LICENSE
CHANGED
data/NEWS.md
CHANGED
|
@@ -6,6 +6,18 @@ detailed information is available in the rest of the documentation.
|
|
|
6
6
|
**NOTE:** Date stamps in the following entries are in YYYY/MM/DD format.
|
|
7
7
|
|
|
8
8
|
|
|
9
|
+
## v0.3.2 (2016/03/01)
|
|
10
|
+
|
|
11
|
+
* Update copyright date.
|
|
12
|
+
|
|
13
|
+
## v0.3.1 (2016/03/01)
|
|
14
|
+
|
|
15
|
+
* Add more usage details in the README.
|
|
16
|
+
|
|
17
|
+
## v0.3.0 (2016/03/01)
|
|
18
|
+
|
|
19
|
+
* Remove a debugging statement.
|
|
20
|
+
|
|
9
21
|
## v0.2.0 (2016/02/29)
|
|
10
22
|
|
|
11
23
|
* Provide a setting (`:distribution_runner_opts`) to configure runner options.
|
data/README.md
CHANGED
|
@@ -34,6 +34,15 @@ full download of the source artifact, so these could be expensive and/or slow.
|
|
|
34
34
|
|
|
35
35
|
## SYNOPSIS
|
|
36
36
|
|
|
37
|
+
Add this to your `Capfile` in all cases:
|
|
38
|
+
|
|
39
|
+
```ruby
|
|
40
|
+
# Capfile
|
|
41
|
+
...
|
|
42
|
+
require 'capistrano/distribution'
|
|
43
|
+
...
|
|
44
|
+
```
|
|
45
|
+
|
|
37
46
|
Simple Git-based distribution (master branch of the current repository):
|
|
38
47
|
|
|
39
48
|
```ruby
|
|
@@ -142,7 +151,7 @@ encouraged.
|
|
|
142
151
|
```
|
|
143
152
|
(The MIT License)
|
|
144
153
|
|
|
145
|
-
Copyright (c)
|
|
154
|
+
Copyright (c) 2016 Spiceworks, Inc.
|
|
146
155
|
|
|
147
156
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
148
157
|
a copy of this software and associated documentation files (the
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-distribution
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jeremy Bopp
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-03-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|