travis 1.10.0.pre.rc1 → 1.10.1.travis.1305.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: 52acb807fd54ad77efdb9f61b343c3d597effe6eff5c880daf9442f99d4d46d9
4
- data.tar.gz: 1c0945ff27d47d7fe680d3411a3ccf0e2c7d829f66a40691f5fd4aa682eb0ce7
3
+ metadata.gz: 655de23f70d749fe7b143c411646b9551755839eab81c551dc07428b5aa96efa
4
+ data.tar.gz: e6c76733d0858af857e2f48d123fe599607af865f4fdb1d2b71a15e165cf0eb6
5
5
  SHA512:
6
- metadata.gz: 8b44fc9c464cb7ba06757527bf0000daf90399e118ca8cf89dbc073d1df48200a6bdce3c72a42620e270978be5da2b7e5c6a3c86dea10be3c2d4d54b811bd8f1
7
- data.tar.gz: 8c4eff418c5407b8a59238b1f509b8fb47eae9e79f9a0005c9669fdd49efc40e9f9a79cbb9873e53a76d344a2608f3224ddb238892f8a2ba2add5695f36b4eb7
6
+ metadata.gz: de630a919e5cf7fb89ea05bee2c8c9302fc018f04eea7586adb9c6b73a06b718e6c62b955c3110791bbe10081fc597b47682cd9339b52a64ee4057b6133cdf41
7
+ data.tar.gz: 45c83d0a94bb960da7d3f6e460300d85f58d8ecdbe4658bb87fe8c136af7d6d6cade6d6f57a12c9dc0c8237e4f38eb28219b0e5e3a336aceff1920ac7752e2be
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.10.0.pre.rc1
2021
+ 1.10.0
2022
2022
 
