travis 1.9.2.travis.1288.9 → 1.9.2.travis.1303.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 +4 -4
- data/lib/travis/cli/init.rb +3 -2
- data/lib/travis/tools/assets.rb +2 -2
- data/lib/travis/tools/completion.rb +1 -1
- data/travis.gemspec +0 -4
- metadata +2 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 955afef08fab4ab3a8c73cd561dd3a6841ad0d7fa42c8aa78fe3a144adf06238
|
|
4
|
+
data.tar.gz: 4c200864181f81107e5ddcbac60d5e9d1a784561b4f4556d0a37d652b0b9d8fb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 04c3d8f0b73af1acfb280974ddd241eaf46cbbc92e019bdbad06ab5550e86955745d3c73815304f561a3a20d26b24e61a4b2e1c72500a07b8b7360455aaf7540
|
|
7
|
+
data.tar.gz: '09ceb80b8fb16e8daa055618a404d16827016305a25981fdbd410d8b95b8d58603cabf5c13f625744aca1b6cb368fdeeb9d5746140e222e8aa64568491ddddb1'
|
data/lib/travis/cli/init.rb
CHANGED
|
@@ -34,7 +34,8 @@ module Travis
|
|
|
34
34
|
attr_writer :travis_config
|
|
35
35
|
|
|
36
36
|
def self.languages
|
|
37
|
-
|
|
37
|
+
Dir[File.expand_path('init/*.yml', Travis::Tools::Assets::BASE)]
|
|
38
|
+
.map { |f| File.basename(f, '.yml') }.sort
|
|
38
39
|
end
|
|
39
40
|
|
|
40
41
|
def help
|
|
@@ -63,7 +64,7 @@ module Travis
|
|
|
63
64
|
private
|
|
64
65
|
|
|
65
66
|
def template_name(language)
|
|
66
|
-
asset_path("init/#{language}.yml")
|
|
67
|
+
asset_path("init/#{language}.yml")
|
|
67
68
|
end
|
|
68
69
|
|
|
69
70
|
def template(language)
|
data/lib/travis/tools/assets.rb
CHANGED
|
@@ -8,11 +8,11 @@ module Travis
|
|
|
8
8
|
def asset_path(file)
|
|
9
9
|
Pathname.glob(File.expand_path(file, BASE)).tap do |x|
|
|
10
10
|
raise Travis::Client::AssetNotFound.new(file) if x.empty?
|
|
11
|
-
end
|
|
11
|
+
end.first.to_s
|
|
12
12
|
end
|
|
13
13
|
|
|
14
14
|
def asset(file)
|
|
15
|
-
File.read(asset_path(file)
|
|
15
|
+
File.read(asset_path(file))
|
|
16
16
|
end
|
|
17
17
|
|
|
18
18
|
class << self
|
|
@@ -47,7 +47,7 @@ module Travis
|
|
|
47
47
|
commands = Travis::CLI.commands.sort_by { |c| c.command_name }
|
|
48
48
|
template = Assets.read('travis.sh.erb')
|
|
49
49
|
source = ERB.new(template).result(binding).gsub(/^ +\n/, '')
|
|
50
|
-
File.write(Assets['travis.sh']
|
|
50
|
+
File.write(Assets['travis.sh'], source)
|
|
51
51
|
end
|
|
52
52
|
end
|
|
53
53
|
end
|
data/travis.gemspec
CHANGED
|
@@ -43,7 +43,6 @@ Gem::Specification.new do |s|
|
|
|
43
43
|
"Adam Baxter",
|
|
44
44
|
"Alfie John",
|
|
45
45
|
"Alo\xC3\xAFs Th\xC3\xA9venot",
|
|
46
|
-
"Andreas Tiefenthaler",
|
|
47
46
|
"Basarat Ali Syed",
|
|
48
47
|
"Christian H\xC3\xB6ltje",
|
|
49
48
|
"Dani Hodovic",
|
|
@@ -69,7 +68,6 @@ Gem::Specification.new do |s|
|
|
|
69
68
|
"Nikhil Owalekar",
|
|
70
69
|
"Peter Bengtsson",
|
|
71
70
|
"Peter Drake",
|
|
72
|
-
"Rob Hoelz",
|
|
73
71
|
"Robert Grider",
|
|
74
72
|
"Robert Van Voorhees",
|
|
75
73
|
"Simon Cropp",
|
|
@@ -113,7 +111,6 @@ Gem::Specification.new do |s|
|
|
|
113
111
|
"github@voltagex.org",
|
|
114
112
|
"33c6c91f3bb4a391082e8a29642cafaf@alfie.wtf",
|
|
115
113
|
"aloisthevenot@srxp.com",
|
|
116
|
-
"at@an-ti.eu",
|
|
117
114
|
"basaratali@gmail.com",
|
|
118
115
|
"docwhat@gerf.org",
|
|
119
116
|
"danihodovic@users.noreply.github.com",
|
|
@@ -140,7 +137,6 @@ Gem::Specification.new do |s|
|
|
|
140
137
|
"nowalekar@tigetext.com",
|
|
141
138
|
"peterbe@mozilla.com",
|
|
142
139
|
"peter.drake@acquia.com",
|
|
143
|
-
"rob@hoelz.ro",
|
|
144
140
|
"robert.grider@northwestern.edu",
|
|
145
141
|
"rcvanvo@gmail.com",
|
|
146
142
|
"simon.cropp@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.9.2.travis.
|
|
4
|
+
version: 1.9.2.travis.1303.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hiro Asari
|
|
@@ -35,7 +35,6 @@ authors:
|
|
|
35
35
|
- Adam Baxter
|
|
36
36
|
- Alfie John
|
|
37
37
|
- Aloïs Thévenot
|
|
38
|
-
- Andreas Tiefenthaler
|
|
39
38
|
- Basarat Ali Syed
|
|
40
39
|
- Christian Höltje
|
|
41
40
|
- Dani Hodovic
|
|
@@ -61,7 +60,6 @@ authors:
|
|
|
61
60
|
- Nikhil Owalekar
|
|
62
61
|
- Peter Bengtsson
|
|
63
62
|
- Peter Drake
|
|
64
|
-
- Rob Hoelz
|
|
65
63
|
- Robert Grider
|
|
66
64
|
- Robert Van Voorhees
|
|
67
65
|
- Simon Cropp
|
|
@@ -74,7 +72,7 @@ authors:
|
|
|
74
72
|
autorequire:
|
|
75
73
|
bindir: bin
|
|
76
74
|
cert_chain: []
|
|
77
|
-
date: 2020-09-
|
|
75
|
+
date: 2020-09-22 00:00:00.000000000 Z
|
|
78
76
|
dependencies:
|
|
79
77
|
- !ruby/object:Gem::Dependency
|
|
80
78
|
name: faraday
|
|
@@ -268,7 +266,6 @@ email:
|
|
|
268
266
|
- github@voltagex.org
|
|
269
267
|
- 33c6c91f3bb4a391082e8a29642cafaf@alfie.wtf
|
|
270
268
|
- aloisthevenot@srxp.com
|
|
271
|
-
- at@an-ti.eu
|
|
272
269
|
- basaratali@gmail.com
|
|
273
270
|
- docwhat@gerf.org
|
|
274
271
|
- danihodovic@users.noreply.github.com
|
|
@@ -295,7 +292,6 @@ email:
|
|
|
295
292
|
- nowalekar@tigetext.com
|
|
296
293
|
- peterbe@mozilla.com
|
|
297
294
|
- peter.drake@acquia.com
|
|
298
|
-
- rob@hoelz.ro
|
|
299
295
|
- robert.grider@northwestern.edu
|
|
300
296
|
- rcvanvo@gmail.com
|
|
301
297
|
- simon.cropp@gmail.com
|