travis 1.8.13.travis.1141.9 → 1.8.13.travis.1148.9

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d2a0ad69ba7fcd32e6f8224838aab0cc5e1e5b0f6898ba988aaa6fffe2bce8b2
4
- data.tar.gz: fbc0f3f6912417da8015778ea1b7cd61bbec4b22e973c6415f49fa3ebe082de3
3
+ metadata.gz: ccf1909737b41aa141e03d944f895284658933e574074fb96fd3a264f40f7750
4
+ data.tar.gz: a812c18b14ff7a4549b8fba5938f30bcb6faf48adab16512c7da91aa14cca972
5
5
  SHA512:
6
- metadata.gz: a9ec33ff93015356d1b5e9534dc37e5638915840d0986908eada34b8575652ecb011a25c60bd04c324bd9ec723cbc81551dbbaeeb36097d9d4820d429e2fbd7a
7
- data.tar.gz: 7566abc87b0cb4131d8c7133be58382340c59a3044a7b2d9f083881427188a1b8d4de52e47f95fe08fe66a5af820a357e0121f2409018ee6b1189e3739956318
6
+ metadata.gz: d4cdc97da2b60d157956964e35d178b2570cd950599743b9efd796914e086b7f95aac81786477785fad225eeac4d99ca855754624d9b81c3d13065070cc05454
7
+ data.tar.gz: 7e1e3184c12d007c45047877efe8fa1772fcef61bac28a6de538ace20a28f5362c6c06b85fac009bbf2052eb5497e7c0db0aa1888c70065a18dbb4633f5998ec
@@ -18,7 +18,7 @@ module Travis
18
18
  def setup
19
19
  setup_enterprise
20
20
  error "Can't figure out GitHub repo name. Ensure you're in the repo directory, or specify the repo name via the -r option (e.g. travis <command> -r <owner>/<repo>)" unless self.slug ||= find_slug
21
- error "GitHub repo name is invalid, it should be on the form 'owner/repo'" unless self.slug.include?("/")
21
+ error "GitHub repo name is invalid, it should be of the form 'owner/repo'" unless self.slug.include?("/")
22
22
  self.api_endpoint = detect_api_endpoint
23
23
  super
24
24
  repository.load # makes sure we actually have access to the repo
@@ -68,16 +68,16 @@ module Travis
68
68
  git_info = `git ls-remote --get-url #{git_remote} 2>#{IO::NULL}`.chomp
69
69
 
70
70
  if parse_remote(git_info) =~ GIT_REGEX
71
- detectected_slug = $1
71
+ detected_slug = $1
72
72
  if interactive?
73
- if agree("Detected repository as #{color(detectected_slug, :info)}, is this correct? ") { |q| q.default = 'yes' }
74
- detectected_slug
73
+ if agree("Detected repository as #{color(detected_slug, :info)}, is this correct? ") { |q| q.default = 'yes' }
74
+ detected_slug
75
75
  else
76
- ask("Repository slug (owner/name): ") { |q| q.default = detectected_slug }
76
+ ask("Repository slug (owner/name): ") { |q| q.default = detected_slug }
77
77
  end
78
78
  else
79
- info "detected repository as #{color(detectected_slug, :bold)}"
80
- detectected_slug
79
+ info "detected repository as #{color(detected_slug, :bold)}"
80
+ detected_slug
81
81
  end
82
82
  end
83
83
  end
data/travis.gemspec CHANGED
@@ -25,24 +25,28 @@ Gem::Specification.new do |s|
25
25
  "Ren\xC3\xA9e Hendricksen",
26
26
  "carlad",
27
27
  "Mar\xC3\xADa de Ant\xC3\xB3n",
28
+ "Matt Toothman",
28
29
  "mariadeanton",
29
30
  "Alpha",
30
31
  "Beau Bouchard",
31
32
  "Corinna Wiesner",
33
+ "David Rodr\xC3\xADguez",
32
34
  "Eugene",
33
35
  "Eugene Shubin",
34
36
  "Igor Wiedler",
35
37
  "Joep van Delft",
36
38
  "Stefan Nordhausen",
37
39
  "Tobias Bieniek",
38
- "David Rodr\xC3\xADguez",
40
+ "Basarat Ali Syed",
39
41
  "Dominic Jodoin",
40
42
  "Harald Nordgren",
41
43
  "HaraldNordgren",
42
44
  "Igor",
43
45
  "Jacob Atzen",
44
46
  "James Nylen",
47
+ "Joe Rafaniello",
45
48
  "Jonas Chromik",
49
+ "Matt",
46
50
  "Matteo Sumberaz",
47
51
  "Michael S. Fischer",
48
52
  "Nero Leung",
