dapp 0.7.29 → 0.7.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/config/en/net_status.yml +0 -1
- data/lib/dapp/config/directive/git_artifact_remote.rb +0 -2
- data/lib/dapp/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f835448397eebae973720cb36ee2300fce8fc6a4
|
4
|
+
data.tar.gz: 85c2a514f0dc7a3089af99b2c1640d1372b82851
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bae62d8644ce259a9433b27da2b2a229dc5267bcdf24b69403d574f2b9214f0e614ef823ad1840230bf5b9ba2f91f8b34f8b1a047c96d75139c857e3473b5653
|
7
|
+
data.tar.gz: 5a75c4b519e0959f71d2762659c5d1a0d5a5676a655b317440dd81d3d207234f6c6967d7ced486960afb291bd6916efa74e25e86dcb3f1691918a35d73cbbb24
|
data/config/en/net_status.yml
CHANGED
@@ -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
|
|
data/lib/dapp/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2017-05-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: mixlib-shellout
|