Sha256: 0504280561d7ab53f0bd2b639b859fced3858522af2c75d474e94008e81e16db
Contents?: true
Size: 679 Bytes
Versions: 14
Compression:
Stored size: 679 Bytes
Contents
module TheCity require THECITY_LIB_DIR + '/exceptions.rb' api_path = THECITY_LIB_DIR + '/api/' require api_path + 'api_object.rb' Dir["#{api_path}/*.rb"].each { |f| require(f) } cache_path = THECITY_LIB_DIR + '/cachers/' require cache_path + 'cache_adapter.rb' cache_file_path = THECITY_LIB_DIR + '/cachers/file/' Dir["#{cache_file_path}/*.rb"].each { |f| require(f) } readers_path = THECITY_LIB_DIR + '/readers/' require readers_path + 'api_reader.rb' Dir["#{readers_path}/*.rb"].each { |f| require(f) } writers_path = THECITY_LIB_DIR + '/writers/' require writers_path + 'api_writer.rb' Dir["#{writers_path}/*.rb"].each { |f| require(f) } end
Version data entries
14 entries across 14 versions & 1 rubygems