9 lines
192 B
Ruby
9 lines
192 B
Ruby
require 'travis/api/app'
|
|
|
|
class Travis::Api::App
|
|
# Namespace for helpers.
|
|
module Helpers
|
|
Dir.glob("#{__dir__}/helpers/*.rb").each { |f| require f[%r[(?<=lib/).+(?=\.rb$)]] }
|
|
end
|
|
end
|