Sha256: 4cea3d0de654ccb366bc96a983a331ee6a28cdcb5a311a8508f927be975c71a1
Contents?: true
Size: 1.95 KB
Versions: 10
Compression:
Stored size: 1.95 KB
Contents
# frozen_string_literal: true # Copyright 2016 Liqwyd Ltd. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. require 'require_all' require 'logger' require 'cyclid/config' require 'cyclid/plugin_registry' # Top level module for the core Cyclid code. module Cyclid class << self attr_accessor :config, :controllers, :plugins, :dispatcher, :builder, :logger config_path = ENV['CYCLID_CONFIG'] || File.join(%w(/ etc cyclid config)) Cyclid.config = API::Config.new(config_path) Cyclid.controllers = [] Cyclid.plugins = API::Plugins::Registry.new begin Cyclid.logger = if Cyclid.config.log.casecmp('stderr').zero? Logger.new(STDERR) else Logger.new(Cyclid.config.log) end rescue StandardError => ex abort "Failed to initialize: #{ex}" end end end require_relative 'db' require 'cyclid/monkey_patches' require 'cyclid/constants' require 'cyclid/errors' require 'cyclid/models' require 'cyclid/hmac' require 'cyclid/plugins' require 'cyclid/job' require 'cyclid/controllers' dispatcher = Cyclid.plugins.find(Cyclid.config.dispatcher, Cyclid::API::Plugins::Dispatcher) abort "Could not find dispatcher '#{Cyclid.config.dispatcher}'" if dispatcher.nil? Cyclid.dispatcher = dispatcher.new Cyclid.builder = Cyclid.plugins.find(Cyclid.config.builder, Cyclid::API::Plugins::Builder) abort "Could not find builder '#{Cyclid.config.builder}'" if Cyclid.builder.nil?
Version data entries
10 entries across 10 versions & 1 rubygems