Sha256: 4625f0f7d780563705bf915d3ad11dd76ca00b612da5031e871e5d7c5df1a3b8

Contents?: true

Size: 1.47 KB

Versions: 30

Compression:

Stored size: 1.47 KB

Contents

# encoding: utf-8
# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.

require 'new_relic/language_support'

module NewRelic
  # A singleton for shared generic helper methods
  module Helper
    extend self

    # Confirm a string is correctly encoded,
    # If not force the encoding to ASCII-8BIT (binary)
    def correctly_encoded(string)
      return string unless string.is_a? String
      # The .dup here is intentional, since force_encoding mutates the target,
      # and we don't know who is going to use this string downstream of us.
      string.valid_encoding? ? string : string.dup.force_encoding(Encoding::ASCII_8BIT)
    end

    def instance_method_visibility(klass, method_name)
      if klass.private_instance_methods.map{|s|s.to_sym}.include? method_name.to_sym
        :private
      elsif klass.protected_instance_methods.map{|s|s.to_sym}.include? method_name.to_sym
        :protected
      else
        :public
      end
    end

    def instance_methods_include?(klass, method_name)
      method_name_sym = method_name.to_sym
      (
        klass.instance_methods.map{ |s| s.to_sym }.include?(method_name_sym)          ||
        klass.protected_instance_methods.map{ |s|s.to_sym }.include?(method_name_sym) ||
        klass.private_instance_methods.map{ |s|s.to_sym }.include?(method_name_sym)
      )
    end

    def time_to_millis(time)
      (time.to_f * 1000).round
    end
  end
end

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
newrelic_rpm-6.11.0.365 lib/new_relic/helper.rb
newrelic_rpm-6.10.0.364 lib/new_relic/helper.rb
newrelic_rpm-6.9.0.363 lib/new_relic/helper.rb
newrelic_rpm-6.8.0.360 lib/new_relic/helper.rb
newrelic_rpm-6.7.0.359 lib/new_relic/helper.rb
newrelic_rpm-6.6.0.358 lib/new_relic/helper.rb
newrelic_rpm-6.5.0.357 lib/new_relic/helper.rb
newrelic_rpm-6.4.0.356 lib/new_relic/helper.rb
newrelic_rpm-6.3.0.355 lib/new_relic/helper.rb
newrelic_rpm-6.2.0.354 lib/new_relic/helper.rb
newrelic_rpm-6.1.0.352 lib/new_relic/helper.rb
newrelic_rpm-6.0.0.351 lib/new_relic/helper.rb
newrelic_rpm-5.7.0.350 lib/new_relic/helper.rb
newrelic_rpm-5.6.0.349 lib/new_relic/helper.rb
newrelic_rpm-5.5.0.348 lib/new_relic/helper.rb
newrelic_rpm-5.4.0.347 lib/new_relic/helper.rb
newrelic_rpm-5.3.0.346 lib/new_relic/helper.rb
newrelic_rpm-5.2.0.345 lib/new_relic/helper.rb
newrelic_rpm-5.1.0.344 lib/new_relic/helper.rb
newrelic_rpm-5.0.0.342 lib/new_relic/helper.rb