travis 1.8.1.travis.696.5 → 1.8.1.travis.697.5
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 +8 -8
- data/lib/travis/cli/setup/cloud_foundry.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
MTZmZjA4ODQzYWI0ODhhNzBkNTE2YWM0YzFjOTk4ZmQ1ZjgwOGYyZQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
MDE4OTRjZGYwZTMxNGViOTliZmJkN2UzYmQxOWY0MTFhMTlhOWY2Mw==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YWUwMGU5ZjE4YTMyOTA1MTUwNzA3NjFkY2I5NjhjYTM5Y2NmMzZlODA2NjI3
|
|
10
|
+
ZWI1ZWQ0MTBlMzQwNjM5Yzk4MjY0YWI2YWQ0MjVkYjgxNGMyMGRlNGQyNzg0
|
|
11
|
+
MGI1MWE4OGY5M2Q0MDJiZTQ0MDBjMzcxOWI3NzJmMmMwYTA3YWM=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
YWRlM2E0ZTg1MThkYzI4MmRiNTZlZjg4ZGZhYjc1ZTNhNTNlMzRmYjk1NjA4
|
|
14
|
+
Yjc1Mjg5NDk2OTU5ZmRjODdlMWFhMzI5ZWFmMDYwMmZhM2NjZWM3NGFhYTY5
|
|
15
|
+
ODAwYmM0ZTBiMjhhZjgxNzI0ZDNlZmM4YWYyNmFjZjdmMGI5MGM=
|
|
@@ -7,7 +7,7 @@ module Travis
|
|
|
7
7
|
description "automatic deployment to Cloud Foundry"
|
|
8
8
|
|
|
9
9
|
def run
|
|
10
|
-
deploy '
|
|
10
|
+
deploy 'cloudfoundry' do |config|
|
|
11
11
|
target_file = File.expand_path('.cf/config.json', Dir.home)
|
|
12
12
|
config['api'] ||= JSON.parse(File.read(target_file))["Target"] if File.exist? target_file
|
|
13
13
|
config['api'] ||= ask("Cloud Foundry api: ").to_s
|
|
@@ -20,4 +20,4 @@ module Travis
|
|
|
20
20
|
end
|
|
21
21
|
end
|
|
22
22
|
end
|
|
23
|
-
end
|
|
23
|
+
end
|