capistrano_scm_nexus 1.0.1 → 1.0.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/README.md +3 -0
- data/lib/capistrano/tasks/nexus.rake +1 -1
- data/lib/capistrano_scm_nexus/version.rb +1 -1
- metadata +9 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b41094c5d17a5c6fdaec86ec905f1f3b22efd3d9
|
|
4
|
+
data.tar.gz: 30177ac9f763253f1d71d9cfe2c762a62e686b8f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9b896ef518e1c36adebd772a92eac13d00ad826c0420dae4efba1295f40cc3dd8b79d876db6a3109c21d4305c0f410c2a1172f890504cbbce2e399077d7bdf85
|
|
7
|
+
data.tar.gz: 7e6e2c807eea49ffd09d80afe99347217e05da1735c15ac96ed63425b00070da3c384e51135f6876b1120eeebbc3b5f24ccf98877e5f0f6a0472abf82bc1a9b1
|
data/README.md
CHANGED
|
@@ -19,6 +19,9 @@ set :nexus_repository, 'releases'
|
|
|
19
19
|
set :nexus_group_id, 'com.example'
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
+
Other useful variables:
|
|
23
|
+
- `nexus_strategy` - Overrides the strategy used by this gem with the constant that you specify.
|
|
24
|
+
|
|
22
25
|
Based on the information you provide, the Nexus strategy will download a tgz
|
|
23
26
|
from the nexus repository and untar and ungzip it into the releases directory.
|
|
24
27
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
namespace :nexus do
|
|
2
2
|
def strategy
|
|
3
|
-
@strategy ||= Capistrano::Nexus.new(self, Capistrano::Nexus::DefaultStrategy)
|
|
3
|
+
@strategy ||= Capistrano::Nexus.new(self, fetch(:nexus_strategy, Capistrano::Nexus::DefaultStrategy))
|
|
4
4
|
end
|
|
5
5
|
|
|
6
6
|
desc 'Copy artifact contents to releases'
|
metadata
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano_scm_nexus
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jen Page
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-12-02 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: '0'
|
|
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: '0'
|
|
27
27
|
description: Enables Capistrano 3 to download artifacts from Nexus and extract their
|
|
@@ -32,11 +32,11 @@ executables: []
|
|
|
32
32
|
extensions: []
|
|
33
33
|
extra_rdoc_files: []
|
|
34
34
|
files:
|
|
35
|
-
- README.md
|
|
36
35
|
- lib/capistrano/nexus.rb
|
|
37
36
|
- lib/capistrano/tasks/nexus.rake
|
|
38
|
-
- lib/capistrano_scm_nexus.rb
|
|
39
37
|
- lib/capistrano_scm_nexus/version.rb
|
|
38
|
+
- lib/capistrano_scm_nexus.rb
|
|
39
|
+
- README.md
|
|
40
40
|
homepage: https://github.com/jmpage/capistrano_scm_nexus
|
|
41
41
|
licenses:
|
|
42
42
|
- MIT
|
|
@@ -47,17 +47,17 @@ require_paths:
|
|
|
47
47
|
- lib
|
|
48
48
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
49
49
|
requirements:
|
|
50
|
-
- -
|
|
50
|
+
- - '>='
|
|
51
51
|
- !ruby/object:Gem::Version
|
|
52
52
|
version: '0'
|
|
53
53
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
54
54
|
requirements:
|
|
55
|
-
- -
|
|
55
|
+
- - '>='
|
|
56
56
|
- !ruby/object:Gem::Version
|
|
57
57
|
version: '0'
|
|
58
58
|
requirements: []
|
|
59
59
|
rubyforge_project:
|
|
60
|
-
rubygems_version: 2.
|
|
60
|
+
rubygems_version: 2.0.14
|
|
61
61
|
signing_key:
|
|
62
62
|
specification_version: 4
|
|
63
63
|
summary: Capistrano SCM Nexus
|