capistrano-scm-jenkins 0.0.8 → 0.0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +4 -4
- data/NEWS.md +4 -0
- data/README.md +1 -1
- data/lib/capistrano-scm-jenkins/version.rb +1 -1
- data/lib/capistrano/recipes/deploy/scm/jenkins.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e986ebc776893d443585515bdb498107f71a9e44
|
4
|
+
data.tar.gz: 61b5bd0f5a5ea6e1d4187b66d2aafbcaa45734c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d8e59b049253b7894b4422a5b3442e2c65b361947511ad5d4c3a149d74577356bc35face55198de4e1aecee03a790575145410bbb466b5cec60f9b7ee6fbeba9
|
7
|
+
data.tar.gz: afb2843672fe6978aafb1a9dc1f50e3ccf2c13d92c2a77bc954d985845b995a74735b1995b1eba34ff36b8c12a6fd90d9edb3dc8b7cc37e5ce2e32c2b4b40e95
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
capistrano-scm-jenkins (0.0.
|
4
|
+
capistrano-scm-jenkins (0.0.9)
|
5
5
|
capistrano (~> 2.0)
|
6
6
|
net-netrc
|
7
7
|
rubyzip (~> 0.0)
|
@@ -17,14 +17,14 @@ GEM
|
|
17
17
|
net-ssh (>= 2.0.14)
|
18
18
|
net-ssh-gateway (>= 1.1.0)
|
19
19
|
diff-lcs (1.2.5)
|
20
|
-
highline (1.6.
|
20
|
+
highline (1.6.21)
|
21
21
|
net-netrc (0.2.2)
|
22
22
|
Platform (>= 0.3.0)
|
23
|
-
net-scp (1.1
|
23
|
+
net-scp (1.2.1)
|
24
24
|
net-ssh (>= 2.6.5)
|
25
25
|
net-sftp (2.1.2)
|
26
26
|
net-ssh (>= 2.6.5)
|
27
|
-
net-ssh (2.
|
27
|
+
net-ssh (2.9.1)
|
28
28
|
net-ssh-gateway (1.2.0)
|
29
29
|
net-ssh (>= 2.6.5)
|
30
30
|
rake (10.1.1)
|
data/NEWS.md
CHANGED
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# capistrano-scm-jenkins
|
2
2
|
|
3
|
-
[![Build Status](https://secure.travis-ci.org/lidaobing/capistrano-scm-jenkins.png?branch=master)](http://travis-ci.org/lidaobing/capistrano-scm-jenkins)
|
3
|
+
[![Build Status](https://secure.travis-ci.org/lidaobing/capistrano-scm-jenkins.png?branch=master)](http://travis-ci.org/lidaobing/capistrano-scm-jenkins) [![Gem Version](https://badge.fury.io/rb/capistrano-scm-jenkins.png)](http://badge.fury.io/rb/capistrano-scm-jenkins)
|
4
4
|
|
5
5
|
With this plugin, you can use jenkins build artifact as a repository, and
|
6
6
|
deploy your build artifact with capistrano.
|
@@ -29,7 +29,7 @@ module Capistrano
|
|
29
29
|
destination = destination.to_s + '/'
|
30
30
|
end
|
31
31
|
|
32
|
-
execute << 'TMPDIR=`mktemp -d`'
|
32
|
+
execute << 'TMPDIR=`mktemp -d 2>/dev/null || mktemp -d -t .deploy_tempdir`'
|
33
33
|
execute << 'cd $TMPDIR'
|
34
34
|
execute << "curl #{curl_interface} #{insecure} #{authentication} -sO '#{artifact_url(revision)}'"
|
35
35
|
if artifact = variable(:jenkins_artifact_file)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-scm-jenkins
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- LI Daobing
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2014-07-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: capistrano
|
@@ -121,7 +121,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
121
121
|
version: '0'
|
122
122
|
requirements: []
|
123
123
|
rubyforge_project: capistrano-scm-jenkins
|
124
|
-
rubygems_version: 2.
|
124
|
+
rubygems_version: 2.3.0
|
125
125
|
signing_key:
|
126
126
|
specification_version: 4
|
127
127
|
summary: use jenkins as a capistrano scm
|