capistrano-scm-jenkins 0.3.2 → 0.3.3

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: 9a48168dca92567f86c908b7a20892e07d2e262e
4
- data.tar.gz: 5b4ee08f5e68c2a059b96adc073bfb96146cbddf
3
+ metadata.gz: 04edc4112c4c07cb04de8d2464b3035f5d74a9c4
4
+ data.tar.gz: 3604822a8ee58b02d3d1e2ba179ed416845c92f2
5
5
  SHA512:
6
- metadata.gz: ca34d802fa798e41ee4c7e2b44782e55f921ada96d039daa181a9b0da7c0b94a22cc8e9d44d2e4f4be374f7f598d26bd79fe6c5798b2567648ec12144361f81d
7
- data.tar.gz: 37068df1ab05db7631d7cc1e25dc4a71cce3c7e2718746b9e263a678478b2a3ebfae31928969d2bfd7fca511a3d83caf3c78f01a0e9a0015947245aea26708e7
6
+ metadata.gz: e485c60bc446f0ad1ab649eba89316cb554d016d49a8476fa21f91c47f54406d0ab4a15b2ce1ce9891520435001bceef544de1186b3c0d4979a755b7bccba6b6
7
+ data.tar.gz: f892d06dc57bd330c3fb02badcae65c06606d3d727202d6e72cbd820d6d3a43b2379630654eca66b5cbeb82c8ed4012059e66490e43d2182b4439adaa965cf3e
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- capistrano-scm-jenkins (0.3.2)
4
+ capistrano-scm-jenkins (0.3.3)
5
5
  capistrano (~> 3.2.1)
6
6
 
7
7
  GEM
data/NEWS.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.3.2 (2014-05-23)
2
+
3
+ * Fix bypassing of SSL verification using cURL (thanks @xsk)
4
+
1
5
  ## 0.3.1 (2014-05-21)
2
6
 
3
7
  * Ensure gemspec dependencies are properly set for Cap ~> 3.2.1
@@ -1,3 +1,3 @@
1
1
  module CapistranoScmJenkins
2
- VERSION = '0.3.2'
2
+ VERSION = '0.3.3'
3
3
  end
@@ -123,7 +123,8 @@ class Capistrano::Jenkins < Capistrano::SCM
123
123
  def update
124
124
  # grab the newest artifact
125
125
  context.execute :curl, "--silent --fail --show-error #{curl_auth} " +
126
- "#{artifact_url} -o #{fetch(:application)}#{artifact_ext}"
126
+ "#{artifact_url} -o #{fetch(:application)}#{artifact_ext} " +
127
+ "#{"--insecure" if fetch(:jenkins_insecure)}"
127
128
  end
128
129
 
129
130
  def release
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-scm-jenkins
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - LI Daobing
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-05-21 00:00:00.000000000 Z
12
+ date: 2014-05-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: capistrano