app-runner 0.0.2 → 0.0.3
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/lib/app-runner/commands/switch.rb +5 -2
- data/lib/app-runner/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: 4b5d12d27f7799a32212fc72c5bc975aee776d87
|
4
|
+
data.tar.gz: 8376cb24fc3d2dd5c114a27d6d2a066888b36014
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 064905a7d18587dbf597b5ca690eafc380e5c28d16edbef670c39a0271f4a28021c1e9d4648b9654e88b5ae4c250dc443da5c84fb6dfbabd8a245ecc2dbe20cb
|
7
|
+
data.tar.gz: 2889facb8e85a91066ff60fd2a979dae0b789f1a753773f95e0f700eb89039317cb728596ce69c0d5d8c5c201a054dc15acaca5424708fe2896a59d7ff143047
|
@@ -4,11 +4,12 @@ module Commands
|
|
4
4
|
|
5
5
|
def execute(global_options, options, args)
|
6
6
|
config=global_options['configHash'];
|
7
|
+
serviceUrl=ENV['artifacts_url'] or config["url"];
|
7
8
|
if (options["url"])
|
8
|
-
download(
|
9
|
+
download(serviceUrl, options["url"], config["destination"])
|
9
10
|
elsif (options["v"] && options["t"]=='mvn')
|
10
11
|
mvn=config["mvn"];
|
11
|
-
download(
|
12
|
+
download(serviceUrl, "#{options['t']}:#{mvn["group"]}:#{mvn["artifactId"]}:#{options['v']}:#{mvn["type"]}", config["destination"])
|
12
13
|
else
|
13
14
|
p "Not suported yet this combination"
|
14
15
|
end
|
@@ -20,6 +21,8 @@ module Commands
|
|
20
21
|
exitCode=system("wget \"#{url}\" -O /tmp/artifact")
|
21
22
|
if exitCode
|
22
23
|
FileUtils.mv '/tmp/artifact', destination['dir']+"/"+destination['filename'], :force => true
|
24
|
+
else
|
25
|
+
raise "Can't download artifact"
|
23
26
|
end
|
24
27
|
end
|
25
28
|
end
|
data/lib/app-runner/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: app-runner
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rafał Libik
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-07-
|
11
|
+
date: 2017-07-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|