@@ -66,27 +70,31 @@ Gem::Specification.new do |s|
66
70
  "renee@travis-ci.org",
67
71
  "aakritigupta@users.noreply.github.com",
68
72
  "mariadeanton@gmail.com",
73
+ "matt.toothman@aver.io",
69
74
  "carlad@users.noreply.github.com",
70
75
  "mariadeanton@gmail.com",
71
76
  "aakriti@travis-ci.org",
72
77
  "AlphaWong@users.noreply.github.com",
73
78
  "127320+BeauBouchard@users.noreply.github.com",
74
79
  "wiesner@avarteq.de",
80
+ "deivid.rodriguez@gmail.com",
75
81
  "eugene@travis-ci.org",
76
82
  "51701929+eugene-travis@users.noreply.github.com",
77
83
  "igor@travis-ci.org",
78
84
  "stefan.nordhausen@immobilienscout24.de",
79
85
  "tobias.bieniek@gmail.com",
80
- "deivid.rodriguez@gmail.com",
86
+ "basaratali@gmail.com",
81
87
  "dominic@travis-ci.com",
82
88
  "haraldnordgren@gmail.com",
83
89
  "haraldnordgren@gmail.com",
84
90
  "igorwwwwwwwwwwwwwwwwwwww@users.noreply.github.com",
85
91
  "jatzen@gmail.com",
86
92
  "jnylen@gmail.com",
93
+ "jrafanie@users.noreply.github.com",
87
94
  "joep@travis-ci.org",
88
95
  "joepvd@users.noreply.github.com",
89
96
  "Jonas.Chromik@student.hpi.uni-potsdam.de",
97
+ "mtoothman@users.noreply.github.com",
90
98
  "gnappoms@gmail.com",
91
99
  "mfischer@zendesk.com",
92
100
  "neroleung@gmail.com",
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.8.13.travis.1141.9
4
+ version: 1.8.13.travis.1148.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hiro Asari
@@ -18,24 +18,28 @@ authors:
18
18
  - Renée Hendricksen
19
19
  - carlad
20
20
  - María de Antón
21
+ - Matt Toothman
21
22
  - mariadeanton
22
23
  - Alpha
23
24
  - Beau Bouchard
24
25
  - Corinna Wiesner
26
+ - David Rodríguez
25
27
  - Eugene
26
28
  - Eugene Shubin
27
29
  - Igor Wiedler
28
30
  - Joep van Delft
29
31
  - Stefan Nordhausen
30
32
  - Tobias Bieniek
31
- - David Rodríguez
33
+ - Basarat Ali Syed
32
34
  - Dominic Jodoin
33
35
  - Harald Nordgren
34
36
  - HaraldNordgren
35
37
  - Igor
36
38
  - Jacob Atzen
37
39
  - James Nylen
40
+ - Joe Rafaniello
38
41
  - Jonas Chromik
42
+ - Matt
39
43
  - Matteo Sumberaz
40
44
  - Michael S. Fischer
41
45
  - Nero Leung
@@ -242,27 +246,31 @@ email:
242
246
  - renee@travis-ci.org
243
247
  - aakritigupta@users.noreply.github.com
244
248
  - mariadeanton@gmail.com
249
+ - matt.toothman@aver.io
245
250
  - carlad@users.noreply.github.com
246
251
  - mariadeanton@gmail.com
247
252
  - aakriti@travis-ci.org
248
253
  - AlphaWong@users.noreply.github.com
249
254
  - 127320+BeauBouchard@users.noreply.github.com
250
255
  - wiesner@avarteq.de
256
+ - deivid.rodriguez@gmail.com
251
257
  - eugene@travis-ci.org
252
258
  - 51701929+eugene-travis@users.noreply.github.com
253
259
  - igor@travis-ci.org
254
260
  - stefan.nordhausen@immobilienscout24.de
255
261
  - tobias.bieniek@gmail.com
256
- - deivid.rodriguez@gmail.com
262
+ - basaratali@gmail.com
257
263
  - dominic@travis-ci.com
258
264
  - haraldnordgren@gmail.com
259
265
  - haraldnordgren@gmail.com
260
266
  - igorwwwwwwwwwwwwwwwwwwww@users.noreply.github.com
261
267
  - jatzen@gmail.com
262
268
  - jnylen@gmail.com
269
+ - jrafanie@users.noreply.github.com
263
270
  - joep@travis-ci.org
264
271
  - joepvd@users.noreply.github.com
265
272
  - Jonas.Chromik@student.hpi.uni-potsdam.de
273
+ - mtoothman@users.noreply.github.com
266
274
  - gnappoms@gmail.com
267
275
  - mfischer@zendesk.com
268
276
  - neroleung@gmail.com