Sha256: 6a7a591d827195b70d1d7af377d860aa4acc65e280091e2b24ba5d0ad027b9a3
Contents?: true
Size: 477 Bytes
Versions: 10
Compression:
Stored size: 477 Bytes
Contents
module ChurchCommunityBuilder require CCB_LIB_DIR + '/exceptions.rb' api_path = CCB_LIB_DIR + '/api/' require api_path + 'api_object.rb' Dir["#{api_path}/*.rb"].each { |f| require(f) } readers_path = CCB_LIB_DIR + '/readers/' require readers_path + 'api_reader.rb' Dir["#{readers_path}/*.rb"].each { |f| require(f) } writers_path = CCB_LIB_DIR + '/writers/' require writers_path + 'api_writer.rb' Dir["#{writers_path}/*.rb"].each { |f| require(f) } end
Version data entries
10 entries across 10 versions & 1 rubygems