travis 1.6.3.travis.377.4 → 1.6.3.travis.379.4
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/s3.rb +4 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
YTk5ZGEwNDg5NDBjYjA2ZDVhN2I2ZWViYjUzMmY4M2YzYWRkNmY5Zg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NzczYTBhOTMzNGQxMmQ2Y2NjMzIyZGIxNDlhMWQwZDViM2FiYzE1Yg==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZWJlNDJjM2M5NDQ3MDZlMDU5M2JjMTAxYjExNDY4MGNkZDk2YTk4NmY3YWM0
|
|
10
|
+
MWRmNjAwMDVlN2M2MzYzMTA2NWU4NzNmM2JjY2YwYTI0ZmVlMjMzZGFjMzA0
|
|
11
|
+
MjkyYzMwODExZGU4ZTdjNjE2YWM4MmJhMDc3YTFlMGExOTlhZWU=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
YzY2Zjk3ZTg3ZmQ1MWUwMjIxMGI3N2QxMGU4MGM3NzFjNWNmOTc3MDIwZGMx
|
|
14
|
+
YTgxMTA4YzA0ZWRiYTAyYzIyMDg0NjE3NzljZmI2OTg0MjkxMzgyYmQwM2M4
|
|
15
|
+
ZjZjMjY5ZjUwMjIzYWRhYWJjYTk5YmMzZDk2OWVhZGZiMDQ5ZmY=
|
data/lib/travis/cli/setup/s3.rb
CHANGED
|
@@ -11,7 +11,10 @@ module Travis
|
|
|
11
11
|
config['access_key_id'] = ask("Access key ID: ").to_s
|
|
12
12
|
config['secret_access_key'] = ask("Secret access key: ") { |q| q.echo = "*" }.to_s
|
|
13
13
|
config['bucket'] = ask("Bucket: ").to_s
|
|
14
|
-
|
|
14
|
+
local_dir = ask("Local project directory to upload (Optional): ").to_s
|
|
15
|
+
config['local-dir'] = local_dir unless local_dir.empty?
|
|
16
|
+
upload_dir = ask("S3 upload direcotry (Optional): ").to_s
|
|
17
|
+
config['upload-dir'] = upload_dir unless upload_dir.empty?
|
|
15
18
|
encrypt(config, 'secret_access_key') if agree("Encrypt secret access key? ") { |q| q.default = 'yes' }
|
|
16
19
|
end
|
|
17
20
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: travis
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.3.travis.
|
|
4
|
+
version: 1.6.3.travis.379.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Konstantin Haase
|
|
@@ -28,7 +28,7 @@ authors:
|
|
|
28
28
|
autorequire:
|
|
29
29
|
bindir: bin
|
|
30
30
|
cert_chain: []
|
|
31
|
-
date: 2013-11-
|
|
31
|
+
date: 2013-11-15 00:00:00.000000000 Z
|
|
32
32
|
dependencies:
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: faraday
|