mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
16 lines
331 B
Ruby
Executable File
16 lines
331 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
require 'find'
|
|
require_relative '../lib/const'
|
|
require_relative '../lib/color'
|
|
|
|
# Add >LOCAL< lib to LOAD_PATH
|
|
$LOAD_PATH.unshift '../lib'
|
|
|
|
Dir.glob('../packages/*.rb').each do |filename|
|
|
puts "Loading #{File.basename(filename, '.rb')}..."
|
|
load filename
|
|
end
|
|
|
|
puts "\nAll load tests successful.".lightgreen
|