2023
2023
  See also [Note on Ubuntu](#ubuntu) below.
2024
2024
 
@@ -2041,11 +2041,12 @@ 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, you should use your package system or a Ruby Installer to install a recent Ruby.
2044
+ If you have an outdated Ruby version, or your OS doesn't come with Ruby pre-installed,
2045
+ you should use your package system or a Ruby Installer to install a recent Ruby.
2045
2046
 
2046
2047
  #### Mac OS X via Homebrew
2047
2048
 
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:
2049
+ You can use [Homebrew](http://mxcl.github.io/homebrew/) to install a recent version:
2049
2050
 
2050
2051
  $ brew install ruby
2051
2052
  $ gem update --system
@@ -2056,28 +2057,14 @@ On Windows, we recommend using the [RubyInstaller](http://rubyinstaller.org/), w
2056
2057
 
2057
2058
  #### Other Unix systems
2058
2059
 
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.
2060
+ On other Unix systems, like Linux, use your package system to install Ruby.
2060
2061
 
2061
- Debian:
2062
+ Debian, Ubuntu:
2062
2063
 
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
2070
2064
  $ sudo apt-get update
2071
- $ sudo apt-get install ruby2.1 ruby2.1-dev ruby-switch
2072
- $ sudo ruby-switch --set ruby2.1
2073
-
2074
- Fedora:
2065
+ $ sudo apt-get install ruby
2075
2066
 
2076
- $ sudo yum install ruby ruby-devel
2077
-
2078
- Arch Linux:
2079
-
2080
- $ sudo pacman -S ruby
2067
+ For other Linux distributions, refer to their respective documentation.
2081
2068
 
2082
2069
  #### Ruby versioning tools
2083
2070
 
@@ -2087,45 +2074,21 @@ You can of course always compile Ruby from source, though then you are left with
2087
2074
 
2088
2075
  ### Troubleshooting
2089
2076
 
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
-
2123
2077
  #### Upgrading from travis-cli
2124
2078
 
2125
2079
  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`.
2126
2080
 
2127
2081
  ## Version History
2128
2082
 
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
+
2129
2092
  ### 1.9.1 (May 19, 2020)
2130
2093
 
2131
2094
  * Fix `--no-interactive` flag in `encrypt` and `encryt-file` commands https://github.com/travis-ci/travis.rb/pull/738
@@ -34,7 +34,8 @@ module Travis
34
34
  attr_writer :travis_config
35
35
 
36
36
  def self.languages
37
- asset_path('init/*.yml').map { |f| File.basename(f, '.yml') }.sort
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").first
67
+ asset_path("init/#{language}.yml")
67
68
  end
68
69
 
69
70
  def template(language)
@@ -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 = true
65
+ g.drop_token = !list_github_token
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}: ") }
@@ -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).first)
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'].first, source)
50
+ File.write(Assets['travis.sh'], source)
51
51
  end
52
52
  end
53
53
  end
@@ -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 "which #{command} 2>/dev/null >/dev/null" }
79
+ @has.fetch(command) { @has[command] = system "command -v #{command} 2>/dev/null >/dev/null" }
80
80
  end
81
81
 
82
82
  def running?(app)
@@ -1,3 +1,3 @@
1
1
  module Travis
2
- VERSION = '1.10.0.pre.rc1'
2
+ VERSION = '1.10.0'
3
3
  end
@@ -2,7 +2,7 @@
2
2
  Gem::Specification.new do |s|
3
3
  # general info
4
4
  s.name = "travis"
5
- s.version = "1.10.0.pre.rc1"
5
+ s.version = "1.10.0"
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,34 +12,24 @@ Gem::Specification.new do |s|
12
12
 
13
13
  # generated from git shortlog -sn
14
14
  s.authors = [
15
- "Konstantin Haase",
16
15
  "Hiro Asari",
17
- "Henrik Hodne",
18
- "joshua-anderson",
19
- "Aaron Hill",
16
+ "Konstantin Haase",
20
17
  "Piotr Milcarz",
21
18
  "Buck Doyle",
22
- "Peter Souter",
23
19
  "Christopher Grim",
24
20
  "Joe Corcoran",
25
- "Peter van Dijk",
26
21
  "Sven Fuchs",
27
22
  "Aakriti Gupta",
28
23
  "Josh Kalderimis",
29
- "Piotr Sarnacki",
30
24
  "Ke Zhu",
31
- "Max Barnash",
25
+ "Piotr Sarnacki",
32
26
  "Ren\xC3\xA9e Hendricksen",
33
27
  "carlad",
34
- "Carlos Palhares",
35
- "Dan Buch",
36
28
  "Mar\xC3\xADa de Ant\xC3\xB3n",
37
- "Mathias Meyer",
38
29
  "Matt Toothman",
39
30
  "mariadeanton",
40
31
  "techgaun",
41
32
  "Alpha",
42
- "Andreas Tiefenthaler",
43
33
  "Beau Bouchard",
44
34
  "Corinna Wiesner",
45
35
  "David Rodr\xC3\xADguez",
@@ -49,100 +39,66 @@ Gem::Specification.new do |s|
49
39
  "Ivan Pozdeev",
50
40
  "Joep van Delft",
51
41
  "Stefan Nordhausen",
52
- "Thais Camilo and Konstantin Haase",
53
42
  "Tobias Bieniek",
54
43
  "Adam Baxter",
55
- "Adam Lavin",
56
- "Adrien Brault",
57
44
  "Alfie John",
58
45
  "Alo\xC3\xAFs Th\xC3\xA9venot",
59
46
  "Basarat Ali Syed",
60
- "Benjamin Manns",
61
47
  "Christian H\xC3\xB6ltje",
62
48
  "Dani Hodovic",
63
- "Daniel Chatfield",
64
49
  "Dominic Jodoin",
65
- "Eric Herot",
50
+ "Eli Schwartz",
66
51
  "Eugene K",
67
- "George Millo",
68
52
  "Gunter Grodotzki",
69
53
  "Harald Nordgren",
70
54
  "HaraldNordgren",
71
55
  "Igor",
72
56
  "Iulian Onofrei",
73
57
  "Jacob Atzen",
74
- "Jacob Burkhart",
75
58
  "James Nylen",
76
59
  "Joe Rafaniello",
77
60
  "Jon-Erik Schneiderhan",
78
61
  "Jonas Chromik",
79
- "Jonne Ha\xC3\x9F",
80
- "Julia S.Simon",
81
- "Justin Lambert",
82
- "Laurent Petit",
83
- "Maarten van Vliet",
84
62
  "Marco Craveiro",
85
- "Mario Visic",
86
63
  "Matt",
87
64
  "Matteo Sumberaz",
88
65
  "Matthias Bussonnier",
89
- "Michael Mior",
90
66
  "Michael S. Fischer",
91
- "Miro Hron\xC4\x8Dok",
92
- "Neamar",
93
67
  "Nero Leung",
94
- "Nicolas Bessi (nbessi)",
95
68
  "Nikhil Owalekar",
96
69
  "Peter Bengtsson",
97
70
  "Peter Drake",
98
- "Rapha\xC3\xABl Pinson",
99
- "Rob Hoelz",
100
71
  "Robert Grider",
101
72
  "Robert Van Voorhees",
102
73
  "Simon Cropp",
74
+ "Tahsin Hasan",
103
75
  "Titus",
104
76
  "Titus Wormer",
105
- "Tobias Wilken",
106
- "Zachary Gershman",
107
- "Zachary Scott",
108
77
  "designerror",
109
78
  "ia",
110
- "jeffdh",
111
- "john muhl",
112
79
  "slewt"
113
80
  ]
114
81
 
115
82
  # generated from git shortlog -sne
116
83
  s.email = [
117
- "konstantin.mailinglists@googlemail.com",
118
84
  "asari.ruby@gmail.com",
119
- "j@zatigo.com",
120
- "aa1ronham@gmail.com",
85
+ "konstantin.mailinglists@googlemail.com",
121
86
  "piotrm@travis-ci.org",
122
- "me@henrikhodne.com",
123
87
  "b@chromatin.ca",
124
- "henrik@hodne.io",
125
- "p.morsou@gmail.com",
126
88
  "chrisg@luminal.io",
127
89
  "joe@corcoran.io",
128
- "peter.van.dijk@netherlabs.nl",
129
90
  "me@svenfuchs.com",
130
91
  "josh.kalderimis@gmail.com",
131
- "drogus@gmail.com",
132
92
  "kzhu@us.ibm.com",
133
- "i.am@anhero.ru",
93
+ "drogus@gmail.com",
134
94
  "renee@travis-ci.org",
135
95
  "aakritigupta@users.noreply.github.com",
136
- "me@xjunior.me",
137
- "dan@meatballhat.com",
138
96
  "mariadeanton@gmail.com",
139
- "meyer@paperplanes.de",
140
97
  "matt.toothman@aver.io",
141
98
  "carlad@users.noreply.github.com",
142
99
  "coolsamar207@gmail.com",
143
100
  "aakriti@travis-ci.org",
144
101
  "AlphaWong@users.noreply.github.com",
145
- "at@an-ti.eu",
146
102
  "127320+BeauBouchard@users.noreply.github.com",
147
103
  "wiesner@avarteq.de",
148
104
  "deivid.rodriguez@gmail.com",
@@ -151,67 +107,44 @@ Gem::Specification.new do |s|
151
107
  "igor@travis-ci.org",
152
108
  "vano@mail.mipt.ru",
153
109
  "stefan.nordhausen@immobilienscout24.de",
154
- "dev+narwen+rkh@rkh.im",
155
110
  "tobias.bieniek@gmail.com",
156
111
  "github@voltagex.org",
157
- "adam@lavoaster.co.uk",
158
- "adrien.brault@gmail.com",
159
112
  "33c6c91f3bb4a391082e8a29642cafaf@alfie.wtf",
160
113
  "aloisthevenot@srxp.com",
161
114
  "basaratali@gmail.com",
162
- "benmanns@gmail.com",
163
115
  "docwhat@gerf.org",
164
116
  "danihodovic@users.noreply.github.com",
165
- "chatfielddaniel@gmail.com",
166
117
  "dominic@travis-ci.com",
167
- "eric.github@herot.com",
118
+ "eschwartz@archlinux.org",
168
119
  "34233075+eugene-kulak@users.noreply.github.com",
169
- "georgejulianmillo@gmail.com",
170
120
  "gunter@grodotzki.co.za",
171
121
  "haraldnordgren@gmail.com",
172
122
  "igorwwwwwwwwwwwwwwwwwwww@users.noreply.github.com",
173
123
  "6d0847b9@opayq.com",
174
124
  "jatzen@gmail.com",
175
- "jburkhart@engineyard.com",
176
125
  "jnylen@gmail.com",
177
126
  "jrafanie@users.noreply.github.com",
178
127
  "joep@travis-ci.org",
179
128
  "joepvd@users.noreply.github.com",
180
129
  "jon-erik.schneiderhan@meyouhealth.com",
181
130
  "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",
187
131
  "marco.craveiro@gmail.com",
188
- "mario@mariovisic.com",
189
132
  "mtoothman@users.noreply.github.com",
190
133
  "gnappoms@gmail.com",
191
134
  "bussonniermatthias@gmail.com",
192
- "mmior@uwaterloo.ca",
193
135
  "mfischer@zendesk.com",
194
- "miro@hroncok.cz",
195
- "neamar@neamar.fr",
196
136
  "neroleung@gmail.com",
197
- "nbessi@users.noreply.github.com",
198
137
  "nowalekar@tigetext.com",
199
138
  "peterbe@mozilla.com",
200
139
  "peter.drake@acquia.com",
201
- "raphael.pinson@camptocamp.com",
202
- "rob@hoelz.ro",
203
140
  "robert.grider@northwestern.edu",
204
141
  "rcvanvo@gmail.com",
205
142
  "simon.cropp@gmail.com",
143
+ "51903216+Tahsin-travis-ci@users.noreply.github.com",
206
144
  "tituswormer@gmail.com",
207
- "tw@cloudcontrol.de",
208
- "pair+zg@pivotallabs.com",
209
- "e@zzak.io",
210
145
  "carla@travis-ci.org",
211
146
  "designerror@yandex.ru",
212
147
  "isaac.ardis@gmail.com",
213
- "jeffdh@gmail.com",
214
- "git@johnmuhl.com",
215
148
  "leland@lcweathers.net"
216
149
  ]
217
150
 
metadata CHANGED
@@ -1,37 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: travis
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0.pre.rc1
4
+ version: 1.10.1.travis.1305.9
5
5
  platform: ruby
6
6
  authors:
7
- - Konstantin Haase
8
7
  - Hiro Asari
9
- - Henrik Hodne
10
- - joshua-anderson
11
- - Aaron Hill
8
+ - Konstantin Haase
12
9
  - Piotr Milcarz
13
10
  - Buck Doyle
14
- - Peter Souter
15
11
  - Christopher Grim
16
12
  - Joe Corcoran
17
- - Peter van Dijk
18
13
  - Sven Fuchs
19
14
  - Aakriti Gupta
20
15
  - Josh Kalderimis
21
- - Piotr Sarnacki
22
16
  - Ke Zhu
23
- - Max Barnash
17
+ - Piotr Sarnacki
24
18
  - Renée Hendricksen
25
19
  - carlad
26
- - Carlos Palhares
27
- - Dan Buch
28
20
  - María de Antón
29
- - Mathias Meyer
30
21
  - Matt Toothman
31
22
  - mariadeanton
32
23
  - techgaun
33
24
  - Alpha
34
- - Andreas Tiefenthaler
35
25
  - Beau Bouchard
36
26
  - Corinna Wiesner
37
27
  - David Rodríguez
@@ -41,71 +31,48 @@ authors:
41
31
  - Ivan Pozdeev
42
32
  - Joep van Delft
43
33
  - Stefan Nordhausen
44
- - Thais Camilo and Konstantin Haase
45
34
  - Tobias Bieniek
46
35
  - Adam Baxter
47
- - Adam Lavin
48
- - Adrien Brault
49
36
  - Alfie John
50
37
  - Aloïs Thévenot
51
38
  - Basarat Ali Syed
52
- - Benjamin Manns
53
39
  - Christian Höltje
54
40
  - Dani Hodovic
55
- - Daniel Chatfield
56
41
  - Dominic Jodoin
57
- - Eric Herot
42
+ - Eli Schwartz
58
43
  - Eugene K
59
- - George Millo
60
44
  - Gunter Grodotzki
61
45
  - Harald Nordgren
62
46
  - HaraldNordgren
63
47
  - Igor
64
48
  - Iulian Onofrei
65
49
  - Jacob Atzen
66
- - Jacob Burkhart
67
50
  - James Nylen
68
51
  - Joe Rafaniello
69
52
  - Jon-Erik Schneiderhan
70
53
  - Jonas Chromik
71
- - Jonne Haß
72
- - Julia S.Simon
73
- - Justin Lambert
74
- - Laurent Petit
75
- - Maarten van Vliet
76
54
  - Marco Craveiro
77
- - Mario Visic
78
55
  - Matt
79
56
  - Matteo Sumberaz
80
57
  - Matthias Bussonnier
81
- - Michael Mior
82
58
  - Michael S. Fischer
83
- - Miro Hrončok
84
- - Neamar
85
59
  - Nero Leung
86
- - Nicolas Bessi (nbessi)
87
60
  - Nikhil Owalekar
88
61
  - Peter Bengtsson
89
62
  - Peter Drake
90
- - Raphaël Pinson
91
- - Rob Hoelz
92
63
  - Robert Grider
93
64
  - Robert Van Voorhees
94
65
  - Simon Cropp
66
+ - Tahsin Hasan
95
67
  - Titus
96
68
  - Titus Wormer
97
- - Tobias Wilken
98
- - Zachary Gershman
99
- - Zachary Scott
100
69
  - designerror
101
70
  - ia
102
- - jeffdh
103
- - john muhl
104
71
  - slewt
105
72
  autorequire:
106
73
  bindir: bin
107
74
  cert_chain: []
108
- date: 2020-08-07 00:00:00.000000000 Z
75
+ date: 2020-09-22 00:00:00.000000000 Z
109
76
  dependencies:
110
77
  - !ruby/object:Gem::Dependency
111
78
  name: faraday
@@ -269,35 +236,24 @@ dependencies:
269
236
  version: '0.6'
270
237
  description: CLI and Ruby client library for Travis CI
271
238
  email:
272
- - konstantin.mailinglists@googlemail.com
273
239
  - asari.ruby@gmail.com
274
- - j@zatigo.com
275
- - aa1ronham@gmail.com
240
+ - konstantin.mailinglists@googlemail.com
276
241
  - piotrm@travis-ci.org
277
- - me@henrikhodne.com
278
242
  - b@chromatin.ca
279
- - henrik@hodne.io
280
- - p.morsou@gmail.com
281
243
  - chrisg@luminal.io
282
244
  - joe@corcoran.io
283
- - peter.van.dijk@netherlabs.nl
284
245
  - me@svenfuchs.com
285
246
  - josh.kalderimis@gmail.com
286
- - drogus@gmail.com
287
247
  - kzhu@us.ibm.com
288
- - i.am@anhero.ru
248
+ - drogus@gmail.com
289
249
  - renee@travis-ci.org
290
250
  - aakritigupta@users.noreply.github.com
291
- - me@xjunior.me
292
- - dan@meatballhat.com
293
251
  - mariadeanton@gmail.com
294
- - meyer@paperplanes.de
295
252
  - matt.toothman@aver.io
296
253
  - carlad@users.noreply.github.com
297
254
  - coolsamar207@gmail.com
298
255
  - aakriti@travis-ci.org
299
256
  - AlphaWong@users.noreply.github.com
300
- - at@an-ti.eu
301
257
  - 127320+BeauBouchard@users.noreply.github.com
302
258
  - wiesner@avarteq.de
303
259
  - deivid.rodriguez@gmail.com
@@ -306,67 +262,44 @@ email:
306
262
  - igor@travis-ci.org
307
263
  - vano@mail.mipt.ru
308
264
  - stefan.nordhausen@immobilienscout24.de
309
- - dev+narwen+rkh@rkh.im
310
265
  - tobias.bieniek@gmail.com
311
266
  - github@voltagex.org
312
- - adam@lavoaster.co.uk
313
- - adrien.brault@gmail.com
314
267
  - 33c6c91f3bb4a391082e8a29642cafaf@alfie.wtf
315
268
  - aloisthevenot@srxp.com
316
269
  - basaratali@gmail.com
317
- - benmanns@gmail.com
318
270
  - docwhat@gerf.org
319
271
  - danihodovic@users.noreply.github.com
320
- - chatfielddaniel@gmail.com
321
272
  - dominic@travis-ci.com
322
- - eric.github@herot.com
273
+ - eschwartz@archlinux.org
323
274
  - 34233075+eugene-kulak@users.noreply.github.com
324
- - georgejulianmillo@gmail.com
325
275
  - gunter@grodotzki.co.za
326
276
  - haraldnordgren@gmail.com
327
277
  - igorwwwwwwwwwwwwwwwwwwww@users.noreply.github.com
328
278
  - 6d0847b9@opayq.com
329
279
  - jatzen@gmail.com
330
- - jburkhart@engineyard.com
331
280
  - jnylen@gmail.com
332
281
  - jrafanie@users.noreply.github.com
333
282
  - joep@travis-ci.org
334
283
  - joepvd@users.noreply.github.com
335
284
  - jon-erik.schneiderhan@meyouhealth.com
336
285
  - 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
342
286
  - marco.craveiro@gmail.com
343
- - mario@mariovisic.com
344
287
  - mtoothman@users.noreply.github.com
345
288
  - gnappoms@gmail.com
346
289
  - bussonniermatthias@gmail.com
347
- - mmior@uwaterloo.ca
348
290
  - mfischer@zendesk.com
349
- - miro@hroncok.cz
350
- - neamar@neamar.fr
351
291
  - neroleung@gmail.com
352
- - nbessi@users.noreply.github.com
353
292
  - nowalekar@tigetext.com
354
293
  - peterbe@mozilla.com
355
294
  - peter.drake@acquia.com
356
- - raphael.pinson@camptocamp.com
357
- - rob@hoelz.ro
358
295
  - robert.grider@northwestern.edu
359
296
  - rcvanvo@gmail.com
360
297
  - simon.cropp@gmail.com
298
+ - 51903216+Tahsin-travis-ci@users.noreply.github.com
361
299
  - tituswormer@gmail.com
362
- - tw@cloudcontrol.de
363
- - pair+zg@pivotallabs.com
364
- - e@zzak.io
365
300
  - carla@travis-ci.org
366
301
  - designerror@yandex.ru
367
302
  - isaac.ardis@gmail.com
368
- - jeffdh@gmail.com
369
- - git@johnmuhl.com
370
303
  - leland@lcweathers.net
371
304
  executables:
372
305
  - travis
@@ -579,7 +512,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
579
512
  - !ruby/object:Gem::Version
580
513
  version: 1.3.1
581
514
  requirements: []
582
- rubygems_version: 3.1.2
515
+ rubygems_version: 3.0.8
583
516
  signing_key:
584
517
  specification_version: 4
585
518
  summary: Travis CI client