PATH: //opt/alt/ruby31/share/gems/gems/bundler-2.3.27/lib/bundler
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 build_metadata.rb
↓
X
📄 capistrano.rb
↓
X
📁 cli/
X
📄 cli.rb
↓
X
📁 compact_index_client/
X
📄 compact_index_client.rb
↓
X
📄 constants.rb
↓
X
📄 current_ruby.rb
↓
X
📄 definition.rb
↓
X
📄 dependency.rb
↓
X
📄 deployment.rb
↓
X
📄 deprecate.rb
↓
X
📄 digest.rb
↓
X
📄 dsl.rb
↓
X
📄 endpoint_specification.rb
↓
X
📄 env.rb
↓
X
📄 environment_preserver.rb
↓
X
📄 errors.rb
↓
X
📄 feature_flag.rb
↓
X
📁 fetcher/
X
📄 fetcher.rb
↓
X
📄 friendly_errors.rb
↓
X
📄 gem_helper.rb
↓
X
📄 gem_helpers.rb
↓
X
📄 gem_tasks.rb
↓
X
📄 gem_version_promoter.rb
↓
X
📄 graph.rb
↓
X
📄 index.rb
↓
X
📄 injector.rb
↓
X
📄 inline.rb
↓
X
📁 installer/
X
📄 installer.rb
↓
X
📄 lazy_specification.rb
↓
X
📄 lockfile_generator.rb
↓
X
📄 lockfile_parser.rb
↓
X
📁 man/
X
📄 match_metadata.rb
↓
X
📄 match_platform.rb
↓
X
📄 match_remote_metadata.rb
↓
X
📄 mirror.rb
↓
X
📁 plugin/
X
📄 plugin.rb
↓
X
📄 process_lock.rb
↓
X
📄 remote_specification.rb
↓
X
📁 resolver/
X
📄 resolver.rb
↓
X
📄 retry.rb
↓
X
📄 ruby_dsl.rb
↓
X
📄 ruby_version.rb
↓
X
📄 rubygems_ext.rb
↓
X
📄 rubygems_gem_installer.rb
↓
X
📄 rubygems_integration.rb
↓
X
📄 runtime.rb
↓
X
📄 self_manager.rb
↓
X
📁 settings/
X
📄 settings.rb
↓
X
📄 setup.rb
↓
X
📄 shared_helpers.rb
↓
X
📄 similarity_detector.rb
↓
X
📁 source/
X
📄 source.rb
↓
X
📄 source_list.rb
↓
X
📄 source_map.rb
↓
X
📄 spec_set.rb
↓
X
📄 stub_specification.rb
↓
X
📁 templates/
X
📁 ui/
X
📄 ui.rb
↓
X
📄 uri_credentials_filter.rb
↓
X
📁 vendor/
X
📄 vendored_fileutils.rb
↓
X
📄 vendored_molinillo.rb
↓
X
📄 vendored_persistent.rb
↓
X
📄 vendored_thor.rb
↓
X
📄 vendored_tmpdir.rb
↓
X
📄 vendored_tsort.rb
↓
X
📄 vendored_uri.rb
↓
X
📄 version.rb
↓
X
📄 version_ranges.rb
↓
X
📄 vlad.rb
↓
X
📄 worker.rb
↓
X
📄 yaml_serializer.rb
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: source_list.rb
# frozen_string_literal: true module Bundler class SourceList attr_reader :path_sources, :git_sources, :plugin_sources, :global_path_source, :metadata_source def global_rubygems_source @global_rubygems_source ||= rubygems_aggregate_class.new("allow_local" => true) end def initialize @path_sources = [] @git_sources = [] @plugin_sources = [] @global_rubygems_source = nil @global_path_source = nil @rubygems_sources = [] @metadata_source = Source::Metadata.new @merged_gem_lockfile_sections = false end def merged_gem_lockfile_sections? @merged_gem_lockfile_sections end def merged_gem_lockfile_sections!(replacement_source) @merged_gem_lockfile_sections = true @global_rubygems_source = replacement_source end def aggregate_global_source? global_rubygems_source.multiple_remotes? end def implicit_global_source? global_rubygems_source.no_remotes? end def add_path_source(options = {}) if options["gemspec"] add_source_to_list Source::Gemspec.new(options), path_sources else path_source = add_source_to_list Source::Path.new(options), path_sources @global_path_source ||= path_source if options["global"] path_source end end def add_git_source(options = {}) add_source_to_list(Source::Git.new(options), git_sources).tap do |source| warn_on_git_protocol(source) end end def add_rubygems_source(options = {}) new_source = Source::Rubygems.new(options) return @global_rubygems_source if @global_rubygems_source == new_source add_source_to_list new_source, @rubygems_sources end def add_plugin_source(source, options = {}) add_source_to_list Plugin.source(source).new(options), @plugin_sources end def add_global_rubygems_remote(uri) global_rubygems_source.add_remote(uri) global_rubygems_source end def default_source global_path_source || global_rubygems_source end def rubygems_sources non_global_rubygems_sources + [global_rubygems_source] end def non_global_rubygems_sources @rubygems_sources end def rubygems_remotes rubygems_sources.map(&:remotes).flatten.uniq end def all_sources path_sources + git_sources + plugin_sources + rubygems_sources + [metadata_source] end def non_default_explicit_sources all_sources - [default_source, metadata_source] end def get(source) source_list_for(source).find {|s| equivalent_source?(source, s) } end def get_with_fallback(source) get(source) || default_source end def lock_sources lock_other_sources + lock_rubygems_sources end def lock_other_sources (path_sources + git_sources + plugin_sources).sort_by(&:identifier) end def lock_rubygems_sources if merged_gem_lockfile_sections? [combine_rubygems_sources] else rubygems_sources.sort_by(&:identifier) end end # Returns true if there are changes def replace_sources!(replacement_sources) return false if replacement_sources.empty? @rubygems_sources, @path_sources, @git_sources, @plugin_sources = map_sources(replacement_sources) @global_rubygems_source = global_replacement_source(replacement_sources) different_sources?(lock_sources, replacement_sources) end # Returns true if there are changes def expired_sources?(replacement_sources) return false if replacement_sources.empty? lock_sources = dup_with_replaced_sources(replacement_sources).lock_sources different_sources?(lock_sources, replacement_sources) end def local_only! all_sources.each(&:local_only!) end def cached! all_sources.each(&:cached!) end def remote! all_sources.each(&:remote!) end private def dup_with_replaced_sources(replacement_sources) new_source_list = dup new_source_list.replace_sources!(replacement_sources) new_source_list end def map_sources(replacement_sources) [@rubygems_sources, @path_sources, @git_sources, @plugin_sources].map do |sources| sources.map do |source| replacement_sources.find {|s| s == source } || source end end end def global_replacement_source(replacement_sources) replacement_source = replacement_sources.find {|s| s == global_rubygems_source } return global_rubygems_source unless replacement_source replacement_source.local! replacement_source end def different_sources?(lock_sources, replacement_sources) !equivalent_sources?(lock_sources, replacement_sources) end def rubygems_aggregate_class Source::Rubygems end def add_source_to_list(source, list) list.unshift(source).uniq! source end def source_list_for(source) case source when Source::Git then git_sources when Source::Path then path_sources when Source::Rubygems then rubygems_sources when Plugin::API::Source then plugin_sources else raise ArgumentError, "Invalid source: #{source.inspect}" end end def combine_rubygems_sources Source::Rubygems.new("remotes" => rubygems_remotes) end def warn_on_git_protocol(source) return if Bundler.settings["git.allow_insecure"] if source.uri =~ /^git\:/ Bundler.ui.warn "The git source `#{source.uri}` uses the `git` protocol, " \ "which transmits data without encryption. Disable this warning with " \ "`bundle config set --local git.allow_insecure true`, or switch to the `https` " \ "protocol to keep your data secure." end end def equivalent_sources?(lock_sources, replacement_sources) lock_sources.sort_by(&:identifier) == replacement_sources.sort_by(&:identifier) end def equivalent_source?(source, other_source) source == other_source end end end
SIMPAN PERUBAHAN