Sha256: 2d6521b6b6c8cf05d1b3753c014c6cec3ac55515657490eedc60b649d58916c8
Contents?: true
Size: 520 Bytes
Versions: 69
Compression:
Stored size: 520 Bytes
Contents
#!/usr/bin/env ruby $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) # :( Encoding.default_external = Encoding::UTF_8 if defined? Encoding # load travis library require 'travis/cli' # load plugins TRAVIS_PLUGINS = [] config_path = ENV.fetch('TRAVIS_CONFIG_PATH') { File.expand_path('.travis', Dir.home) } Dir.glob(File.expand_path('*/init.rb', config_path)) do |file| TRAVIS_PLUGINS << file.sub(config_path + '/', '').sub(/\/init\.rb$/, '') load(file) end # and off we go then Travis::CLI.run(ARGV)
Version data entries
69 entries across 69 versions & 1 rubygems