File: env.rb

package info (click to toggle)
ruby-redis-client 0.27.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,108 kB
  • sloc: ansic: 7,517; ruby: 5,684; makefile: 246; sh: 123
file content (13 lines) | stat: -rw-r--r-- 395 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

$LOAD_PATH.unshift File.expand_path("../lib", __dir__)
$LOAD_PATH.unshift File.expand_path("../hiredis-client/lib", __dir__)

require "redis-client"
require "redis_client/decorator"

require "toxiproxy"
require "stringio"

Dir[File.join(__dir__, "support/**/*.rb")].sort.each { |f| require f }
Dir[File.join(__dir__, "shared/**/*.rb")].sort.each { |f| require f }