Sha256: 299cafcd3ab83b59e69ac44e6bb83ce125e4353edea5e40e72000d6ca64a6d7f
Contents?: true
Size: 577 Bytes
Versions: 92
Compression:
Stored size: 577 Bytes
Contents
#!/usr/bin/env ruby # -*- coding: utf-8 -*- # In recent CRuby, RubyVM::InstructionSequence is always defined. # This optimization aims to reduce memory (avg 0.5 megabytes) at startup. # ref: http://atdot.net/~ko1/activities/2017_fukuoka_rubykaigi_02.pdf # But other implementation such as truffleruby does not provide such # class. if defined?(RubyVM::InstructionSequence) RubyVM::InstructionSequence.compile_option = {trace_instruction: false} end here = File.dirname(__FILE__) $LOAD_PATH << File.expand_path(File.join(here, '..', 'lib')) require 'fluent/command/fluentd'
Version data entries
92 entries across 92 versions & 4 rubygems