Sha256: de6eae3ce27c935bb4ff404f7b3800f0ae857ad594138163e37cca9369aac321
Contents?: true
Size: 691 Bytes
Versions: 7
Compression:
Stored size: 691 Bytes
Contents
# encoding: utf-8 # This file is distributed under Ting Yun's license terms. require 'ting_yun/frameworks/instance_methods' require 'ting_yun/frameworks/class_methods' require 'yaml' module TingYun module Frameworks def self.framework Framework.instance end def self.init_start(options={}) framework.init_plugin(options) end class Framework include InstanceMethods extend ClassMethods protected def initialize(local_env,config_file_override=nil) @local_env = local_env @started_in_env = nil @config_file_override = config_file_override @instrumentation_files = [] end end end end
Version data entries
7 entries across 7 versions & 1 rubygems