dapp 0.7.29 → 0.7.30

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: 27f41edc93f675eb3cb343639e176e7ed7163643
4
- data.tar.gz: dd34396d0d2f76e0bf83ec0a51e5744655be40e4
3
+ metadata.gz: f835448397eebae973720cb36ee2300fce8fc6a4
4
+ data.tar.gz: 85c2a514f0dc7a3089af99b2c1640d1372b82851
5
5
  SHA512:
6
- metadata.gz: f743206bfe53fbc9a01adfd730a58d0533cf5c8aa1819b719fc6adaf6b7e551733bb1b52e1f6d9693fee02b5cd92bb3c9694a556ecbd28561e51ce98cb947df3
7
- data.tar.gz: 358972edf1f1293639ea69a26a0d1ddb1338e425c2dd1431ce79ffaddefb9ffdca0e8292050993427f3daf7cb171d8293a8224aa756c5494399d2414e5c06172
6
+ metadata.gz: bae62d8644ce259a9433b27da2b2a229dc5267bcdf24b69403d574f2b9214f0e614ef823ad1840230bf5b9ba2f91f8b34f8b1a047c96d75139c857e3473b5653
7
+ data.tar.gz: 5a75c4b519e0959f71d2762659c5d1a0d5a5676a655b317440dd81d3d207234f6c6967d7ced486960afb291bd6916efa74e25e86dcb3f1691918a35d73cbbb24
@@ -45,7 +45,6 @@ en:
45
45
  stage_artifact_not_associated: "Artifact not associated with any stage: expected `before` or `after` attribute!"
46
46
  stage_artifact_double_associate: "Cannot use `%{stage}` stage for artifact, already used in `%{conflict_stage}` stage!"
47
47
  stage_artifact_not_supported_associated_stage: "Bad artifact stage `%{stage}`!"
48
- git_artifact_remote_unsupported_protocol: "Remote git repo `%{url}`: unsupported protocol!"
49
48
  git_artifact_remote_branch_with_commit: "Remote git repo: use `commit` or `branch` directive!"
50
49
  artifact_conflict: "Conflict between artifacts paths!"
51
50
  scratch_unsupported_directive: "Scratch dimg has unsupported directive `%{directive}`!"
@@ -6,8 +6,6 @@ module Dapp
6
6
  attr_reader :_url, :_name, :_branch, :_commit
7
7
 
8
8
  def initialize(url, **kwargs, &blk)
9
- raise Error::Config, code: :git_artifact_remote_unsupported_protocol, data: { url: url } unless %w(http https).include? URI(url.to_s).scheme
10
-
11
9
  @_url = url
12
10
  @_name = url.gsub(%r{.*?([^\/ ]+)\.git}, '\\1')
13
11
 
@@ -1,5 +1,5 @@
1
1
  # Version
2
2
  module Dapp
3
- VERSION = '0.7.29'.freeze
3
+ VERSION = '0.7.30'.freeze
4
4
  BUILD_CACHE_VERSION = '6.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dapp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.29
4
+ version: 0.7.30
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitry Stolyarov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-26 00:00:00.000000000 Z
11
+ date: 2017-05-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mixlib-shellout