capistrano_scm_nexus 1.0.1 → 1.0.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
  SHA1:
3
- metadata.gz: 90565257f0675e688469d7621498a83f82af87b4
4
- data.tar.gz: 469ce23a11df6a44576d1805408bb3ced90e42b9
3
+ metadata.gz: b41094c5d17a5c6fdaec86ec905f1f3b22efd3d9
4
+ data.tar.gz: 30177ac9f763253f1d71d9cfe2c762a62e686b8f
5
5
  SHA512:
6
- metadata.gz: 5fec8c499da4a107a98fa2c2fbfba2dc9e958dfaa3ab7f9ac24daf34cae2ab1b2b40c418594c46af848c3557b58832f6b8c91d2554cc84eddf429c9dee76f5d7
7
- data.tar.gz: 0eb242373c0b07a862e6d73a02119e2310d039ea674f38e6d1a57ac9d8b30411602bc66a063bc5c8ad0be4934a4ae56ca0ba529b6563a257afa90364e56fcd3f
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'
@@ -1,3 +1,3 @@
1
1
  module CapistranoSCMNexus
2
- VERSION = '1.0.1'
2
+ VERSION = '1.0.2'
3
3
  end
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.1
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: 2014-12-08 00:00:00.000000000 Z
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.2.2
60
+ rubygems_version: 2.0.14
61
61
  signing_key:
62
62
  specification_version: 4
63
63
  summary: Capistrano SCM Nexus