Sha256: deaf792ba84cce1f0d5bfabd9f71f035e19b902f86d8877d7cdfa27862f9deb4

Contents?: true

Size: 378 Bytes

Versions: 4

Compression:

Stored size: 378 Bytes

Contents

# frozen_string_literal: true

Dir[File.join(__dir__, 'framework/rest/*.rb')].sort.each do |file|
  require file
end

Dir[File.join(__dir__, 'rest/*.rb')].sort.each do |file|
  require file.gsub('.rb', '_base.rb') unless file.end_with?('client.rb') || file.end_with?('_base.rb')
  require file
end

Dir[File.join(__dir__, 'rest/**/*.rb')].sort.each do |file|
  require file
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
twilio-ruby-6.0.0 lib/twilio-ruby/rest.rb
twilio-ruby-6.0.0.pre.rc.3 lib/twilio-ruby/rest.rb
twilio-ruby-6.0.0.pre.rc.2 lib/twilio-ruby/rest.rb
twilio-ruby-6.0.0.pre.rc.1 lib/twilio-ruby/rest.rb