mirror of
https://github.com/ruby/ruby.git
synced 2025-08-26 06:25:31 +02:00
parent
f753961611
commit
998204882b
3 changed files with 9 additions and 9 deletions
|
@ -4,11 +4,11 @@ require_relative "plugin/api"
|
||||||
|
|
||||||
module Bundler
|
module Bundler
|
||||||
module Plugin
|
module Plugin
|
||||||
autoload :DSL, "bundler/plugin/dsl"
|
autoload :DSL, File.expand_path("plugin/dsl", __dir__)
|
||||||
autoload :Events, "bundler/plugin/events"
|
autoload :Events, File.expand_path("plugin/events", __dir__)
|
||||||
autoload :Index, "bundler/plugin/index"
|
autoload :Index, File.expand_path("plugin/index", __dir__)
|
||||||
autoload :Installer, "bundler/plugin/installer"
|
autoload :Installer, File.expand_path("plugin/installer", __dir__)
|
||||||
autoload :SourceList, "bundler/plugin/source_list"
|
autoload :SourceList, File.expand_path("plugin/source_list", __dir__)
|
||||||
|
|
||||||
class MalformattedPlugin < PluginError; end
|
class MalformattedPlugin < PluginError; end
|
||||||
class UndefinedCommandError < PluginError; end
|
class UndefinedCommandError < PluginError; end
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
require 'net/http'
|
require 'net/http'
|
||||||
require 'uri'
|
require 'uri'
|
||||||
require 'cgi' # for escaping
|
require 'cgi' # for escaping
|
||||||
require 'bundler/vendor/connection_pool/lib/connection_pool'
|
require_relative '../../../../connection_pool/lib/connection_pool'
|
||||||
|
|
||||||
begin
|
begin
|
||||||
require 'net/http/pipeline'
|
require 'net/http/pipeline'
|
||||||
|
@ -1197,6 +1197,6 @@ application:
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
require 'bundler/vendor/net-http-persistent/lib/net/http/persistent/connection'
|
require_relative 'persistent/connection'
|
||||||
require 'bundler/vendor/net-http-persistent/lib/net/http/persistent/pool'
|
require_relative 'persistent/pool'
|
||||||
|
|
||||||
|
|
|
@ -49,5 +49,5 @@ class Bundler::Persistent::Net::HTTP::Persistent::Pool < Bundler::ConnectionPool
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
require 'bundler/vendor/net-http-persistent/lib/net/http/persistent/timed_stack_multi'
|
require_relative 'timed_stack_multi'
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue