rubygems-update 3.3.23 → 3.3.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (89) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +16 -0
  3. data/Manifest.txt +0 -1
  4. data/bundler/CHANGELOG.md +23 -0
  5. data/bundler/lib/bundler/build_metadata.rb +2 -2
  6. data/bundler/lib/bundler/definition.rb +11 -29
  7. data/bundler/lib/bundler/endpoint_specification.rb +4 -0
  8. data/bundler/lib/bundler/gem_helpers.rb +0 -1
  9. data/bundler/lib/bundler/index.rb +0 -1
  10. data/bundler/lib/bundler/injector.rb +1 -1
  11. data/bundler/lib/bundler/lazy_specification.rb +8 -14
  12. data/bundler/lib/bundler/man/bundle-add.1 +1 -1
  13. data/bundler/lib/bundler/man/bundle-binstubs.1 +1 -1
  14. data/bundler/lib/bundler/man/bundle-cache.1 +1 -1
  15. data/bundler/lib/bundler/man/bundle-check.1 +1 -1
  16. data/bundler/lib/bundler/man/bundle-clean.1 +1 -1
  17. data/bundler/lib/bundler/man/bundle-config.1 +1 -1
  18. data/bundler/lib/bundler/man/bundle-console.1 +1 -1
  19. data/bundler/lib/bundler/man/bundle-doctor.1 +1 -1
  20. data/bundler/lib/bundler/man/bundle-exec.1 +1 -1
  21. data/bundler/lib/bundler/man/bundle-gem.1 +1 -1
  22. data/bundler/lib/bundler/man/bundle-help.1 +1 -1
  23. data/bundler/lib/bundler/man/bundle-info.1 +1 -1
  24. data/bundler/lib/bundler/man/bundle-init.1 +1 -1
  25. data/bundler/lib/bundler/man/bundle-inject.1 +1 -1
  26. data/bundler/lib/bundler/man/bundle-install.1 +1 -1
  27. data/bundler/lib/bundler/man/bundle-list.1 +1 -1
  28. data/bundler/lib/bundler/man/bundle-lock.1 +1 -1
  29. data/bundler/lib/bundler/man/bundle-open.1 +1 -1
  30. data/bundler/lib/bundler/man/bundle-outdated.1 +1 -1
  31. data/bundler/lib/bundler/man/bundle-platform.1 +1 -1
  32. data/bundler/lib/bundler/man/bundle-plugin.1 +1 -1
  33. data/bundler/lib/bundler/man/bundle-pristine.1 +1 -1
  34. data/bundler/lib/bundler/man/bundle-remove.1 +1 -1
  35. data/bundler/lib/bundler/man/bundle-show.1 +1 -1
  36. data/bundler/lib/bundler/man/bundle-update.1 +1 -1
  37. data/bundler/lib/bundler/man/bundle-version.1 +1 -1
  38. data/bundler/lib/bundler/man/bundle-viz.1 +1 -1
  39. data/bundler/lib/bundler/man/bundle.1 +1 -1
  40. data/bundler/lib/bundler/man/gemfile.5 +23 -12
  41. data/bundler/lib/bundler/man/gemfile.5.ronn +23 -13
  42. data/bundler/lib/bundler/remote_specification.rb +6 -2
  43. data/bundler/lib/bundler/resolver/base.rb +1 -1
  44. data/bundler/lib/bundler/resolver/spec_group.rb +22 -44
  45. data/bundler/lib/bundler/resolver.rb +24 -65
  46. data/bundler/lib/bundler/shared_helpers.rb +1 -2
  47. data/bundler/lib/bundler/version.rb +1 -1
  48. data/bundler/lib/bundler.rb +0 -1
  49. data/lib/rubygems/core_ext/kernel_warn.rb +1 -1
  50. data/lib/rubygems/request_set/gem_dependency_api.rb +1 -1
  51. data/lib/rubygems.rb +1 -1
  52. data/rubygems-update.gemspec +1 -1
  53. data/test/rubygems/alternate_cert.pem +14 -14
  54. data/test/rubygems/alternate_cert_32.pem +15 -15
  55. data/test/rubygems/alternate_key.pem +25 -25
  56. data/test/rubygems/child_cert.pem +15 -16
  57. data/test/rubygems/child_cert_32.pem +15 -16
  58. data/test/rubygems/child_key.pem +25 -25
  59. data/test/rubygems/encrypted_private_key.pem +26 -26
  60. data/test/rubygems/expired_cert.pem +15 -15
  61. data/test/rubygems/future_cert.pem +15 -15
  62. data/test/rubygems/future_cert_32.pem +15 -15
  63. data/test/rubygems/grandchild_cert.pem +15 -16
  64. data/test/rubygems/grandchild_cert_32.pem +15 -16
  65. data/test/rubygems/grandchild_key.pem +25 -25
  66. data/test/rubygems/invalid_issuer_cert.pem +16 -16
  67. data/test/rubygems/invalid_issuer_cert_32.pem +16 -16
  68. data/test/rubygems/invalid_key.pem +25 -25
  69. data/test/rubygems/invalid_signer_cert.pem +15 -15
  70. data/test/rubygems/invalid_signer_cert_32.pem +15 -15
  71. data/test/rubygems/invalidchild_cert.pem +15 -16
  72. data/test/rubygems/invalidchild_cert_32.pem +15 -16
  73. data/test/rubygems/invalidchild_key.pem +25 -25
  74. data/test/rubygems/private_key.pem +25 -25
  75. data/test/rubygems/public_cert.pem +16 -16
  76. data/test/rubygems/public_cert_32.pem +15 -15
  77. data/test/rubygems/public_key.pem +7 -7
  78. data/test/rubygems/test_gem_ext_cargo_builder/custom_name/Cargo.lock +6 -6
  79. data/test/rubygems/test_gem_ext_cargo_builder/custom_name/Cargo.toml +1 -1
  80. data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/Cargo.lock +6 -6
  81. data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/Cargo.toml +1 -1
  82. data/test/rubygems/test_gem_request_set_gem_dependency_api.rb +2 -2
  83. data/test/rubygems/test_gem_security.rb +5 -5
  84. data/test/rubygems/test_gem_security_signer.rb +6 -6
  85. data/test/rubygems/test_gem_source_git.rb +5 -0
  86. data/test/rubygems/wrong_key_cert.pem +15 -15
  87. data/test/rubygems/wrong_key_cert_32.pem +15 -15
  88. metadata +3 -4
  89. data/bundler/lib/bundler/dep_proxy.rb +0 -55
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f93f67c33abbbb5ea165e7d2682601f04071a38b9b513388d9a5e428dd683297
4
- data.tar.gz: 15847dcefd91515ea3057a9d1b3ff6da9ae367ee714cbdb43c5537d6fa5e7ea9
3
+ metadata.gz: 373bde3eddd5fd887fa27db0e32024485a807f04b0a68759ae08e9a0e745d6af
4
+ data.tar.gz: 260a3ca9f5340e67b7eb17bb89a8d1a82932ad166c5eebd6894eb3777e835506
5
5
  SHA512:
6
- metadata.gz: 62659400aed8a1f03108d675fe35674430b1fa5bc2a990ef4bc78fa03072e853b077472a2af0ceace9f7972eb62d8d2c475f9a811f911402a068d28550c26b78
7
- data.tar.gz: 1ba9446a59bd88a30558850cf20d3b4fabae944e98ef6995e6dcdb940444f41226e923d50f3fac9839f086fce076ad6a4810e1e035b3d0cabce021a4c92dde91
6
+ metadata.gz: b48bc85ca9166963bef3dc7e4494b8c51307cbb489b11f9f523ad41a5deb645a4ac4d9b7bae481fe8ab0cebc25c6457d5f003f6ab3970ee6180173c134dfaaca
7
+ data.tar.gz: 27d28091a109d977ab6a276a0244c54dbc7aab80075c11ef38fa38978693ba87629f429b484076f39257ca8caa04bc9eec6f1618d4af2b44ea793af2e74f49b0
data/CHANGELOG.md CHANGED
@@ -1,3 +1,19 @@
1
+ # 3.3.25 / 2022-11-02
2
+
3
+ ## Enhancements:
4
+
5
+ * Github source should default to secure protocol. Pull request #6026 by
6
+ jasonkarns
7
+ * Allow upcoming JRuby to pass keywords to Kernel#warn. Pull request #6002
8
+ by enebo
9
+ * Installs bundler 2.3.25 as a default gem.
10
+
11
+ # 3.3.24 / 2022-10-17
12
+
13
+ ## Enhancements:
14
+
15
+ * Installs bundler 2.3.24 as a default gem.
16
+
1
17
  # 3.3.23 / 2022-10-05
