dapp 0.12.0 → 0.12.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: 75c3a3047f2f78af31a7a33c972454b929a165f2
4
- data.tar.gz: 9047d134234568ac750fd1ba4726e6628a9e515d
3
+ metadata.gz: ab0b65075a7e3d658f00b0ab2434e6edbd42b95f
4
+ data.tar.gz: dfb54c02f164cd442150d53e3e2ff0c91f89c2ed
5
5
  SHA512:
6
- metadata.gz: f0d3db56d2c2035b3a4c4a1e4f9f71c72874201110de648f880ad3b853d794f316438b8f8e5988b5941a9cacf0ee32ffd08ba02a98783a524b3629fa455fb947
7
- data.tar.gz: 0e03117d5a43c2c1285ad2c77e3be37ce6c3a4d0d58b2a9c2da4652508694cca346b6cc1aac49e4d87442c62295baf23af19ab4fbb28da3bfa484f3f7407c0d7
6
+ metadata.gz: 882161473c3bde1cf99080c2a407542bf56e13045ef4d79b876cf14259a174ce3fbfbcd68cbefbc2bf5d26454f0f60a55b7d369ce01a81e0f2a620cee886f13e
7
+ data.tar.gz: c7237d58a67597e24af464817905d0ddd6dc2e01072a90d902190116098cf57af54ea2c8b9800deca56194c02d3c838a992ed76c7c17ea1e53d9fcf2a9d3917c
@@ -55,7 +55,6 @@ en:
55
55
  stage_artifact_not_associated: "Artifact not associated with any stage: expected `before` or `after` attribute!"
56
56
  stage_artifact_double_associate: "Cannot use `%{stage}` stage for artifact, already used in `%{conflict_stage}` stage!"
57
57
  stage_artifact_not_supported_associated_stage: "Bad artifact stage `%{stage}`!"
58
- git_artifact_remote_unsupported_protocol: "Remote git repo `%{url}`: unsupported protocol!"
59
58
  git_artifact_remote_branch_with_commit: "Remote git repo: use `commit` or `branch` directive!"
60
59
  artifact_conflict: "Conflict between artifacts paths!"
61
60
  scratch_unsupported_directive: "Scratch dimg has unsupported directive `%{directive}`!"
@@ -6,9 +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,
10
- data: { url: url } unless %w(http https).include? URI(url.to_s).scheme
11
-
12
9
  @_url = url
13
10
  @_name = url.gsub(%r{.*?([^\/ ]+)\.git}, '\\1')
14
11
 
data/lib/dapp/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Dapp
2
- VERSION = '0.12.0'.freeze
3
- BUILD_CACHE_VERSION = 8
2
+ VERSION = '0.12.2'.freeze
3
+ BUILD_CACHE_VERSION = 9
4
4
  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.12.0
4
+ version: 0.12.2
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-28 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