Class: Bundler::RubygemsIntegration
- Inherits:
-
Object
- Object
- Bundler::RubygemsIntegration
- Defined in:
- lib/bundler/rubygems_integration.rb
Constant Summary collapse
- EXT_LOCK =
Monitor.new
Class Method Summary collapse
Instance Method Summary collapse
- #add_to_load_path(paths) ⇒ Object
- #all_specs ⇒ Object
- #backport_ext_builder_monitor ⇒ Object
- #bin_path(gem, bin, ver) ⇒ Object
- #build(spec, skip_validation = false) ⇒ Object
- #build_args ⇒ Object
- #build_args=(args) ⇒ Object
- #build_gem(gem_dir, spec) ⇒ Object
- #clear_paths ⇒ Object
- #configuration ⇒ Object
- #correct_for_windows_path(path) ⇒ Object
- #default_stubs ⇒ Object
- #download_gem(spec, uri, path) ⇒ Object
- #ext_lock ⇒ Object
- #fetch_all_remote_specs(remote) ⇒ Object
- #fetch_specs(remote, name) ⇒ Object
- #find_name(name) ⇒ Object
- #gem_bindir ⇒ Object
- #gem_cache ⇒ Object
- #gem_dir ⇒ Object
- #gem_from_path(path, policy = nil) ⇒ Object
- #gem_path ⇒ Object
- #gem_remote_fetcher ⇒ Object
- #inflate(obj) ⇒ Object
-
#initialize ⇒ RubygemsIntegration
constructor
A new instance of RubygemsIntegration.
- #install_with_build_args(args) ⇒ Object
- #load_plugin_files(files) ⇒ Object
- #load_plugins ⇒ Object
- #loaded_gem_paths ⇒ Object
- #loaded_specs(name) ⇒ Object
- #mark_loaded(spec) ⇒ Object
- #marshal_spec_dir ⇒ Object
- #method_visibility(klass, method) ⇒ Object
- #path(obj) ⇒ Object
- #path_separator ⇒ Object
- #plain_specs ⇒ Object
- #plain_specs=(specs) ⇒ Object
- #platforms ⇒ Object
- #post_reset_hooks ⇒ Object
- #preserve_paths ⇒ Object
- #provides?(req_str) ⇒ Boolean
- #read_binary(path) ⇒ Object
- #redefine_method(klass, method, unbound_method = nil, &block) ⇒ Object
-
#replace_bin_path(specs_by_name) ⇒ Object
Used to make bin stubs that are not created by bundler work under bundler.
-
#replace_entrypoints(specs) ⇒ Object
Replace or hook into RubyGems to provide a bundlerized view of the world.
- #replace_gem(specs, specs_by_name) ⇒ Object
- #repository_subdirectories ⇒ Object
- #reset ⇒ Object
- #reverse_rubygems_kernel_mixin ⇒ Object
- #ruby_engine ⇒ Object
- #security_policies ⇒ Object
- #security_policy_keys ⇒ Object
- #set_installed_by_version(spec, installed_by_version = Gem::VERSION) ⇒ Object
- #sources ⇒ Object
- #sources=(val) ⇒ Object
- #spec_cache_dirs ⇒ Object
- #spec_default_gem?(spec) ⇒ Boolean
- #spec_extension_dir(spec) ⇒ Object
- #spec_from_gem(path, policy = nil) ⇒ Object
- #spec_matches_for_glob(spec, glob) ⇒ Object
- #spec_missing_extensions?(spec, default = true) ⇒ Boolean
- #stub_rubygems(specs) ⇒ Object
- #stub_set_spec(stub, spec) ⇒ Object
- #suffix_pattern ⇒ Object
- #ui=(obj) ⇒ Object
- #undo_replacements ⇒ Object
- #use_gemdeps(gemfile) ⇒ Object
- #user_home ⇒ Object
- #validate(spec) ⇒ Object
- #version ⇒ Object
- #with_build_args(args) ⇒ Object
Constructor Details
#initialize ⇒ RubygemsIntegration
Returns a new instance of RubygemsIntegration.
23 24 25 26 |
# File 'lib/bundler/rubygems_integration.rb', line 23 def initialize @replaced_methods = {} backport_ext_builder_monitor end |
Class Method Details
.provides?(req_str) ⇒ Boolean
19 20 21 |
# File 'lib/bundler/rubygems_integration.rb', line 19 def self.provides?(req_str) Gem::Requirement.new(req_str).satisfied_by?(version) end |
Instance Method Details
#add_to_load_path(paths) ⇒ Object
48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/bundler/rubygems_integration.rb', line 48 def add_to_load_path(paths) return Gem.add_to_load_path(*paths) if Gem.respond_to?(:add_to_load_path) if insert_index = Gem.load_path_insert_index # Gem directories must come after -I and ENV['RUBYLIB'] $LOAD_PATH.insert(insert_index, *paths) else # We are probably testing in core, -I and RUBYLIB don't apply $LOAD_PATH.unshift(*paths) end end |
#all_specs ⇒ Object
567 568 569 570 571 572 |
# File 'lib/bundler/rubygems_integration.rb', line 567 def all_specs require_relative "remote_specification" Gem::Specification.stubs.map do |stub| StubSpecification.from_stub(stub) end end |
#backport_ext_builder_monitor ⇒ Object
574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 |
# File 'lib/bundler/rubygems_integration.rb', line 574 def backport_ext_builder_monitor # So we can avoid requiring "rubygems/ext" in its entirety Gem.module_eval <<-RB, __FILE__, __LINE__ + 1 module Ext end RB require "rubygems/ext/builder" Gem::Ext::Builder.class_eval do unless const_defined?(:CHDIR_MONITOR) const_set(:CHDIR_MONITOR, EXT_LOCK) end remove_const(:CHDIR_MUTEX) if const_defined?(:CHDIR_MUTEX) const_set(:CHDIR_MUTEX, const_get(:CHDIR_MONITOR)) end end |
#bin_path(gem, bin, ver) ⇒ Object
222 223 224 |
# File 'lib/bundler/rubygems_integration.rb', line 222 def bin_path(gem, bin, ver) Gem.bin_path(gem, bin, ver) end |
#build(spec, skip_validation = false) ⇒ Object
550 551 552 553 |
# File 'lib/bundler/rubygems_integration.rb', line 550 def build(spec, skip_validation = false) require "rubygems/package" Gem::Package.build(spec, skip_validation) end |
#build_args ⇒ Object
36 37 38 |
# File 'lib/bundler/rubygems_integration.rb', line 36 def build_args Gem::Command.build_args end |
#build_args=(args) ⇒ Object
40 41 42 |
# File 'lib/bundler/rubygems_integration.rb', line 40 def build_args=(args) Gem::Command.build_args = args end |
#build_gem(gem_dir, spec) ⇒ Object
282 283 284 |
# File 'lib/bundler/rubygems_integration.rb', line 282 def build_gem(gem_dir, spec) build(spec) end |
#clear_paths ⇒ Object
218 219 220 |
# File 'lib/bundler/rubygems_integration.rb', line 218 def clear_paths Gem.clear_paths end |
#configuration ⇒ Object
123 124 125 126 127 128 129 130 131 132 133 |
# File 'lib/bundler/rubygems_integration.rb', line 123 def configuration require_relative "psyched_yaml" Gem.configuration rescue Gem::SystemExitException, LoadError => e Bundler.ui.error "#{e.class}: #{e.}" Bundler.ui.trace e raise rescue YamlLibrarySyntaxError => e raise YamlSyntaxError.new(e, "Your RubyGems configuration, which is " \ "usually located in ~/.gemrc, contains invalid YAML syntax.") end |
#correct_for_windows_path(path) ⇒ Object
149 150 151 152 153 154 155 156 157 158 159 |
# File 'lib/bundler/rubygems_integration.rb', line 149 def correct_for_windows_path(path) require "rubygems/util" if Gem::Util.respond_to?(:correct_for_windows_path) Gem::Util.correct_for_windows_path(path) elsif path[0].chr == "/" && path[1].chr =~ /[a-z]/i && path[2].chr == ":" path[1..-1] else path end end |
#default_stubs ⇒ Object
598 599 600 |
# File 'lib/bundler/rubygems_integration.rb', line 598 def default_stubs Gem::Specification.default_stubs("*.gemspec") end |
#download_gem(spec, uri, path) ⇒ Object
527 528 529 530 531 532 533 534 |
# File 'lib/bundler/rubygems_integration.rb', line 527 def download_gem(spec, uri, path) uri = Bundler.settings.mirror_for(uri) fetcher = gem_remote_fetcher fetcher.headers = { "X-Gemfile-Source" => spec.remote.original_uri.to_s } if spec.remote.original_uri Bundler::Retry.new("download gem from #{uri}").attempts do fetcher.download(spec, uri, path) end end |
#ext_lock ⇒ Object
248 249 250 |
# File 'lib/bundler/rubygems_integration.rb', line 248 def ext_lock EXT_LOCK end |
#fetch_all_remote_specs(remote) ⇒ Object
520 521 522 523 524 525 |
# File 'lib/bundler/rubygems_integration.rb', line 520 def fetch_all_remote_specs(remote) specs = fetch_specs(remote, "specs") pres = fetch_specs(remote, "prerelease_specs") || [] specs.concat(pres) end |
#fetch_specs(remote, name) ⇒ Object
509 510 511 512 513 514 515 516 517 518 |
# File 'lib/bundler/rubygems_integration.rb', line 509 def fetch_specs(remote, name) path = remote.uri.to_s + "#{name}.#{Gem.marshal_version}.gz" fetcher = gem_remote_fetcher fetcher.headers = { "X-Gemfile-Source" => remote.original_uri.to_s } if remote.original_uri string = fetcher.fetch_path(path) Bundler.load_marshal(string) rescue Gem::RemoteFetcher::FetchError => e # it's okay for prerelease to fail raise e unless name == "prerelease_specs" end |
#find_name(name) ⇒ Object
593 594 595 |
# File 'lib/bundler/rubygems_integration.rb', line 593 def find_name(name) Gem::Specification.stubs_for(name).map(&:to_spec) end |
#gem_bindir ⇒ Object
178 179 180 |
# File 'lib/bundler/rubygems_integration.rb', line 178 def gem_bindir Gem.bindir end |
#gem_cache ⇒ Object
202 203 204 |
# File 'lib/bundler/rubygems_integration.rb', line 202 def gem_cache gem_path.map {|p| File.("cache", p) } end |
#gem_dir ⇒ Object
174 175 176 |
# File 'lib/bundler/rubygems_integration.rb', line 174 def gem_dir Gem.dir end |
#gem_from_path(path, policy = nil) ⇒ Object
543 544 545 546 547 548 |
# File 'lib/bundler/rubygems_integration.rb', line 543 def gem_from_path(path, policy = nil) require "rubygems/package" p = Gem::Package.new(path) p.security_policy = policy if policy p end |
#gem_path ⇒ Object
186 187 188 |
# File 'lib/bundler/rubygems_integration.rb', line 186 def gem_path Gem.path end |
#gem_remote_fetcher ⇒ Object
536 537 538 539 540 541 |
# File 'lib/bundler/rubygems_integration.rb', line 536 def gem_remote_fetcher require "resolv" proxy = configuration[:http_proxy] dns = Resolv::DNS.new Gem::RemoteFetcher.new(proxy, dns) end |
#inflate(obj) ⇒ Object
143 144 145 146 147 |
# File 'lib/bundler/rubygems_integration.rb', line 143 def inflate(obj) require "rubygems/util" Gem::Util.inflate(obj) end |
#install_with_build_args(args) ⇒ Object
559 560 561 |
# File 'lib/bundler/rubygems_integration.rb', line 559 def install_with_build_args(args) yield end |
#load_plugin_files(files) ⇒ Object
240 241 242 |
# File 'lib/bundler/rubygems_integration.rb', line 240 def load_plugin_files(files) Gem.load_plugin_files(files) if Gem.respond_to?(:load_plugin_files) end |
#load_plugins ⇒ Object
236 237 238 |
# File 'lib/bundler/rubygems_integration.rb', line 236 def load_plugins Gem.load_plugins if Gem.respond_to?(:load_plugins) end |
#loaded_gem_paths ⇒ Object
231 232 233 234 |
# File 'lib/bundler/rubygems_integration.rb', line 231 def loaded_gem_paths loaded_gem_paths = Gem.loaded_specs.map {|_, s| s.full_require_paths } loaded_gem_paths.flatten end |
#loaded_specs(name) ⇒ Object
44 45 46 |
# File 'lib/bundler/rubygems_integration.rb', line 44 def loaded_specs(name) Gem.loaded_specs[name] end |
#mark_loaded(spec) ⇒ Object
60 61 62 63 64 65 66 67 |
# File 'lib/bundler/rubygems_integration.rb', line 60 def mark_loaded(spec) if spec.respond_to?(:activated=) current = Gem.loaded_specs[spec.name] current.activated = false if current spec.activated = true end Gem.loaded_specs[spec.name] = spec end |
#marshal_spec_dir ⇒ Object
214 215 216 |
# File 'lib/bundler/rubygems_integration.rb', line 214 def marshal_spec_dir Gem::MARSHAL_SPEC_DIR end |
#method_visibility(klass, method) ⇒ Object
479 480 481 482 483 484 485 486 487 |
# File 'lib/bundler/rubygems_integration.rb', line 479 def method_visibility(klass, method) if klass.private_method_defined?(method) :private elsif klass.protected_method_defined?(method) :protected else :public end end |
#path(obj) ⇒ Object
114 115 116 |
# File 'lib/bundler/rubygems_integration.rb', line 114 def path(obj) obj.to_s end |
#path_separator ⇒ Object
563 564 565 |
# File 'lib/bundler/rubygems_integration.rb', line 563 def path_separator Gem.path_separator end |
#plain_specs ⇒ Object
501 502 503 |
# File 'lib/bundler/rubygems_integration.rb', line 501 def plain_specs Gem::Specification._all end |
#plain_specs=(specs) ⇒ Object
505 506 507 |
# File 'lib/bundler/rubygems_integration.rb', line 505 def plain_specs=(specs) Gem::Specification.all = specs end |
#platforms ⇒ Object
118 119 120 121 |
# File 'lib/bundler/rubygems_integration.rb', line 118 def platforms return [Gem::Platform::RUBY] if Bundler.settings[:force_ruby_platform] Gem.platforms end |
#post_reset_hooks ⇒ Object
194 195 196 |
# File 'lib/bundler/rubygems_integration.rb', line 194 def post_reset_hooks Gem.post_reset_hooks end |
#preserve_paths ⇒ Object
226 227 228 229 |
# File 'lib/bundler/rubygems_integration.rb', line 226 def preserve_paths # this is a no-op outside of RubyGems 1.8 yield end |
#provides?(req_str) ⇒ Boolean
32 33 34 |
# File 'lib/bundler/rubygems_integration.rb', line 32 def provides?(req_str) self.class.provides?(req_str) end |
#read_binary(path) ⇒ Object
139 140 141 |
# File 'lib/bundler/rubygems_integration.rb', line 139 def read_binary(path) Gem.read_binary(path) end |
#redefine_method(klass, method, unbound_method = nil, &block) ⇒ Object
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 |
# File 'lib/bundler/rubygems_integration.rb', line 458 def redefine_method(klass, method, unbound_method = nil, &block) visibility = method_visibility(klass, method) begin if (instance_method = klass.instance_method(method)) && method != :initialize # doing this to ensure we also get private methods klass.send(:remove_method, method) end rescue NameError # method isn't defined nil end @replaced_methods[[method, klass]] = instance_method if unbound_method klass.send(:define_method, method, unbound_method) klass.send(visibility, method) elsif block klass.send(:define_method, method, &block) klass.send(visibility, method) end end |
#replace_bin_path(specs_by_name) ⇒ Object
Used to make bin stubs that are not created by bundler work under bundler. The new Gem.bin_path only considers gems in specs
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 |
# File 'lib/bundler/rubygems_integration.rb', line 357 def replace_bin_path(specs_by_name) gem_class = (class << Gem; self; end) redefine_method(gem_class, :find_spec_for_exe) do |gem_name, *args| exec_name = args.first raise ArgumentError, "you must supply exec_name" unless exec_name spec_with_name = specs_by_name[gem_name] matching_specs_by_exec_name = specs_by_name.values.select {|s| s.executables.include?(exec_name) } spec = matching_specs_by_exec_name.delete(spec_with_name) unless spec || !matching_specs_by_exec_name.empty? = "can't find executable #{exec_name} for gem #{gem_name}" if spec_with_name.nil? += ". #{gem_name} is not currently included in the bundle, " \ "perhaps you meant to add it to your #{Bundler.default_gemfile.basename}?" end raise Gem::Exception, end unless spec spec = matching_specs_by_exec_name.shift warn \ "Bundler is using a binstub that was created for a different gem (#{spec.name}).\n" \ "You should run `bundle binstub #{gem_name}` " \ "to work around a system/bundle conflict." end unless matching_specs_by_exec_name.empty? conflicting_names = matching_specs_by_exec_name.map(&:name).join(", ") warn \ "The `#{exec_name}` executable in the `#{spec.name}` gem is being loaded, but it's also present in other gems (#{conflicting_names}).\n" \ "If you meant to run the executable for another gem, make sure you use a project specific binstub (`bundle binstub <gem_name>`).\n" \ "If you plan to use multiple conflicting executables, generate binstubs for them and disambiguate their names." end spec end redefine_method(gem_class, :activate_bin_path) do |name, *args| exec_name = args.first return ENV["BUNDLE_BIN_PATH"] if exec_name == "bundle" # Copy of Rubygems activate_bin_path impl requirement = args.last spec = find_spec_for_exe name, exec_name, [requirement] gem_bin = File.join(spec.full_gem_path, spec.bindir, exec_name) gem_from_path_bin = File.join(File.dirname(spec.loaded_from), spec.bindir, exec_name) File.exist?(gem_bin) ? gem_bin : gem_from_path_bin end redefine_method(gem_class, :bin_path) do |name, *args| exec_name = args.first return ENV["BUNDLE_BIN_PATH"] if exec_name == "bundle" spec = find_spec_for_exe(name, *args) exec_name ||= spec.default_executable gem_bin = File.join(spec.full_gem_path, spec.bindir, exec_name) gem_from_path_bin = File.join(File.dirname(spec.loaded_from), spec.bindir, exec_name) File.exist?(gem_bin) ? gem_bin : gem_from_path_bin end end |
#replace_entrypoints(specs) ⇒ Object
Replace or hook into RubyGems to provide a bundlerized view of the world.
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 |
# File 'lib/bundler/rubygems_integration.rb', line 424 def replace_entrypoints(specs) specs_by_name = specs.reduce({}) do |h, s| h[s.name] = s h end Bundler.rubygems.default_stubs.each do |stub| default_spec = stub.to_spec default_spec_name = default_spec.name next if specs_by_name.key?(default_spec_name) specs << default_spec specs_by_name[default_spec_name] = default_spec end replace_gem(specs, specs_by_name) stub_rubygems(specs) replace_bin_path(specs_by_name) Gem.clear_paths end |
#replace_gem(specs, specs_by_name) ⇒ Object
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 |
# File 'lib/bundler/rubygems_integration.rb', line 309 def replace_gem(specs, specs_by_name) reverse_rubygems_kernel_mixin executables = nil kernel = (class << ::Kernel; self; end) [kernel, ::Kernel].each do |kernel_class| redefine_method(kernel_class, :gem) do |dep, *reqs| if executables && executables.include?(File.basename(caller.first.split(":").first)) break end reqs.pop if reqs.last.is_a?(Hash) unless dep.respond_to?(:name) && dep.respond_to?(:requirement) dep = Gem::Dependency.new(dep, reqs) end if spec = specs_by_name[dep.name] return true if dep.matches_spec?(spec) end = if spec.nil? "#{dep.name} is not part of the bundle." \ " Add it to your #{Bundler.default_gemfile.basename}." else "can't activate #{dep}, already activated #{spec.full_name}. " \ "Make sure all dependencies are added to Gemfile." end e = Gem::LoadError.new() e.name = dep.name if e.respond_to?(:requirement=) e.requirement = dep.requirement elsif e.respond_to?(:version_requirement=) e.version_requirement = dep.requirement end raise e end # backwards compatibility shim, see https://github.com/rubygems/bundler/issues/5102 kernel_class.send(:public, :gem) if Bundler.feature_flag.setup_makes_kernel_gem_public? end end |
#repository_subdirectories ⇒ Object
555 556 557 |
# File 'lib/bundler/rubygems_integration.rb', line 555 def repository_subdirectories Gem::REPOSITORY_SUBDIRECTORIES end |
#reset ⇒ Object
190 191 192 |
# File 'lib/bundler/rubygems_integration.rb', line 190 def reset Gem::Specification.reset end |
#reverse_rubygems_kernel_mixin ⇒ Object
299 300 301 302 303 304 305 306 307 |
# File 'lib/bundler/rubygems_integration.rb', line 299 def reverse_rubygems_kernel_mixin # Disable rubygems' gem activation system kernel = (class << ::Kernel; self; end) [kernel, ::Kernel].each do |k| if k.private_method_defined?(:gem_original_require) redefine_method(k, :require, k.instance_method(:gem_original_require)) end end end |
#ruby_engine ⇒ Object
135 136 137 |
# File 'lib/bundler/rubygems_integration.rb', line 135 def ruby_engine Gem.ruby_engine end |
#security_policies ⇒ Object
290 291 292 293 294 295 296 297 |
# File 'lib/bundler/rubygems_integration.rb', line 290 def security_policies @security_policies ||= begin require "rubygems/security" Gem::Security::Policies rescue LoadError, NameError {} end end |
#security_policy_keys ⇒ Object
286 287 288 |
# File 'lib/bundler/rubygems_integration.rb', line 286 def security_policy_keys %w[High Medium Low AlmostNo No].map {|level| "#{level}Security" } end |
#set_installed_by_version(spec, installed_by_version = Gem::VERSION) ⇒ Object
79 80 81 82 |
# File 'lib/bundler/rubygems_integration.rb', line 79 def set_installed_by_version(spec, installed_by_version = Gem::VERSION) return unless spec.respond_to?(:installed_by_version=) spec.installed_by_version = Gem::Version.create(installed_by_version) end |
#sources ⇒ Object
170 171 172 |
# File 'lib/bundler/rubygems_integration.rb', line 170 def sources Gem.sources end |
#sources=(val) ⇒ Object
161 162 163 164 165 166 167 168 |
# File 'lib/bundler/rubygems_integration.rb', line 161 def sources=(val) # Gem.configuration creates a new Gem::ConfigFile, which by default will read ~/.gemrc # If that file exists, its settings (including sources) will overwrite the values we # are about to set here. In order to avoid that, we force memoizing the config file now. configuration Gem.sources = val end |
#spec_cache_dirs ⇒ Object
206 207 208 209 210 211 212 |
# File 'lib/bundler/rubygems_integration.rb', line 206 def spec_cache_dirs @spec_cache_dirs ||= begin dirs = gem_path.map {|dir| File.join(dir, "specifications") } dirs << Gem.spec_cache_dir if Gem.respond_to?(:spec_cache_dir) # Not in RubyGems 2.0.3 or earlier dirs.uniq.select {|dir| File.directory? dir } end end |
#spec_default_gem?(spec) ⇒ Boolean
93 94 95 |
# File 'lib/bundler/rubygems_integration.rb', line 93 def spec_default_gem?(spec) spec.respond_to?(:default_gem?) && spec.default_gem? end |
#spec_extension_dir(spec) ⇒ Object
105 106 107 108 |
# File 'lib/bundler/rubygems_integration.rb', line 105 def spec_extension_dir(spec) return unless spec.respond_to?(:extension_dir) spec.extension_dir end |
#spec_from_gem(path, policy = nil) ⇒ Object
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 |
# File 'lib/bundler/rubygems_integration.rb', line 264 def spec_from_gem(path, policy = nil) require "rubygems/security" require_relative "psyched_yaml" gem_from_path(path, security_policies[policy]).spec rescue Gem::Package::FormatError raise GemspecError, "Could not read gem at #{path}. It may be corrupted." rescue Exception, Gem::Exception, Gem::Security::Exception => e # rubocop:disable Lint/RescueException if e.is_a?(Gem::Security::Exception) || e. =~ /unknown trust policy|unsigned gem/i || e. =~ /couldn't verify (meta)?data signature/i raise SecurityError, "The gem #{File.basename(path, ".gem")} can't be installed because " \ "the security policy didn't allow it, with the message: #{e.}" else raise e end end |
#spec_matches_for_glob(spec, glob) ⇒ Object
97 98 99 100 101 102 103 |
# File 'lib/bundler/rubygems_integration.rb', line 97 def spec_matches_for_glob(spec, glob) return spec.matches_for_glob(glob) if spec.respond_to?(:matches_for_glob) spec.load_paths.map do |lp| Dir["#{lp}/#{glob}#{suffix_pattern}"] end.flatten(1) end |
#spec_missing_extensions?(spec, default = true) ⇒ Boolean
84 85 86 87 88 89 90 91 |
# File 'lib/bundler/rubygems_integration.rb', line 84 def spec_missing_extensions?(spec, default = true) return spec.missing_extensions? if spec.respond_to?(:missing_extensions?) return false if spec_default_gem?(spec) return false if spec.extensions.empty? default end |
#stub_rubygems(specs) ⇒ Object
489 490 491 492 493 494 495 496 497 498 499 |
# File 'lib/bundler/rubygems_integration.rb', line 489 def stub_rubygems(specs) Gem::Specification.all = specs Gem.post_reset do Gem::Specification.all = specs end redefine_method((class << Gem; self; end), :finish_resolve) do |*| [] end end |
#stub_set_spec(stub, spec) ⇒ Object
110 111 112 |
# File 'lib/bundler/rubygems_integration.rb', line 110 def stub_set_spec(stub, spec) stub.instance_variable_set(:@spec, spec) end |
#suffix_pattern ⇒ Object
198 199 200 |
# File 'lib/bundler/rubygems_integration.rb', line 198 def suffix_pattern Gem.suffix_pattern end |
#ui=(obj) ⇒ Object
244 245 246 |
# File 'lib/bundler/rubygems_integration.rb', line 244 def ui=(obj) Gem::DefaultUserInteraction.ui = obj end |
#undo_replacements ⇒ Object
446 447 448 449 450 451 452 453 454 455 456 |
# File 'lib/bundler/rubygems_integration.rb', line 446 def undo_replacements @replaced_methods.each do |(sym, klass), method| redefine_method(klass, sym, method) end if Binding.public_method_defined?(:source_location) post_reset_hooks.reject! {|proc| proc.binding.source_location[0] == __FILE__ } else post_reset_hooks.reject! {|proc| proc.binding.eval("__FILE__") == __FILE__ } end @replaced_methods.clear end |
#use_gemdeps(gemfile) ⇒ Object
607 608 609 610 611 612 613 |
# File 'lib/bundler/rubygems_integration.rb', line 607 def use_gemdeps(gemfile) ENV["BUNDLE_GEMFILE"] ||= File.(gemfile) require_relative "gemdeps" runtime = Bundler.setup activated_spec_names = runtime.requested_specs.map(&:to_spec).sort_by(&:name) [Gemdeps.new(runtime), activated_spec_names] end |
#user_home ⇒ Object
182 183 184 |
# File 'lib/bundler/rubygems_integration.rb', line 182 def user_home Gem.user_home end |
#validate(spec) ⇒ Object
69 70 71 72 73 74 75 76 77 |
# File 'lib/bundler/rubygems_integration.rb', line 69 def validate(spec) Bundler.ui.silence { spec.validate(false) } rescue Gem::InvalidSpecificationException => e = "The gemspec at #{spec.loaded_from} is not valid. Please fix this gemspec.\n" \ "The validation error was '#{e.}'\n" raise Gem::InvalidSpecificationException.new() rescue Errno::ENOENT nil end |
#version ⇒ Object
28 29 30 |
# File 'lib/bundler/rubygems_integration.rb', line 28 def version self.class.version end |
#with_build_args(args) ⇒ Object
252 253 254 255 256 257 258 259 260 261 262 |
# File 'lib/bundler/rubygems_integration.rb', line 252 def with_build_args(args) ext_lock.synchronize do old_args = build_args begin self.build_args = args yield ensure self.build_args = old_args end end end |