$85 GRAYBYTE WORDPRESS FILE MANAGER $70

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 104.21.43.35 | ADMIN IP 216.73.216.23
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/opt/alt/ruby30/share/rubygems/rubygems/

HOME
Current File : /opt/alt/ruby30/share/rubygems/rubygems//validator.rb
# frozen_string_literal: true
#--
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
# All rights reserved.
# See LICENSE.txt for permissions.
#++

require_relative 'package'
require_relative 'installer'

##
# Validator performs various gem file and gem database validation

class Gem::Validator
  include Gem::UserInteraction

  def initialize # :nodoc:
    require 'find'
  end

  private

  def find_files_for_gem(gem_directory)
    installed_files = []

    Find.find gem_directory do |file_name|
      fn = file_name[gem_directory.size..file_name.size - 1].sub(/^\//, "")
      installed_files << fn unless
        fn =~ /CVS/ || fn.empty? || File.directory?(file_name)
    end

    installed_files
  end

  public

  ##
  # Describes a problem with a file in a gem.

  ErrorData = Struct.new :path, :problem do
    def <=>(other) # :nodoc:
      return nil unless self.class === other

      [path, problem] <=> [other.path, other.problem]
    end
  end

  ##
  # Checks the gem directory for the following potential
  # inconsistencies/problems:
  #
  # * Checksum gem itself
  # * For each file in each gem, check consistency of installed versions
  # * Check for files that aren't part of the gem but are in the gems directory
  # * 1 cache - 1 spec - 1 directory.
  #
  # returns a hash of ErrorData objects, keyed on the problem gem's name.
  #--
  # TODO needs further cleanup

  def alien(gems=[])
    errors = Hash.new {|h,k| h[k] = {} }

    Gem::Specification.each do |spec|
      next unless gems.include? spec.name unless gems.empty?
      next if spec.default_gem?

      gem_name      = spec.file_name
      gem_path      = spec.cache_file
      spec_path     = spec.spec_file
      gem_directory = spec.full_gem_path

      unless File.directory? gem_directory
        errors[gem_name][spec.full_name] =
          "Gem registered but doesn't exist at #{gem_directory}"
        next
      end

      unless File.exist? spec_path
        errors[gem_name][spec_path] = "Spec file missing for installed gem"
      end

      begin
        unless File.readable?(gem_path)
          raise Gem::VerificationError, "missing gem file #{gem_path}"
        end

        good, gone, unreadable = nil, nil, nil, nil

        File.open gem_path, Gem.binary_mode do |file|
          package = Gem::Package.new gem_path

          good, gone = package.contents.partition do |file_name|
            File.exist? File.join(gem_directory, file_name)
          end

          gone.sort.each do |path|
            errors[gem_name][path] = "Missing file"
          end

          good, unreadable = good.partition do |file_name|
            File.readable? File.join(gem_directory, file_name)
          end

          unreadable.sort.each do |path|
            errors[gem_name][path] = "Unreadable file"
          end

          good.each do |entry, data|
            begin
              next unless data # HACK `gem check -a mkrf`

              source = File.join gem_directory, entry['path']

              File.open source, Gem.binary_mode do |f|
                unless f.read == data
                  errors[gem_name][entry['path']] = "Modified from original"
                end
              end
            end
          end
        end

        installed_files = find_files_for_gem(gem_directory)
        extras = installed_files - good - unreadable

        extras.each do |extra|
          errors[gem_name][extra] = "Extra file"
        end
      rescue Gem::VerificationError => e
        errors[gem_name][gem_path] = e.message
      end
    end

    errors.each do |name, subhash|
      errors[name] = subhash.map do |path, msg|
        ErrorData.new path, msg
      end.sort
    end

    errors
  end
end


Current_dir [ NOT WRITEABLE ] Document_root [ NOT WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
3 Mar 2024 10.47 PM
root / root
0755
commands
--
17 Jul 2024 8.45 AM
root / linksafe
0755
core_ext
--
17 Jul 2024 8.45 AM
root / linksafe
0755
defaults
--
17 Jul 2024 8.45 AM
root / linksafe
0755
ext
--
17 Jul 2024 8.45 AM
root / linksafe
0755
optparse
--
17 Jul 2024 8.45 AM
root / linksafe
0755
package
--
17 Jul 2024 8.45 AM
root / linksafe
0755
request
--
17 Jul 2024 8.45 AM
root / linksafe
0755
request_set
--
17 Jul 2024 8.45 AM
root / linksafe
0755
resolver
--
17 Jul 2024 8.45 AM
root / linksafe
0755
security
--
17 Jul 2024 8.45 AM
root / linksafe
0755
source
--
17 Jul 2024 8.45 AM
root / linksafe
0755
ssl_certs
--
26 Jun 2024 1.55 PM
root / linksafe
0755
tsort
--
26 Jun 2024 1.55 PM
root / linksafe
0755
util
--
17 Jul 2024 8.45 AM
root / linksafe
0755
available_set.rb
3.013 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
basic_specification.rb
7.703 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
bundler_version_finder.rb
3.041 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
command.rb
15.911 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
command_manager.rb
5.094 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
compatibility.rb
0.998 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
config_file.rb
13.282 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
defaults.rb
7.059 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
dependency.rb
8.597 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
dependency_installer.rb
10.221 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
dependency_list.rb
5.545 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
deprecate.rb
3.444 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
doctor.rb
3.178 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
errors.rb
4.65 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
exceptions.rb
6.347 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
ext.rb
0.449 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
gem_runner.rb
1.901 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
gemcutter_utilities.rb
7.627 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
indexer.rb
10.85 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
install_default_message.rb
0.34 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
install_message.rb
0.314 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
install_update_options.rb
6.305 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
installer.rb
26.401 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
installer_uninstaller_utils.rb
0.755 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
local_remote_options.rb
3.562 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
mock_gem_ui.rb
1.379 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
name_tuple.rb
2.401 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
openssl.rb
0.122 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
optparse.rb
0.07 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
package.rb
17.173 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
package_task.rb
3.793 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
path_support.rb
1.88 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
platform.rb
6.654 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
psych_additions.rb
0.293 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
psych_tree.rb
0.775 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
query_utils.rb
8.608 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
rdoc.rb
0.226 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
remote_fetcher.rb
9.258 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
request.rb
8.618 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
request_set.rb
11.252 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
requirement.rb
6.908 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
resolver.rb
9.646 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
s3_uri_signer.rb
5.907 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
safe_yaml.rb
1.503 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
security.rb
22.401 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
security_option.rb
1.058 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
server.rb
22.867 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
source.rb
5.701 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
source_list.rb
2.518 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
spec_fetcher.rb
6.54 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
specification.rb
70.074 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
specification_policy.rb
13.122 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
stub_specification.rb
4.74 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
text.rb
1.85 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
tsort.rb
0.064 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
uninstaller.rb
10.223 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
uri.rb
2.121 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
uri_formatter.rb
0.763 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
user_interaction.rb
13.114 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
util.rb
2.5 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
validator.rb
3.648 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
version.rb
12.439 KB
26 Jun 2024 1.55 PM
root / linksafe
0644
version_option.rb
2.208 KB
26 Jun 2024 1.55 PM
root / linksafe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF