travis 1.13.2 → 1.13.3

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: b9431a8b45a5628931ed8e7c0002dc4116126cd0cd61e28b1d8fbbcb59648678
4
- data.tar.gz: 86b692f4a58c5dc3aef633ee62750eb4094f2a3b8682892de25690bcb15c4016
3
+ metadata.gz: b99b5ca553778c35d0d98edd14217c1b755acd2cc40136c265e2dd994ed8cb1b
4
+ data.tar.gz: b1fc86358f97364c029dde103bcf646d47bc6ea61e95869518d0c1b8192e199a
5
5
  SHA512:
6
- metadata.gz: 1cbea8710cf8c40ac4ef8802d5f9ae4ccb37b3446b0e86a010f44443d74db8a36caa4f5aa6cb0cbb889027009b260fce6c6e2c98c95630ae3f43cf6609ff393d
7
- data.tar.gz: 8ca3d2d81bbbbb947353d9c9217828ed4b7c80fdc08d493e42f94ae48786875bf24f88b1668dfc5b5de0bfbbc3f6e7f5f7ecb037c4cecf1f184a8afea2e79773
6
+ metadata.gz: ef7496875d9d0cfc7324cd4dcab0dfca48d590ad7dddc20fa3fff8c3e0f2de0dd27bc64c714c562f7dc8458dbb9656645591dd060ab7e8cdb5e4ec0539b642bb
7
+ data.tar.gz: 067c7b57290551e51eacaac772cfb6b859ee9f6b32d37d0e836e8bf73adfeba3fef0162d2f4b9a81fb078f4bfaa5e43e19e68b597f3f485848ce45447db9ec16
data/README.md CHANGED
@@ -2007,7 +2007,7 @@ If you do not have write access to the system gem directory, you'll need to perf
2007
2007
  Now make sure everything is working:
2008
2008
 
2009
2009
  $ travis version
2010
- 1.13.2
2010
+ 1.13.3
2011
2011
 
2012
2012
  See also [Note on Ubuntu](#ubuntu) below.
2013
2013
 
data/bin/travis CHANGED
@@ -9,12 +9,13 @@ require 'bundler/setup' if File.exist? File.expand_path('../Gemfile', __dir__)
9
9
  require 'travis/cli'
10
10
 
11
11
  # load plugins
12
- TRAVIS_PLUGINS = [].freeze
12
+ TRAVIS_PLUGINS = []
13
13
  config_path = ENV.fetch('TRAVIS_CONFIG_PATH') { File.expand_path('.travis', Dir.home) }
14
14
  Dir.glob(File.expand_path('*/init.rb', config_path)) do |file|
15
15
  TRAVIS_PLUGINS << file.sub("#{config_path}/", '').sub(%r{/init\.rb$}, '')
16
16
  load(file)
17
17
  end
18
+ TRAVIS_PLUGINS.freeze
18
19
 
19
20
  # and off we go then
20
21
  Travis::CLI.run(ARGV)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Travis
4
- VERSION = '1.13.2'
4
+ VERSION = '1.13.3'
5
5
  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.13.2
4
+ version: 1.13.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Konstantin Haase