Sha256: 12293d85f77fbe5b88b83c5c95cd65692b4fe9a9620aa95bbf0e8082b1b431d0

Contents?: true

Size: 1.33 KB

Versions: 5

Compression:

Stored size: 1.33 KB

Contents

# frozen_string_literal: true

require 'time'
require 'bundler'
require 'get_process_mem'

require 'dead_end'

module DerailedBenchmarks
  def self.gem_is_bundled?(name)
    specs = ::Bundler.locked_gems.specs.each_with_object({}) {|spec, hash| hash[spec.name] = spec }
    specs[name]
  end

  class << self
    attr_accessor :auth
  end

  def self.rails_path_on_disk
    require 'rails/version'
    rails_version_file = Rails.method(:version).source_location[0]
    path = Pathname.new(rails_version_file).expand_path.parent.parent

    while path != Pathname.new("/")
      basename = path.expand_path.basename.to_s

      break if basename.start_with?("rails") && basename != "railties"
      path = path.parent
    end
    raise "Could not find rails folder on a folder in #{rails_version_file}"  if path == Pathname.new("/")
    path.expand_path
  end

  def self.add_auth(app)
    if use_auth = ENV['USE_AUTH']
      puts "Auth: #{use_auth}"
      auth.add_app(app)
    else
      app
    end
  end
end

require 'derailed_benchmarks/require_tree'
require 'derailed_benchmarks/auth_helper'

require 'derailed_benchmarks/stats_for_file'
require 'derailed_benchmarks/stats_from_dir'
require 'derailed_benchmarks/git/switch_project'

if DerailedBenchmarks.gem_is_bundled?("devise")
  DerailedBenchmarks.auth = DerailedBenchmarks::AuthHelpers::Devise.new
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
derailed_benchmarks-2.1.2 lib/derailed_benchmarks.rb
derailed_benchmarks-2.1.1 lib/derailed_benchmarks.rb
derailed_benchmarks-2.1.0 lib/derailed_benchmarks.rb
derailed_benchmarks-2.0.1 lib/derailed_benchmarks.rb
derailed_benchmarks-2.0.0 lib/derailed_benchmarks.rb