Sha256: e2a5a26e3856f8c0304e8c930020c52f2fb5429c073a518ab4a72847487648a5

Contents?: true

Size: 677 Bytes

Versions: 1

Compression:

Stored size: 677 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'


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

1 entries across 1 versions & 1 rubygems

Version Path
tingyun_rpm-1.2.0 lib/ting_yun/frameworks.rb