2
18
 
3
19
  ## Enhancements:
data/Manifest.txt CHANGED
@@ -57,7 +57,6 @@ bundler/lib/bundler/compact_index_client/updater.rb
57
57
  bundler/lib/bundler/constants.rb
58
58
  bundler/lib/bundler/current_ruby.rb
59
59
  bundler/lib/bundler/definition.rb
60
- bundler/lib/bundler/dep_proxy.rb
61
60
  bundler/lib/bundler/dependency.rb
62
61
  bundler/lib/bundler/deployment.rb
63
62
  bundler/lib/bundler/deprecate.rb
data/bundler/CHANGELOG.md CHANGED
@@ -1,3 +1,26 @@
1
+ # 2.3.25 (November 2, 2022)
2
+
3
+ ## Bug fixes:
4
+
5
+ - Properly sort specs when materializing [#6015](https://github.com/rubygems/rubygems/pull/6015)
6
+ - Fix bad unfreeze recommendation [#6013](https://github.com/rubygems/rubygems/pull/6013)
7
+
8
+ ## Documentation:
9
+
10
+ - Bring docs for gemfile(5) manpage up to date [#6007](https://github.com/rubygems/rubygems/pull/6007)
11
+ - Fix `github` DSL docs to mention they use https protocol over git under the hood [#5993](https://github.com/rubygems/rubygems/pull/5993)
12
+
13
+ # 2.3.24 (October 17, 2022)
14
+
15
+ ## Enhancements:
16
+
17
+ - Only add extra resolver spec group for Ruby platform when needed [#5698](https://github.com/rubygems/rubygems/pull/5698)
18
+ - Fix little UI issue when bundler shows duplicated gems in a list [#5965](https://github.com/rubygems/rubygems/pull/5965)
19
+
20
+ ## Bug fixes:
21
+
22
+ - Fix incorrect materialization on Windows [#5975](https://github.com/rubygems/rubygems/pull/5975)
23
+
1
24
  # 2.3.23 (October 5, 2022)
2
25
 
3
26
  ## Enhancements:
@@ -4,8 +4,8 @@ module Bundler
4
4
  # Represents metadata from when the Bundler gem was built.
5
5
  module BuildMetadata
6
6
  # begin ivars
7
- @built_at = "2022-10-05".freeze
8
- @git_commit_sha = "250d9d485d".freeze
7
+ @built_at = "2022-11-02".freeze
8
+ @git_commit_sha = "6b0b87b1ed".freeze
9
9
  @release = true
10
10
  # end ivars
11
11
 
@@ -139,8 +139,8 @@ module Bundler
139
139
  if @unlock[:conservative]
140
140
  @unlock[:gems] ||= @dependencies.map(&:name)
141
141
  else
142
- eager_unlock = expand_dependencies(@unlock[:gems] || [], true)
143
- @unlock[:gems] = @locked_specs.for(eager_unlock, false, platforms).map(&:name)
142
+ eager_unlock = (@unlock[:gems] || []).map {|name| Dependency.new(name, ">= 0") }
143
+ @unlock[:gems] = @locked_specs.for(eager_unlock, false, platforms).map(&:name).uniq
144
144
  end
145
145
 
146
146
  @dependency_changes = converge_dependencies
@@ -224,7 +224,7 @@ module Bundler
224
224
 
225
225
  def current_dependencies
226
226
  dependencies.select do |d|
227
- d.should_include? && !d.gem_platforms(@platforms).empty?
227
+ d.should_include? && !d.gem_platforms([generic_local_platform]).empty?
228
228
  end
229
229
  end
230
230
 
@@ -248,10 +248,9 @@ module Bundler
248
248
 
249
249
  def dependencies_for(groups)
250
250
  groups.map!(&:to_sym)
251
- deps = current_dependencies.reject do |d|
251
+ current_dependencies.reject do |d|
252
252
  (d.groups & groups).empty?
253
253
  end
254
- expand_dependencies(deps)
255
254
  end
256
255
 
257
256
  # Resolve all the dependencies specified in Gemfile. It ensures that
@@ -358,7 +357,7 @@ module Bundler
358
357
  "bundle config unset deployment"
359
358
  end
360
359
  msg << "\n\nIf this is a development machine, remove the #{Bundler.default_gemfile} " \
361
- "freeze \nby running `#{suggested_command}`."
360
+ "freeze \nby running `#{suggested_command}`." if suggested_command
362
361
  end
363
362
 
364
363
  added = []
@@ -474,17 +473,17 @@ module Bundler
474
473
  def resolver
475
474
  @resolver ||= begin
476
475
  last_resolve = converge_locked_specs
477
- remove_ruby_from_platforms_if_necessary!(dependencies)
476
+ remove_ruby_from_platforms_if_necessary!(current_dependencies)
478
477
  Resolver.new(source_requirements, last_resolve, gem_version_promoter, additional_base_requirements_for_resolve(last_resolve), platforms)
479
478
  end
480
479
  end
481
480
 
482
481
  def expanded_dependencies
483
- @expanded_dependencies ||= expand_dependencies(dependencies + metadata_dependencies, true)
482
+ @expanded_dependencies ||= dependencies + metadata_dependencies
484
483
  end
485
484
 
486
485
  def filter_specs(specs, deps)
487
- SpecSet.new(specs).for(expand_dependencies(deps, true), false, platforms)
486
+ SpecSet.new(specs).for(deps, false, platforms)
488
487
  end
489
488
 
490
489
  def materialize(dependencies)
@@ -578,8 +577,8 @@ module Bundler
578
577
  ].select(&:first).map(&:last).join(", ")
579
578
  end
580
579
 
581
- def pretty_dep(dep, source = false)
582
- SharedHelpers.pretty_dependency(dep, source)
580
+ def pretty_dep(dep)
581
+ SharedHelpers.pretty_dependency(dep)
583
582
  end
584
583
 
585
584
  # Check if the specs of the given source changed
@@ -792,23 +791,6 @@ module Bundler
792
791
  ]
793
792
  end
794
793
 
795
- def expand_dependencies(dependencies, remote = false)
796
- deps = []
797
- dependencies.each do |dep|
798
- dep = Dependency.new(dep, ">= 0") unless dep.respond_to?(:name)
799
- next unless remote || dep.current_platform?
800
- target_platforms = dep.gem_platforms(remote ? @platforms : [generic_local_platform])
801
- deps += expand_dependency_with_platforms(dep, target_platforms)
802
- end
803
- deps
804
- end
805
-
806
- def expand_dependency_with_platforms(dep, platforms)
807
- platforms.map do |p|
808
- DepProxy.get_proxy(dep, p)
809
- end
810
- end
811
-
812
794
  def source_requirements
813
795
  # Record the specs available in each gem's source, so that those
814
796
  # specs will be available later when the resolver knows where to
@@ -880,7 +862,7 @@ module Bundler
880
862
  Bundler.local_platform == Gem::Platform::RUBY ||
881
863
  !platforms.include?(Gem::Platform::RUBY) ||
882
864
  (@new_platform && platforms.last == Gem::Platform::RUBY) ||
883
- !@originally_locked_specs.incomplete_ruby_specs?(expand_dependencies(dependencies))
865
+ !@originally_locked_specs.incomplete_ruby_specs?(dependencies)
884
866
 
885
867
  remove_platform(Gem::Platform::RUBY)
886
868
  add_current_platform
@@ -26,6 +26,10 @@ module Bundler
26
26
  @platform
27
27
  end
28
28
 
29
+ def identifier
30
+ @__identifier ||= [name, version, platform.to_s]
31
+ end
32
+
29
33
  # needed for standalone, load required_paths from local gemspec
30
34
  # after the gem is installed
31
35
  def require_paths
@@ -5,7 +5,6 @@ module Bundler
5
5
  GENERIC_CACHE = { Gem::Platform::RUBY => Gem::Platform::RUBY } # rubocop:disable Style/MutableConstant
6
6
  GENERICS = [
7
7
  [Gem::Platform.new("java"), Gem::Platform.new("java")],
8
- [Gem::Platform.new("universal-java"), Gem::Platform.new("java")],
9
8
  [Gem::Platform.new("mswin32"), Gem::Platform.new("mswin32")],
10
9
  [Gem::Platform.new("mswin64"), Gem::Platform.new("mswin64")],
11
10
  [Gem::Platform.new("universal-mingw32"), Gem::Platform.new("universal-mingw32")],
@@ -71,7 +71,6 @@ module Bundler
71
71
  when Gem::Specification, RemoteSpecification, LazySpecification, EndpointSpecification then search_by_spec(query)
72
72
  when String then specs_by_name(query)
73
73
  when Gem::Dependency then search_by_dependency(query)
74
- when DepProxy then search_by_dependency(query.dep)
75
74
  else
76
75
  raise "You can't search for a #{query.inspect}."
77
76
  end
@@ -70,7 +70,7 @@ module Bundler
70
70
 
71
71
  show_warning("No gems were removed from the gemfile.") if deps.empty?
72
72
 
73
- deps.each {|dep| Bundler.ui.confirm "#{SharedHelpers.pretty_dependency(dep, false)} was removed." }
73
+ deps.each {|dep| Bundler.ui.confirm "#{SharedHelpers.pretty_dependency(dep)} was removed." }
74
74
  end
75
75
 
76
76
  # Invalidate the cached Bundler.definition.
@@ -77,11 +77,9 @@ module Bundler
77
77
  source.local!
78
78
 
79
79
  candidates = if source.is_a?(Source::Path) || !ruby_platform_materializes_to_ruby_platform?
80
- target_platform = ruby_platform_materializes_to_ruby_platform? ? platform : Bundler.local_platform
80
+ target_platform = ruby_platform_materializes_to_ruby_platform? ? platform : local_platform
81
81
 
82
- source.specs.search(Dependency.new(name, version)).select do |spec|
83
- MatchPlatform.platforms_match?(spec.platform, target_platform)
84
- end
82
+ GemHelpers.select_best_platform_match(source.specs.search(Dependency.new(name, version)), target_platform)
85
83
  else
86
84
  source.specs.search(self)
87
85
  end
@@ -120,7 +118,7 @@ module Bundler
120
118
  end
121
119
 
122
120
  def identifier
123
- @__identifier ||= [name, version, platform_string]
121
+ @__identifier ||= [name, version, platform.to_s]
124
122
  end
125
123
 
126
124
  def git_version
@@ -128,13 +126,6 @@ module Bundler
128
126
  " #{source.revision[0..6]}"
129
127
  end
130
128
 
131
- protected
132
-
133
- def platform_string
134
- platform_string = platform.to_s
135
- platform_string == Index::RUBY ? Index::NULL : platform_string
136
- end
137
-
138
129
  private
139
130
 
140
131
  def to_ary
@@ -151,7 +142,8 @@ module Bundler
151
142
 
152
143
  #
153
144
  # For backwards compatibility with existing lockfiles, if the most specific
154
- # locked platform is RUBY, we keep the previous behaviour of resolving the
145
+ # locked platform is not a specific platform like x86_64-linux or
146
+ # universal-java-11, then we keep the previous behaviour of resolving the
155
147
  # best platform variant at materiliazation time. For previous bundler
156
148
  # versions (before 2.2.0) this was always the case (except when the lockfile
157
149
  # only included non-ruby platforms), but we're also keeping this behaviour
@@ -159,7 +151,9 @@ module Bundler
159
151
  # explicitly add a more specific platform.
160
152
  #
161
153
  def ruby_platform_materializes_to_ruby_platform?
162
- !Bundler.most_specific_locked_platform?(generic_local_platform) || force_ruby_platform || Bundler.settings[:force_ruby_platform]
154
+ generic_platform = generic_local_platform == Gem::Platform::JAVA ? Gem::Platform::JAVA : Gem::Platform::RUBY
155
+
156
+ !Bundler.most_specific_locked_platform?(generic_platform) || force_ruby_platform || Bundler.settings[:force_ruby_platform]
163
157
  end
164
158
  end
165
159
  end
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-ADD" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-ADD" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-add\fR \- Add gem to the Gemfile and run bundle install
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-BINSTUBS" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-BINSTUBS" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-binstubs\fR \- Install the binstubs of the listed gems
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-CACHE" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-CACHE" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-cache\fR \- Package your needed \fB\.gem\fR files into your application
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-CHECK" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-CHECK" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-check\fR \- Verifies if dependencies are satisfied by installed gems
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-CLEAN" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-CLEAN" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-clean\fR \- Cleans up unused gems in your bundler directory
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-CONFIG" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-CONFIG" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-config\fR \- Set bundler configuration options
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-CONSOLE" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-CONSOLE" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-console\fR \- Deprecated way to open an IRB session with the bundle pre\-loaded
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-DOCTOR" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-DOCTOR" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-doctor\fR \- Checks the bundle for common problems
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-EXEC" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-EXEC" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-exec\fR \- Execute a command in the context of the bundle
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-GEM" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-GEM" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-gem\fR \- Generate a project skeleton for creating a rubygem
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-HELP" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-HELP" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-help\fR \- Displays detailed help for each subcommand
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-INFO" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-INFO" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-info\fR \- Show information for the given gem in your bundle
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-INIT" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-INIT" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-init\fR \- Generates a Gemfile into the current working directory
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-INJECT" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-INJECT" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-inject\fR \- Add named gem(s) with version requirements to Gemfile
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-INSTALL" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-INSTALL" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-install\fR \- Install the dependencies specified in your Gemfile
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-LIST" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-LIST" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-list\fR \- List all the gems in the bundle
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-LOCK" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-LOCK" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-lock\fR \- Creates / Updates a lockfile without installing
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-OPEN" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-OPEN" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-open\fR \- Opens the source directory for a gem in your bundle
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-OUTDATED" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-OUTDATED" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-outdated\fR \- List installed gems with newer versions available
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-PLATFORM" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-PLATFORM" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-platform\fR \- Displays platform compatibility information
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-PLUGIN" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-PLUGIN" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-plugin\fR \- Manage Bundler plugins
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-PRISTINE" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-PRISTINE" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-pristine\fR \- Restores installed gems to their pristine condition
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-REMOVE" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-REMOVE" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-remove\fR \- Removes gems from the Gemfile
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-SHOW" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-SHOW" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-show\fR \- Shows all the gems in your bundle, or the path to a gem
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-UPDATE" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-UPDATE" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-update\fR \- Update your gems to the latest available versions
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-VERSION" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-VERSION" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-version\fR \- Prints Bundler version information
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE\-VIZ" "1" "September 2022" "" ""
4
+ .TH "BUNDLE\-VIZ" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\-viz\fR \- Generates a visual dependency graph for your Gemfile
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "BUNDLE" "1" "September 2022" "" ""
4
+ .TH "BUNDLE" "1" "October 2022" "" ""
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBbundle\fR \- Ruby Dependency Management