travis 1.9.2.travis.1304.9 → 1.10.0.pre.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +54 -17
- data/lib/travis/cli/init.rb +2 -3
- data/lib/travis/cli/login.rb +1 -1
- data/lib/travis/tools/assets.rb +2 -2
- data/lib/travis/tools/completion.rb +1 -1
- data/lib/travis/tools/system.rb +1 -1
- data/lib/travis/version.rb +1 -1
- data/travis.gemspec +76 -9
- metadata +78 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 52acb807fd54ad77efdb9f61b343c3d597effe6eff5c880daf9442f99d4d46d9
|
4
|
+
data.tar.gz: 1c0945ff27d47d7fe680d3411a3ccf0e2c7d829f66a40691f5fd4aa682eb0ce7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8b44fc9c464cb7ba06757527bf0000daf90399e118ca8cf89dbc073d1df48200a6bdce3c72a42620e270978be5da2b7e5c6a3c86dea10be3c2d4d54b811bd8f1
|
7
|
+
data.tar.gz: 8c4eff418c5407b8a59238b1f509b8fb47eae9e79f9a0005c9669fdd49efc40e9f9a79cbb9873e53a76d344a2608f3224ddb238892f8a2ba2add5695f36b4eb7
|
data/README.md
CHANGED
@@ -2018,7 +2018,7 @@ If you do not have write access to the system gem directory, you'll need to perf
|
|
2018
2018
|
Now make sure everything is working:
|
2019
2019
|
|
2020
2020
|
$ travis version
|
2021
|
-
1.
|
2021
|
+
1.10.0.pre.rc1
|
2022
2022
|
|
2023
2023
|
See also [Note on Ubuntu](#ubuntu) below.
|
2024
2024
|
|
@@ -2041,12 +2041,11 @@ bundle exec bin/travis a-command # run your command
|
|
2041
2041
|
|
2042
2042
|
### Updating your Ruby
|
2043
2043
|
|
2044
|
-
If you have an outdated Ruby version,
|
2045
|
-
you should use your package system or a Ruby Installer to install a recent Ruby.
|
2044
|
+
If you have an outdated Ruby version, you should use your package system or a Ruby Installer to install a recent Ruby.
|
2046
2045
|
|
2047
2046
|
#### Mac OS X via Homebrew
|
2048
2047
|
|
2049
|
-
You can use [Homebrew](http://mxcl.github.io/homebrew/) to install a recent version:
|
2048
|
+
Mac OSX prior to 10.9 ships with a very dated Ruby version. You can use [Homebrew](http://mxcl.github.io/homebrew/) to install a recent version:
|
2050
2049
|
|
2051
2050
|
$ brew install ruby
|
2052
2051
|
$ gem update --system
|
@@ -2057,14 +2056,28 @@ On Windows, we recommend using the [RubyInstaller](http://rubyinstaller.org/), w
|
|
2057
2056
|
|
2058
2057
|
#### Other Unix systems
|
2059
2058
|
|
2060
|
-
On other Unix systems, like Linux, use your package system to install Ruby.
|
2059
|
+
On other Unix systems, like Linux, use your package system to install Ruby. Please inquire before hand which package you might actually want to install, as for some distributions `ruby` might actually still be 1.8.7 or older.
|
2061
2060
|
|
2062
|
-
Debian
|
2061
|
+
Debian:
|
2063
2062
|
|
2063
|
+
$ sudo apt-get install ruby1.9.3 ruby1.9.3-dev ruby-switch
|
2064
|
+
$ sudo ruby-switch --set ruby1.9.3
|
2065
|
+
|
2066
|
+
Ubuntu:
|
2067
|
+
|
2068
|
+
$ sudo apt-get install python-software-properties
|
2069
|
+
$ sudo apt-add-repository ppa:brightbox/ruby-ng
|
2064
2070
|
$ sudo apt-get update
|
2065
|
-
$ sudo apt-get install ruby
|
2071
|
+
$ sudo apt-get install ruby2.1 ruby2.1-dev ruby-switch
|
2072
|
+
$ sudo ruby-switch --set ruby2.1
|
2073
|
+
|
2074
|
+
Fedora:
|
2066
2075
|
|
2067
|
-
|
2076
|
+
$ sudo yum install ruby ruby-devel
|
2077
|
+
|
2078
|
+
Arch Linux:
|
2079
|
+
|
2080
|
+
$ sudo pacman -S ruby
|
2068
2081
|
|
2069
2082
|
#### Ruby versioning tools
|
2070
2083
|
|
@@ -2074,21 +2087,45 @@ You can of course always compile Ruby from source, though then you are left with
|
|
2074
2087
|
|
2075
2088
|
### Troubleshooting
|
2076
2089
|
|
2090
|
+
#### Ubuntu
|
2091
|
+
|
2092
|
+
On certain versions of Ubuntu (e.g., 13.10), you need to install the corresponding `-dev` package
|
2093
|
+
in order to build the C extension on which `travis` gem depends.
|
2094
|
+
|
2095
|
+
For the stock Ubuntu 13.10, run:
|
2096
|
+
|
2097
|
+
$ sudo apt-get install ruby1.9.1-dev
|
2098
|
+
|
2099
|
+
If you updated to Ruby 2.1 as shown above:
|
2100
|
+
|
2101
|
+
$ sudo apt-get install ruby2.1-dev
|
2102
|
+
|
2103
|
+
For newer versions of Ubuntu (16.04 and above), it should be enough to run:
|
2104
|
+
|
2105
|
+
$ sudo apt-get install ruby-dev
|
2106
|
+
|
2107
|
+
If you have error about `mkmf.rb can't find header files for ruby at /usr/lib/ruby/include/ruby.h`
|
2108
|
+
```console
|
2109
|
+
# try to run following cmd
|
2110
|
+
sudo apt-get install ruby-dev libffi-dev make gcc -y
|
2111
|
+
sudo gem install travis
|
2112
|
+
```
|
2113
|
+
#### Mac OS X
|
2114
|
+
|
2115
|
+
If you start with a clean Mac OS X, you will have to install the XCode Command Line Tools, which are necessary for installing native extensions. You can do so via `xcode-select`:
|
2116
|
+
|
2117
|
+
$ xcode-select --install
|
2118
|
+
|
2119
|
+
Mac OS X 10.9.2 shipped with a slightly broken Ruby version. If you want to install the gem via the system Ruby and you get an error, you might have to run the following instead:
|
2120
|
+
|
2121
|
+
$ ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future gem install travis
|
2122
|
+
|
2077
2123
|
#### Upgrading from travis-cli
|
2078
2124
|
|
2079
2125
|
If you have the old `travis-cli` gem installed, you should `gem uninstall travis-cli`, just to be sure, as it ships with an executable that is also named `travis`.
|
2080
2126
|
|
2081
2127
|
## Version History
|
2082
2128
|
|
2083
|
-
### 1.10.0 (September 22, 2020)
|
2084
|
-
|
2085
|
-
* Requires Ruby 2.3.0 or later (2.6.0 or later is recommended)
|
2086
|
-
* Display a meaningful message when Travis API is unavailable. https://github.com/travis-ci/travis.rb/issues/753
|
2087
|
-
* Eschew `which` to find a command on the system. https://github.com/travis-ci/travis.rb/pull/765
|
2088
|
-
* Fix `--list-github-token` flag. https://github.com/travis-ci/travis.rb/pull/766
|
2089
|
-
* FFI is no longer required. https://github.com/travis-ci/travis.rb/pull/758
|
2090
|
-
* Typhoeus is no longer required, but remains supported (used if installed). https://github.com/travis-ci/travis.rb/pull/756
|
2091
|
-
|
2092
2129
|
### 1.9.1 (May 19, 2020)
|
2093
2130
|
|
2094
2131
|
* Fix `--no-interactive` flag in `encrypt` and `encryt-file` commands https://github.com/travis-ci/travis.rb/pull/738
|
data/lib/travis/cli/init.rb
CHANGED
@@ -34,8 +34,7 @@ module Travis
|
|
34
34
|
attr_writer :travis_config
|
35
35
|
|
36
36
|
def self.languages
|
37
|
-
|
38
|
-
.map { |f| File.basename(f, '.yml') }.sort
|
37
|
+
asset_path('init/*.yml').map { |f| File.basename(f, '.yml') }.sort
|
39
38
|
end
|
40
39
|
|
41
40
|
def help
|
@@ -64,7 +63,7 @@ module Travis
|
|
64
63
|
private
|
65
64
|
|
66
65
|
def template_name(language)
|
67
|
-
asset_path("init/#{language}.yml")
|
66
|
+
asset_path("init/#{language}.yml").first
|
68
67
|
end
|
69
68
|
|
70
69
|
def template(language)
|
data/lib/travis/cli/login.rb
CHANGED
@@ -62,7 +62,7 @@ module Travis
|
|
62
62
|
g.auto_password = auto_password
|
63
63
|
g.github_login = user_login
|
64
64
|
g.check_token = !skip_token_check?
|
65
|
-
g.drop_token =
|
65
|
+
g.drop_token = true
|
66
66
|
g.ask_login = proc { ask("Username: ") }
|
67
67
|
g.ask_password = proc { |user| ask("Password for #{user}: ") { |q| q.echo = "*" } }
|
68
68
|
g.ask_otp = proc { |user| ask("Two-factor authentication code for #{user}: ") }
|
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
|
12
12
|
end
|
13
13
|
|
14
14
|
def asset(file)
|
15
|
-
File.read(asset_path(file))
|
15
|
+
File.read(asset_path(file).first)
|
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'], source)
|
50
|
+
File.write(Assets['travis.sh'].first, source)
|
51
51
|
end
|
52
52
|
end
|
53
53
|
end
|
data/lib/travis/tools/system.rb
CHANGED
@@ -76,7 +76,7 @@ module Travis
|
|
76
76
|
def has?(command)
|
77
77
|
return false unless unix?
|
78
78
|
@has ||= {}
|
79
|
-
@has.fetch(command) { @has[command] = system "
|
79
|
+
@has.fetch(command) { @has[command] = system "which #{command} 2>/dev/null >/dev/null" }
|
80
80
|
end
|
81
81
|
|
82
82
|
def running?(app)
|
data/lib/travis/version.rb
CHANGED
data/travis.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
Gem::Specification.new do |s|
|
3
3
|
# general info
|
4
4
|
s.name = "travis"
|
5
|
-
s.version = "1.
|
5
|
+
s.version = "1.10.0.pre.rc1"
|
6
6
|
s.required_ruby_version = ">= 2.3.0"
|
7
7
|
s.description = "CLI and Ruby client library for Travis CI"
|
8
8
|
s.homepage = "https://github.com/travis-ci/travis.rb"
|
@@ -12,24 +12,34 @@ Gem::Specification.new do |s|
|
|
12
12
|
|
13
13
|
# generated from git shortlog -sn
|
14
14
|
s.authors = [
|
15
|
-
"Hiro Asari",
|
16
15
|
"Konstantin Haase",
|
16
|
+
"Hiro Asari",
|
17
|
+
"Henrik Hodne",
|
18
|
+
"joshua-anderson",
|
19
|
+
"Aaron Hill",
|
17
20
|
"Piotr Milcarz",
|
18
21
|
"Buck Doyle",
|
22
|
+
"Peter Souter",
|
19
23
|
"Christopher Grim",
|
20
24
|
"Joe Corcoran",
|
25
|
+
"Peter van Dijk",
|
21
26
|
"Sven Fuchs",
|
22
27
|
"Aakriti Gupta",
|
23
28
|
"Josh Kalderimis",
|
24
|
-
"Ke Zhu",
|
25
29
|
"Piotr Sarnacki",
|
30
|
+
"Ke Zhu",
|
31
|
+
"Max Barnash",
|
26
32
|
"Ren\xC3\xA9e Hendricksen",
|
27
33
|
"carlad",
|
34
|
+
"Carlos Palhares",
|
35
|
+
"Dan Buch",
|
28
36
|
"Mar\xC3\xADa de Ant\xC3\xB3n",
|
37
|
+
"Mathias Meyer",
|
29
38
|
"Matt Toothman",
|
30
39
|
"mariadeanton",
|
31
40
|
"techgaun",
|
32
41
|
"Alpha",
|
42
|
+
"Andreas Tiefenthaler",
|
33
43
|
"Beau Bouchard",
|
34
44
|
"Corinna Wiesner",
|
35
45
|
"David Rodr\xC3\xADguez",
|
@@ -39,66 +49,100 @@ Gem::Specification.new do |s|
|
|
39
49
|
"Ivan Pozdeev",
|
40
50
|
"Joep van Delft",
|
41
51
|
"Stefan Nordhausen",
|
52
|
+
"Thais Camilo and Konstantin Haase",
|
42
53
|
"Tobias Bieniek",
|
43
54
|
"Adam Baxter",
|
55
|
+
"Adam Lavin",
|
56
|
+
"Adrien Brault",
|
44
57
|
"Alfie John",
|
45
58
|
"Alo\xC3\xAFs Th\xC3\xA9venot",
|
46
59
|
"Basarat Ali Syed",
|
60
|
+
"Benjamin Manns",
|
47
61
|
"Christian H\xC3\xB6ltje",
|
48
62
|
"Dani Hodovic",
|
63
|
+
"Daniel Chatfield",
|
49
64
|
"Dominic Jodoin",
|
50
|
-
"
|
65
|
+
"Eric Herot",
|
51
66
|
"Eugene K",
|
67
|
+
"George Millo",
|
52
68
|
"Gunter Grodotzki",
|
53
69
|
"Harald Nordgren",
|
54
70
|
"HaraldNordgren",
|
55
71
|
"Igor",
|
56
72
|
"Iulian Onofrei",
|
57
73
|
"Jacob Atzen",
|
74
|
+
"Jacob Burkhart",
|
58
75
|
"James Nylen",
|
59
76
|
"Joe Rafaniello",
|
60
77
|
"Jon-Erik Schneiderhan",
|
61
78
|
"Jonas Chromik",
|
79
|
+
"Jonne Ha\xC3\x9F",
|
80
|
+
"Julia S.Simon",
|
81
|
+
"Justin Lambert",
|
82
|
+
"Laurent Petit",
|
83
|
+
"Maarten van Vliet",
|
62
84
|
"Marco Craveiro",
|
85
|
+
"Mario Visic",
|
63
86
|
"Matt",
|
64
87
|
"Matteo Sumberaz",
|
65
88
|
"Matthias Bussonnier",
|
89
|
+
"Michael Mior",
|
66
90
|
"Michael S. Fischer",
|
91
|
+
"Miro Hron\xC4\x8Dok",
|
92
|
+
"Neamar",
|
67
93
|
"Nero Leung",
|
94
|
+
"Nicolas Bessi (nbessi)",
|
68
95
|
"Nikhil Owalekar",
|
69
96
|
"Peter Bengtsson",
|
70
97
|
"Peter Drake",
|
98
|
+
"Rapha\xC3\xABl Pinson",
|
99
|
+
"Rob Hoelz",
|
71
100
|
"Robert Grider",
|
72
101
|
"Robert Van Voorhees",
|
73
102
|
"Simon Cropp",
|
74
|
-
"Tahsin Hasan",
|
75
103
|
"Titus",
|
76
104
|
"Titus Wormer",
|
105
|
+
"Tobias Wilken",
|
106
|
+
"Zachary Gershman",
|
107
|
+
"Zachary Scott",
|
77
108
|
"designerror",
|
78
109
|
"ia",
|
110
|
+
"jeffdh",
|
111
|
+
"john muhl",
|
79
112
|
"slewt"
|
80
113
|
]
|
81
114
|
|
82
115
|
# generated from git shortlog -sne
|
83
116
|
s.email = [
|
84
|
-
"asari.ruby@gmail.com",
|
85
117
|
"konstantin.mailinglists@googlemail.com",
|
118
|
+
"asari.ruby@gmail.com",
|
119
|
+
"j@zatigo.com",
|
120
|
+
"aa1ronham@gmail.com",
|
86
121
|
"piotrm@travis-ci.org",
|
122
|
+
"me@henrikhodne.com",
|
87
123
|
"b@chromatin.ca",
|
124
|
+
"henrik@hodne.io",
|
125
|
+
"p.morsou@gmail.com",
|
88
126
|
"chrisg@luminal.io",
|
89
127
|
"joe@corcoran.io",
|
128
|
+
"peter.van.dijk@netherlabs.nl",
|
90
129
|
"me@svenfuchs.com",
|
91
130
|
"josh.kalderimis@gmail.com",
|
92
|
-
"kzhu@us.ibm.com",
|
93
131
|
"drogus@gmail.com",
|
132
|
+
"kzhu@us.ibm.com",
|
133
|
+
"i.am@anhero.ru",
|
94
134
|
"renee@travis-ci.org",
|
95
135
|
"aakritigupta@users.noreply.github.com",
|
136
|
+
"me@xjunior.me",
|
137
|
+
"dan@meatballhat.com",
|
96
138
|
"mariadeanton@gmail.com",
|
139
|
+
"meyer@paperplanes.de",
|
97
140
|
"matt.toothman@aver.io",
|
98
141
|
"carlad@users.noreply.github.com",
|
99
142
|
"coolsamar207@gmail.com",
|
100
143
|
"aakriti@travis-ci.org",
|
101
144
|
"AlphaWong@users.noreply.github.com",
|
145
|
+
"at@an-ti.eu",
|
102
146
|
"127320+BeauBouchard@users.noreply.github.com",
|
103
147
|
"wiesner@avarteq.de",
|
104
148
|
"deivid.rodriguez@gmail.com",
|
@@ -107,44 +151,67 @@ Gem::Specification.new do |s|
|
|
107
151
|
"igor@travis-ci.org",
|
108
152
|
"vano@mail.mipt.ru",
|
109
153
|
"stefan.nordhausen@immobilienscout24.de",
|
154
|
+
"dev+narwen+rkh@rkh.im",
|
110
155
|
"tobias.bieniek@gmail.com",
|
111
156
|
"github@voltagex.org",
|
157
|
+
"adam@lavoaster.co.uk",
|
158
|
+
"adrien.brault@gmail.com",
|
112
159
|
"33c6c91f3bb4a391082e8a29642cafaf@alfie.wtf",
|
113
160
|
"aloisthevenot@srxp.com",
|
114
161
|
"basaratali@gmail.com",
|
162
|
+
"benmanns@gmail.com",
|
115
163
|
"docwhat@gerf.org",
|
116
164
|
"danihodovic@users.noreply.github.com",
|
165
|
+
"chatfielddaniel@gmail.com",
|
117
166
|
"dominic@travis-ci.com",
|
118
|
-
"
|
167
|
+
"eric.github@herot.com",
|
119
168
|
"34233075+eugene-kulak@users.noreply.github.com",
|
169
|
+
"georgejulianmillo@gmail.com",
|
120
170
|
"gunter@grodotzki.co.za",
|
121
171
|
"haraldnordgren@gmail.com",
|
122
172
|
"igorwwwwwwwwwwwwwwwwwwww@users.noreply.github.com",
|
123
173
|
"6d0847b9@opayq.com",
|
124
174
|
"jatzen@gmail.com",
|
175
|
+
"jburkhart@engineyard.com",
|
125
176
|
"jnylen@gmail.com",
|
126
177
|
"jrafanie@users.noreply.github.com",
|
127
178
|
"joep@travis-ci.org",
|
128
179
|
"joepvd@users.noreply.github.com",
|
129
180
|
"jon-erik.schneiderhan@meyouhealth.com",
|
130
181
|
"Jonas.Chromik@student.hpi.uni-potsdam.de",
|
182
|
+
"me@jhass.eu",
|
183
|
+
"julia.simon@biicode.com",
|
184
|
+
"jlambert@eml.cc",
|
185
|
+
"laurent.petit@gmail.com",
|
186
|
+
"maartenvanvliet@gmail.com",
|
131
187
|
"marco.craveiro@gmail.com",
|
188
|
+
"mario@mariovisic.com",
|
132
189
|
"mtoothman@users.noreply.github.com",
|
133
190
|
"gnappoms@gmail.com",
|
134
191
|
"bussonniermatthias@gmail.com",
|
192
|
+
"mmior@uwaterloo.ca",
|
135
193
|
"mfischer@zendesk.com",
|
194
|
+
"miro@hroncok.cz",
|
195
|
+
"neamar@neamar.fr",
|
136
196
|
"neroleung@gmail.com",
|
197
|
+
"nbessi@users.noreply.github.com",
|
137
198
|
"nowalekar@tigetext.com",
|
138
199
|
"peterbe@mozilla.com",
|
139
200
|
"peter.drake@acquia.com",
|
201
|
+
"raphael.pinson@camptocamp.com",
|
202
|
+
"rob@hoelz.ro",
|
140
203
|
"robert.grider@northwestern.edu",
|
141
204
|
"rcvanvo@gmail.com",
|
142
205
|
"simon.cropp@gmail.com",
|
143
|
-
"51903216+Tahsin-travis-ci@users.noreply.github.com",
|
144
206
|
"tituswormer@gmail.com",
|
207
|
+
"tw@cloudcontrol.de",
|
208
|
+
"pair+zg@pivotallabs.com",
|
209
|
+
"e@zzak.io",
|
145
210
|
"carla@travis-ci.org",
|
146
211
|
"designerror@yandex.ru",
|
147
212
|
"isaac.ardis@gmail.com",
|
213
|
+
"jeffdh@gmail.com",
|
214
|
+
"git@johnmuhl.com",
|
148
215
|
"leland@lcweathers.net"
|
149
216
|
]
|
150
217
|
|
metadata
CHANGED
@@ -1,27 +1,37 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: travis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.10.0.pre.rc1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
- Hiro Asari
|
8
7
|
- Konstantin Haase
|
8
|
+
- Hiro Asari
|
9
|
+
- Henrik Hodne
|
10
|
+
- joshua-anderson
|
11
|
+
- Aaron Hill
|
9
12
|
- Piotr Milcarz
|
10
13
|
- Buck Doyle
|
14
|
+
- Peter Souter
|
11
15
|
- Christopher Grim
|
12
16
|
- Joe Corcoran
|
17
|
+
- Peter van Dijk
|
13
18
|
- Sven Fuchs
|
14
19
|
- Aakriti Gupta
|
15
20
|
- Josh Kalderimis
|
16
|
-
- Ke Zhu
|
17
21
|
- Piotr Sarnacki
|
22
|
+
- Ke Zhu
|
23
|
+
- Max Barnash
|
18
24
|
- Renée Hendricksen
|
19
25
|
- carlad
|
26
|
+
- Carlos Palhares
|
27
|
+
- Dan Buch
|
20
28
|
- María de Antón
|
29
|
+
- Mathias Meyer
|
21
30
|
- Matt Toothman
|
22
31
|
- mariadeanton
|
23
32
|
- techgaun
|
24
33
|
- Alpha
|
34
|
+
- Andreas Tiefenthaler
|
25
35
|
- Beau Bouchard
|
26
36
|
- Corinna Wiesner
|
27
37
|
- David Rodríguez
|
@@ -31,48 +41,71 @@ authors:
|
|
31
41
|
- Ivan Pozdeev
|
32
42
|
- Joep van Delft
|
33
43
|
- Stefan Nordhausen
|
44
|
+
- Thais Camilo and Konstantin Haase
|
34
45
|
- Tobias Bieniek
|
35
46
|
- Adam Baxter
|
47
|
+
- Adam Lavin
|
48
|
+
- Adrien Brault
|
36
49
|
- Alfie John
|
37
50
|
- Aloïs Thévenot
|
38
51
|
- Basarat Ali Syed
|
52
|
+
- Benjamin Manns
|
39
53
|
- Christian Höltje
|
40
54
|
- Dani Hodovic
|
55
|
+
- Daniel Chatfield
|
41
56
|
- Dominic Jodoin
|
42
|
-
-
|
57
|
+
- Eric Herot
|
43
58
|
- Eugene K
|
59
|
+
- George Millo
|
44
60
|
- Gunter Grodotzki
|
45
61
|
- Harald Nordgren
|
46
62
|
- HaraldNordgren
|
47
63
|
- Igor
|
48
64
|
- Iulian Onofrei
|
49
65
|
- Jacob Atzen
|
66
|
+
- Jacob Burkhart
|
50
67
|
- James Nylen
|
51
68
|
- Joe Rafaniello
|
52
69
|
- Jon-Erik Schneiderhan
|
53
70
|
- Jonas Chromik
|
71
|
+
- Jonne Haß
|
72
|
+
- Julia S.Simon
|
73
|
+
- Justin Lambert
|
74
|
+
- Laurent Petit
|
75
|
+
- Maarten van Vliet
|
54
76
|
- Marco Craveiro
|
77
|
+
- Mario Visic
|
55
78
|
- Matt
|
56
79
|
- Matteo Sumberaz
|
57
80
|
- Matthias Bussonnier
|
81
|
+
- Michael Mior
|
58
82
|
- Michael S. Fischer
|
83
|
+
- Miro Hrončok
|
84
|
+
- Neamar
|
59
85
|
- Nero Leung
|
86
|
+
- Nicolas Bessi (nbessi)
|
60
87
|
- Nikhil Owalekar
|
61
88
|
- Peter Bengtsson
|
62
89
|
- Peter Drake
|
90
|
+
- Raphaël Pinson
|
91
|
+
- Rob Hoelz
|
63
92
|
- Robert Grider
|
64
93
|
- Robert Van Voorhees
|
65
94
|
- Simon Cropp
|
66
|
-
- Tahsin Hasan
|
67
95
|
- Titus
|
68
96
|
- Titus Wormer
|
97
|
+
- Tobias Wilken
|
98
|
+
- Zachary Gershman
|
99
|
+
- Zachary Scott
|
69
100
|
- designerror
|
70
101
|
- ia
|
102
|
+
- jeffdh
|
103
|
+
- john muhl
|
71
104
|
- slewt
|
72
105
|
autorequire:
|
73
106
|
bindir: bin
|
74
107
|
cert_chain: []
|
75
|
-
date: 2020-
|
108
|
+
date: 2020-08-07 00:00:00.000000000 Z
|
76
109
|
dependencies:
|
77
110
|
- !ruby/object:Gem::Dependency
|
78
111
|
name: faraday
|
@@ -236,24 +269,35 @@ dependencies:
|
|
236
269
|
version: '0.6'
|
237
270
|
description: CLI and Ruby client library for Travis CI
|
238
271
|
email:
|
239
|
-
- asari.ruby@gmail.com
|
240
272
|
- konstantin.mailinglists@googlemail.com
|
273
|
+
- asari.ruby@gmail.com
|
274
|
+
- j@zatigo.com
|
275
|
+
- aa1ronham@gmail.com
|
241
276
|
- piotrm@travis-ci.org
|
277
|
+
- me@henrikhodne.com
|
242
278
|
- b@chromatin.ca
|
279
|
+
- henrik@hodne.io
|
280
|
+
- p.morsou@gmail.com
|
243
281
|
- chrisg@luminal.io
|
244
282
|
- joe@corcoran.io
|
283
|
+
- peter.van.dijk@netherlabs.nl
|
245
284
|
- me@svenfuchs.com
|
246
285
|
- josh.kalderimis@gmail.com
|
247
|
-
- kzhu@us.ibm.com
|
248
286
|
- drogus@gmail.com
|
287
|
+
- kzhu@us.ibm.com
|
288
|
+
- i.am@anhero.ru
|
249
289
|
- renee@travis-ci.org
|
250
290
|
- aakritigupta@users.noreply.github.com
|
291
|
+
- me@xjunior.me
|
292
|
+
- dan@meatballhat.com
|
251
293
|
- mariadeanton@gmail.com
|
294
|
+
- meyer@paperplanes.de
|
252
295
|
- matt.toothman@aver.io
|
253
296
|
- carlad@users.noreply.github.com
|
254
297
|
- coolsamar207@gmail.com
|
255
298
|
- aakriti@travis-ci.org
|
256
299
|
- AlphaWong@users.noreply.github.com
|
300
|
+
- at@an-ti.eu
|
257
301
|
- 127320+BeauBouchard@users.noreply.github.com
|
258
302
|
- wiesner@avarteq.de
|
259
303
|
- deivid.rodriguez@gmail.com
|
@@ -262,44 +306,67 @@ email:
|
|
262
306
|
- igor@travis-ci.org
|
263
307
|
- vano@mail.mipt.ru
|
264
308
|
- stefan.nordhausen@immobilienscout24.de
|
309
|
+
- dev+narwen+rkh@rkh.im
|
265
310
|
- tobias.bieniek@gmail.com
|
266
311
|
- github@voltagex.org
|
312
|
+
- adam@lavoaster.co.uk
|
313
|
+
- adrien.brault@gmail.com
|
267
314
|
- 33c6c91f3bb4a391082e8a29642cafaf@alfie.wtf
|
268
315
|
- aloisthevenot@srxp.com
|
269
316
|
- basaratali@gmail.com
|
317
|
+
- benmanns@gmail.com
|
270
318
|
- docwhat@gerf.org
|
271
319
|
- danihodovic@users.noreply.github.com
|
320
|
+
- chatfielddaniel@gmail.com
|
272
321
|
- dominic@travis-ci.com
|
273
|
-
-
|
322
|
+
- eric.github@herot.com
|
274
323
|
- 34233075+eugene-kulak@users.noreply.github.com
|
324
|
+
- georgejulianmillo@gmail.com
|
275
325
|
- gunter@grodotzki.co.za
|
276
326
|
- haraldnordgren@gmail.com
|
277
327
|
- igorwwwwwwwwwwwwwwwwwwww@users.noreply.github.com
|
278
328
|
- 6d0847b9@opayq.com
|
279
329
|
- jatzen@gmail.com
|
330
|
+
- jburkhart@engineyard.com
|
280
331
|
- jnylen@gmail.com
|
281
332
|
- jrafanie@users.noreply.github.com
|
282
333
|
- joep@travis-ci.org
|
283
334
|
- joepvd@users.noreply.github.com
|
284
335
|
- jon-erik.schneiderhan@meyouhealth.com
|
285
336
|
- Jonas.Chromik@student.hpi.uni-potsdam.de
|
337
|
+
- me@jhass.eu
|
338
|
+
- julia.simon@biicode.com
|
339
|
+
- jlambert@eml.cc
|
340
|
+
- laurent.petit@gmail.com
|
341
|
+
- maartenvanvliet@gmail.com
|
286
342
|
- marco.craveiro@gmail.com
|
343
|
+
- mario@mariovisic.com
|
287
344
|
- mtoothman@users.noreply.github.com
|
288
345
|
- gnappoms@gmail.com
|
289
346
|
- bussonniermatthias@gmail.com
|
347
|
+
- mmior@uwaterloo.ca
|
290
348
|
- mfischer@zendesk.com
|
349
|
+
- miro@hroncok.cz
|
350
|
+
- neamar@neamar.fr
|
291
351
|
- neroleung@gmail.com
|
352
|
+
- nbessi@users.noreply.github.com
|
292
353
|
- nowalekar@tigetext.com
|
293
354
|
- peterbe@mozilla.com
|
294
355
|
- peter.drake@acquia.com
|
356
|
+
- raphael.pinson@camptocamp.com
|
357
|
+
- rob@hoelz.ro
|
295
358
|
- robert.grider@northwestern.edu
|
296
359
|
- rcvanvo@gmail.com
|
297
360
|
- simon.cropp@gmail.com
|
298
|
-
- 51903216+Tahsin-travis-ci@users.noreply.github.com
|
299
361
|
- tituswormer@gmail.com
|
362
|
+
- tw@cloudcontrol.de
|
363
|
+
- pair+zg@pivotallabs.com
|
364
|
+
- e@zzak.io
|
300
365
|
- carla@travis-ci.org
|
301
366
|
- designerror@yandex.ru
|
302
367
|
- isaac.ardis@gmail.com
|
368
|
+
- jeffdh@gmail.com
|
369
|
+
- git@johnmuhl.com
|
303
370
|
- leland@lcweathers.net
|
304
371
|
executables:
|
305
372
|
- travis
|
@@ -512,7 +579,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
512
579
|
- !ruby/object:Gem::Version
|
513
580
|
version: 1.3.1
|
514
581
|
requirements: []
|
515
|
-
rubygems_version: 3.
|
582
|
+
rubygems_version: 3.1.2
|
516
583
|
signing_key:
|
517
584
|
specification_version: 4
|
518
585
|
summary: Travis CI client
|