bundler 1.15.2 → 1.17.3

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of bundler might be problematic. Click here for more details.

Files changed (286) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +302 -0
  3. data/README.md +17 -8
  4. data/bundler.gemspec +25 -9
  5. data/exe/bundle +1 -1
  6. data/exe/bundle_ruby +4 -3
  7. data/lib/bundler/build_metadata.rb +53 -0
  8. data/lib/bundler/capistrano.rb +5 -0
  9. data/lib/bundler/cli/add.rb +15 -6
  10. data/lib/bundler/cli/binstubs.rb +17 -9
  11. data/lib/bundler/cli/cache.rb +5 -4
  12. data/lib/bundler/cli/check.rb +3 -5
  13. data/lib/bundler/cli/clean.rb +5 -6
  14. data/lib/bundler/cli/common.rb +11 -2
  15. data/lib/bundler/cli/config.rb +2 -1
  16. data/lib/bundler/cli/console.rb +2 -1
  17. data/lib/bundler/cli/doctor.rb +48 -1
  18. data/lib/bundler/cli/exec.rb +6 -5
  19. data/lib/bundler/cli/gem.rb +13 -8
  20. data/lib/bundler/cli/info.rb +0 -1
  21. data/lib/bundler/cli/init.rb +18 -6
  22. data/lib/bundler/cli/inject.rb +1 -0
  23. data/lib/bundler/cli/install.rb +64 -61
  24. data/lib/bundler/cli/issue.rb +1 -1
  25. data/lib/bundler/cli/list.rb +58 -0
  26. data/lib/bundler/cli/lock.rb +0 -1
  27. data/lib/bundler/cli/open.rb +2 -2
  28. data/lib/bundler/cli/outdated.rb +20 -9
  29. data/lib/bundler/cli/package.rb +9 -6
  30. data/lib/bundler/cli/platform.rb +1 -0
  31. data/lib/bundler/cli/plugin.rb +1 -0
  32. data/lib/bundler/cli/pristine.rb +20 -6
  33. data/lib/bundler/cli/remove.rb +18 -0
  34. data/lib/bundler/cli/show.rb +0 -1
  35. data/lib/bundler/cli/update.rb +35 -7
  36. data/lib/bundler/cli/viz.rb +1 -0
  37. data/lib/bundler/cli.rb +227 -89
  38. data/lib/bundler/compact_index_client/cache.rb +1 -2
  39. data/lib/bundler/compact_index_client/updater.rb +14 -4
  40. data/lib/bundler/compact_index_client.rb +1 -0
  41. data/lib/bundler/compatibility_guard.rb +14 -0
  42. data/lib/bundler/constants.rb +1 -0
  43. data/lib/bundler/current_ruby.rb +13 -5
  44. data/lib/bundler/definition.rb +192 -139
  45. data/lib/bundler/dep_proxy.rb +3 -1
  46. data/lib/bundler/dependency.rb +9 -9
  47. data/lib/bundler/deployment.rb +1 -1
  48. data/lib/bundler/deprecate.rb +15 -3
  49. data/lib/bundler/dsl.rb +115 -64
  50. data/lib/bundler/endpoint_specification.rb +10 -1
  51. data/lib/bundler/env.rb +90 -29
  52. data/lib/bundler/environment_preserver.rb +27 -6
  53. data/lib/bundler/errors.rb +1 -0
  54. data/lib/bundler/feature_flag.rb +46 -4
  55. data/lib/bundler/fetcher/base.rb +1 -0
  56. data/lib/bundler/fetcher/compact_index.rb +2 -11
  57. data/lib/bundler/fetcher/dependency.rb +2 -1
  58. data/lib/bundler/fetcher/downloader.rb +11 -5
  59. data/lib/bundler/fetcher/index.rb +3 -2
  60. data/lib/bundler/fetcher.rb +18 -11
  61. data/lib/bundler/friendly_errors.rb +6 -1
  62. data/lib/bundler/gem_helper.rb +19 -10
  63. data/lib/bundler/gem_helpers.rb +1 -0
  64. data/lib/bundler/gem_remote_fetcher.rb +1 -0
  65. data/lib/bundler/gem_tasks.rb +1 -0
  66. data/lib/bundler/gem_version_promoter.rb +17 -2
  67. data/lib/bundler/gemdeps.rb +1 -0
  68. data/lib/bundler/graph.rb +1 -0
  69. data/lib/bundler/index.rb +8 -8
  70. data/lib/bundler/injector.rb +192 -30
  71. data/lib/bundler/inline.rb +5 -7
  72. data/lib/bundler/installer/gem_installer.rb +11 -2
  73. data/lib/bundler/installer/parallel_installer.rb +78 -42
  74. data/lib/bundler/installer/standalone.rb +1 -0
  75. data/lib/bundler/installer.rb +138 -53
  76. data/lib/bundler/lazy_specification.rb +3 -2
  77. data/lib/bundler/lockfile_generator.rb +95 -0
  78. data/lib/bundler/lockfile_parser.rb +10 -4
  79. data/lib/bundler/match_platform.rb +1 -0
  80. data/lib/bundler/mirror.rb +8 -5
  81. data/lib/bundler/plugin/api/source.rb +9 -2
  82. data/lib/bundler/plugin/events.rb +61 -0
  83. data/lib/bundler/plugin/index.rb +7 -2
  84. data/lib/bundler/plugin/installer.rb +7 -6
  85. data/lib/bundler/plugin/source_list.rb +7 -8
  86. data/lib/bundler/plugin.rb +13 -5
  87. data/lib/bundler/process_lock.rb +24 -0
  88. data/lib/bundler/psyched_yaml.rb +10 -0
  89. data/lib/bundler/remote_specification.rb +1 -0
  90. data/lib/bundler/resolver/spec_group.rb +106 -0
  91. data/lib/bundler/resolver.rb +158 -195
  92. data/lib/bundler/retry.rb +1 -0
  93. data/lib/bundler/ruby_dsl.rb +1 -0
  94. data/lib/bundler/ruby_version.rb +2 -1
  95. data/lib/bundler/rubygems_ext.rb +5 -4
  96. data/lib/bundler/rubygems_gem_installer.rb +31 -1
  97. data/lib/bundler/rubygems_integration.rb +71 -32
  98. data/lib/bundler/runtime.rb +11 -9
  99. data/lib/bundler/settings/validator.rb +102 -0
  100. data/lib/bundler/settings.rb +200 -77
  101. data/lib/bundler/setup.rb +1 -0
  102. data/lib/bundler/shared_helpers.rb +131 -26
  103. data/lib/bundler/similarity_detector.rb +1 -0
  104. data/lib/bundler/source/gemspec.rb +1 -0
  105. data/lib/bundler/source/git/git_proxy.rb +21 -11
  106. data/lib/bundler/source/git.rb +24 -19
  107. data/lib/bundler/source/metadata.rb +62 -0
  108. data/lib/bundler/source/path/installer.rb +2 -0
  109. data/lib/bundler/source/path.rb +8 -8
  110. data/lib/bundler/source/rubygems/remote.rb +8 -2
  111. data/lib/bundler/source/rubygems.rb +161 -84
  112. data/lib/bundler/source.rb +36 -0
  113. data/lib/bundler/source_list.rb +75 -15
  114. data/lib/bundler/spec_set.rb +10 -5
  115. data/lib/bundler/ssl_certs/certificate_manager.rb +2 -1
  116. data/lib/bundler/stub_specification.rb +1 -0
  117. data/lib/bundler/templates/.document +1 -0
  118. data/lib/bundler/templates/Executable +12 -0
  119. data/lib/bundler/templates/Executable.bundler +105 -0
  120. data/lib/bundler/templates/Gemfile +1 -0
  121. data/lib/bundler/templates/gems.rb +8 -0
  122. data/lib/bundler/templates/newgem/README.md.tt +1 -1
  123. data/lib/bundler/templates/newgem/gitignore.tt +0 -1
  124. data/lib/bundler/templates/newgem/lib/newgem.rb.tt +1 -0
  125. data/lib/bundler/templates/newgem/newgem.gemspec.tt +12 -3
  126. data/lib/bundler/templates/newgem/rspec.tt +1 -0
  127. data/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +0 -2
  128. data/lib/bundler/templates/newgem/{.travis.yml.tt → travis.yml.tt} +2 -0
  129. data/lib/bundler/ui/rg_proxy.rb +1 -0
  130. data/lib/bundler/ui/shell.rb +17 -4
  131. data/lib/bundler/ui/silent.rb +1 -0
  132. data/lib/bundler/ui.rb +1 -0
  133. data/lib/bundler/uri_credentials_filter.rb +1 -0
  134. data/lib/bundler/vendor/fileutils/lib/fileutils.rb +1638 -0
  135. data/lib/bundler/vendor/molinillo/lib/molinillo/compatibility.rb +26 -0
  136. data/lib/bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb +7 -0
  137. data/lib/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb +1 -0
  138. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/action.rb +1 -0
  139. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +1 -0
  140. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +1 -0
  141. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +1 -0
  142. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +1 -0
  143. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb +1 -0
  144. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rb +1 -0
  145. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +1 -0
  146. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb +15 -4
  147. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +3 -2
  148. data/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +75 -7
  149. data/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +2 -1
  150. data/lib/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rb +1 -0
  151. data/lib/bundler/vendor/molinillo/lib/molinillo/modules/ui.rb +3 -1
  152. data/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +491 -148
  153. data/lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb +1 -0
  154. data/lib/bundler/vendor/molinillo/lib/molinillo/state.rb +8 -4
  155. data/lib/bundler/vendor/molinillo/lib/molinillo.rb +2 -0
  156. data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +1 -1
  157. data/lib/bundler/vendor/thor/lib/thor/actions/create_file.rb +1 -0
  158. data/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +1 -0
  159. data/lib/bundler/vendor/thor/lib/thor/actions/empty_directory.rb +9 -1
  160. data/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +45 -8
  161. data/lib/bundler/vendor/thor/lib/thor/actions/inject_into_file.rb +9 -3
  162. data/lib/bundler/vendor/thor/lib/thor/actions.rb +6 -3
  163. data/lib/bundler/vendor/thor/lib/thor/base.rb +27 -4
  164. data/lib/bundler/vendor/thor/lib/thor/command.rb +9 -7
  165. data/lib/bundler/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +12 -0
  166. data/lib/bundler/vendor/thor/lib/thor/group.rb +1 -1
  167. data/lib/bundler/vendor/thor/lib/thor/line_editor/basic.rb +2 -0
  168. data/lib/bundler/vendor/thor/lib/thor/parser/option.rb +5 -5
  169. data/lib/bundler/vendor/thor/lib/thor/parser/options.rb +6 -5
  170. data/lib/bundler/vendor/thor/lib/thor/runner.rb +6 -4
  171. data/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +10 -9
  172. data/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
  173. data/lib/bundler/vendor/thor/lib/thor.rb +25 -8
  174. data/lib/bundler/vendored_fileutils.rb +9 -0
  175. data/lib/bundler/vendored_molinillo.rb +1 -0
  176. data/lib/bundler/vendored_persistent.rb +35 -0
  177. data/lib/bundler/vendored_thor.rb +1 -0
  178. data/lib/bundler/version.rb +6 -2
  179. data/lib/bundler/version_ranges.rb +1 -0
  180. data/lib/bundler/vlad.rb +5 -0
  181. data/lib/bundler/worker.rb +1 -0
  182. data/lib/bundler/yaml_serializer.rb +3 -3
  183. data/lib/bundler.rb +86 -52
  184. data/man/bundle-add.1 +18 -3
  185. data/man/bundle-add.1.txt +26 -14
  186. data/man/bundle-add.ronn +13 -2
  187. data/man/bundle-binstubs.1 +11 -1
  188. data/man/bundle-binstubs.1.txt +33 -18
  189. data/man/bundle-binstubs.ronn +15 -1
  190. data/man/bundle-check.1 +4 -4
  191. data/man/bundle-check.1.txt +15 -14
  192. data/man/bundle-check.ronn +3 -3
  193. data/man/bundle-clean.1 +1 -1
  194. data/man/bundle-clean.1.txt +10 -10
  195. data/man/bundle-config.1 +129 -29
  196. data/man/bundle-config.1.txt +285 -174
  197. data/man/bundle-config.ronn +167 -88
  198. data/man/bundle-doctor.1 +44 -0
  199. data/man/bundle-doctor.1.txt +44 -0
  200. data/man/bundle-doctor.ronn +33 -0
  201. data/man/bundle-exec.1 +6 -3
  202. data/man/bundle-exec.1.txt +78 -71
  203. data/man/bundle-exec.ronn +10 -3
  204. data/man/bundle-gem.1 +3 -3
  205. data/man/bundle-gem.1.txt +40 -39
  206. data/man/bundle-gem.ronn +2 -1
  207. data/man/bundle-info.1 +1 -1
  208. data/man/bundle-info.1.txt +8 -8
  209. data/man/bundle-init.1 +9 -4
  210. data/man/bundle-init.1.txt +23 -13
  211. data/man/bundle-init.ronn +15 -4
  212. data/man/bundle-inject.1 +4 -4
  213. data/man/bundle-inject.1.txt +10 -10
  214. data/man/bundle-inject.ronn +3 -3
  215. data/man/bundle-install.1 +31 -28
  216. data/man/bundle-install.1.txt +205 -194
  217. data/man/bundle-install.ronn +44 -35
  218. data/man/bundle-list.1 +50 -0
  219. data/man/bundle-list.1.txt +43 -0
  220. data/man/bundle-list.ronn +33 -0
  221. data/man/bundle-lock.1 +1 -1
  222. data/man/bundle-lock.1.txt +47 -47
  223. data/man/bundle-lock.ronn +1 -1
  224. data/man/bundle-open.1 +1 -1
  225. data/man/bundle-open.1.txt +7 -7
  226. data/man/bundle-outdated.1 +7 -3
  227. data/man/bundle-outdated.1.txt +40 -36
  228. data/man/bundle-outdated.ronn +6 -2
  229. data/man/bundle-package.1 +6 -3
  230. data/man/bundle-package.1.txt +44 -39
  231. data/man/bundle-package.ronn +7 -2
  232. data/man/bundle-platform.1 +1 -1
  233. data/man/bundle-platform.1.txt +13 -13
  234. data/man/bundle-pristine.1 +21 -3
  235. data/man/bundle-pristine.1.txt +33 -10
  236. data/man/bundle-pristine.ronn +24 -3
  237. data/man/bundle-remove.1 +31 -0
  238. data/man/bundle-remove.1.txt +34 -0
  239. data/man/bundle-remove.ronn +23 -0
  240. data/man/bundle-show.1 +3 -3
  241. data/man/bundle-show.1.txt +14 -12
  242. data/man/bundle-show.ronn +3 -2
  243. data/man/bundle-update.1 +13 -9
  244. data/man/bundle-update.1.txt +133 -130
  245. data/man/bundle-update.ronn +21 -17
  246. data/man/bundle-viz.1 +7 -7
  247. data/man/bundle-viz.1.txt +17 -15
  248. data/man/bundle-viz.ronn +6 -6
  249. data/man/bundle.1 +31 -23
  250. data/man/bundle.1.txt +63 -57
  251. data/man/bundle.ronn +35 -29
  252. data/man/gemfile.5 +44 -8
  253. data/man/gemfile.5.ronn +54 -8
  254. data/man/gemfile.5.txt +218 -165
  255. data/man/index.txt +25 -15
  256. metadata +36 -36
  257. data/.codeclimate.yml +0 -25
  258. data/.gitignore +0 -18
  259. data/.rspec +0 -3
  260. data/.rubocop.yml +0 -131
  261. data/.rubocop_todo.yml +0 -418
  262. data/.travis.yml +0 -122
  263. data/CODE_OF_CONDUCT.md +0 -42
  264. data/CONTRIBUTING.md +0 -17
  265. data/Rakefile +0 -338
  266. data/bin/rake +0 -19
  267. data/bin/rspec +0 -15
  268. data/bin/rubocop +0 -17
  269. data/bin/with_rubygems +0 -39
  270. data/doc/README.md +0 -30
  271. data/doc/TROUBLESHOOTING.md +0 -64
  272. data/doc/contributing/BUG_TRIAGE.md +0 -36
  273. data/doc/contributing/COMMUNITY.md +0 -13
  274. data/doc/contributing/GETTING_HELP.md +0 -11
  275. data/doc/contributing/HOW_YOU_CAN_HELP.md +0 -27
  276. data/doc/contributing/ISSUES.md +0 -51
  277. data/doc/contributing/README.md +0 -38
  278. data/doc/development/NEW_FEATURES.md +0 -10
  279. data/doc/development/PULL_REQUESTS.md +0 -40
  280. data/doc/development/README.md +0 -19
  281. data/doc/development/RELEASING.md +0 -9
  282. data/doc/development/SETUP.md +0 -27
  283. data/doc/documentation/README.md +0 -29
  284. data/doc/documentation/VISION.md +0 -26
  285. data/doc/documentation/WRITING.md +0 -54
  286. data/task/release.rake +0 -116
data/man/gemfile.5.txt CHANGED
@@ -2,24 +2,24 @@ GEMFILE(5) GEMFILE(5)
2
2
 
3
3
 
4
4
 
5
- 1mNAME0m
6
- 1mGemfile 22m- A format for describing gem dependencies for Ruby programs
5
+ NAME
6
+ Gemfile - A format for describing gem dependencies for Ruby programs
7
7
 
8
- 1mSYNOPSIS0m
9
- A 1mGemfile 22mdescribes the gem dependencies required to execute associated
8
+ SYNOPSIS
9
+ A Gemfile describes the gem dependencies required to execute associated
10
10
  Ruby code.
11
11
 
12
- Place the 1mGemfile 22min the root of the directory containing the associ-
13
- ated code. For instance, in a Rails application, place the 1mGemfile 22min
14
- the same directory as the 1mRakefile22m.
12
+ Place the Gemfile in the root of the directory containing the associ-
13
+ ated code. For instance, in a Rails application, place the Gemfile in
14
+ the same directory as the Rakefile.
15
15
 
16
- 1mSYNTAX0m
17
- A 1mGemfile 22mis evaluated as Ruby code, in a context which makes available
16
+ SYNTAX
17
+ A Gemfile is evaluated as Ruby code, in a context which makes available
18
18
  a number of methods used to describe the gem requirements.
19
19
 
20
- 1mGLOBAL SOURCES0m
21
- At the top of the 1mGemfile22m, add a line for the 1mRubygems 22msource that con-
22
- tains the gems listed in the 1mGemfile22m.
20
+ GLOBAL SOURCES
21
+ At the top of the Gemfile, add a line for the Rubygems source that con-
22
+ tains the gems listed in the Gemfile.
23
23
 
24
24
 
25
25
 
@@ -28,20 +28,20 @@ GEMFILE(5) GEMFILE(5)
28
28
 
29
29
 
30
30
  It is possible, but not recommended as of Bundler 1.7, to add multiple
31
- global 1msource 22mlines. Each of these 1msource22ms 1mMUST 22mbe a valid Rubygems
31
+ global source lines. Each of these sources MUST be a valid Rubygems
32
32
  repository.
33
33
 
34
34
  Sources are checked for gems following the heuristics described in
35
- 4mSOURCE24m 4mPRIORITY24m. If a gem is found in more than one global source,
35
+ SOURCE PRIORITY. If a gem is found in more than one global source,
36
36
  Bundler will print a warning after installing the gem indicating which
37
37
  source was used, and listing the other sources where the gem is avail-
38
38
  able. A specific source can be selected for gems that need to use a
39
- non-standard repository, suppressing this warning, by using the 1m:source0m
40
- option or a 1msource 22mblock.
39
+ non-standard repository, suppressing this warning, by using the :source
40
+ option or a source block.
41
41
 
42
- 1mCREDENTIALS0m
42
+ CREDENTIALS
43
43
  Some gem sources require a username and password. Use bundle config(1)
44
- 4mbundle-config.1.html24m to set the username and password for any of the
44
+ bundle-config.1.html to set the username and password for any of the
45
45
  sources that need it. The command must be run once on each computer
46
46
  that will install the Gemfile, but this keeps the credentials from
47
47
  being stored in plain text in version control.
@@ -62,17 +62,18 @@ GEMFILE(5) GEMFILE(5)
62
62
 
63
63
 
64
64
  Credentials in the source URL will take precedence over credentials set
65
- using 1mconfig22m.
65
+ using config.
66
66
 
67
- 1mRUBY0m
67
+ RUBY
68
68
  If your application requires a specific Ruby version or engine, specify
69
- your requirements using the 1mruby 22mmethod, with the following arguments.
70
- All parameters are 1mOPTIONAL 22munless otherwise specified.
69
+ your requirements using the ruby method, with the following arguments.
70
+ All parameters are OPTIONAL unless otherwise specified.
71
71
 
72
- 1mVERSION (required)0m
72
+ VERSION (required)
73
73
  The version of Ruby that your application requires. If your application
74
- requires an alternate Ruby engine, such as JRuby or Rubinius, this
75
- should be the Ruby version that the engine is compatible with.
74
+ requires an alternate Ruby engine, such as JRuby, Rubinius or Truf-
75
+ fleRuby, this should be the Ruby version that the engine is compatible
76
+ with.
76
77
 
77
78
 
78
79
 
@@ -80,14 +81,32 @@ GEMFILE(5) GEMFILE(5)
80
81
 
81
82
 
82
83
 
83
- 1mENGINE0m
84
- Each application 4mmay24m specify a Ruby engine. If an engine is specified,
85
- an engine version 4mmust24m also be specified.
84
+ ENGINE
85
+ Each application may specify a Ruby engine. If an engine is specified,
86
+ an engine version must also be specified.
86
87
 
87
- 1mENGINE VERSION0m
88
- Each application 4mmay24m specify a Ruby engine version. If an engine ver-
89
- sion is specified, an engine 4mmust24m also be specified. If the engine is
90
- "ruby" the engine version specified 4mmust24m match the Ruby version.
88
+ What exactly is an Engine? - A Ruby engine is an implementation of the
89
+ Ruby language.
90
+
91
+ o For background: the reference or original implementation of the
92
+ Ruby programming language is called Matz's Ruby Interpreter
93
+ https://en.wikipedia.org/wiki/Ruby_MRI, or MRI for short. This is
94
+ named after Ruby creator Yukihiro Matsumoto, also known as Matz.
95
+ MRI is also known as CRuby, because it is written in C. MRI is the
96
+ most widely used Ruby engine.
97
+
98
+ o Other implementations https://www.ruby-lang.org/en/about/ of Ruby
99
+ exist. Some of the more well-known implementations include Rubinius
100
+ https://rubinius.com/, and JRuby http://jruby.org/. Rubinius is an
101
+ alternative implementation of Ruby written in Ruby. JRuby is an
102
+ implementation of Ruby on the JVM, short for Java Virtual Machine.
103
+
104
+
105
+
106
+ ENGINE VERSION
107
+ Each application may specify a Ruby engine version. If an engine ver-
108
+ sion is specified, an engine must also be specified. If the engine is
109
+ "ruby" the engine version specified must match the Ruby version.
91
110
 
92
111
 
93
112
 
@@ -95,8 +114,8 @@ GEMFILE(5) GEMFILE(5)
95
114
 
96
115
 
97
116
 
98
- 1mPATCHLEVEL0m
99
- Each application 4mmay24m specify a Ruby patchlevel.
117
+ PATCHLEVEL
118
+ Each application may specify a Ruby patchlevel.
100
119
 
101
120
 
102
121
 
@@ -104,12 +123,12 @@ GEMFILE(5) GEMFILE(5)
104
123
 
105
124
 
106
125
 
107
- 1mGEMS0m
108
- Specify gem requirements using the 1mgem 22mmethod, with the following argu-
109
- ments. All parameters are 1mOPTIONAL 22munless otherwise specified.
126
+ GEMS
127
+ Specify gem requirements using the gem method, with the following argu-
128
+ ments. All parameters are OPTIONAL unless otherwise specified.
110
129
 
111
- 1mNAME (required)0m
112
- For each gem requirement, list a single 4mgem24m line.
130
+ NAME (required)
131
+ For each gem requirement, list a single gem line.
113
132
 
114
133
 
115
134
 
@@ -117,8 +136,8 @@ GEMFILE(5) GEMFILE(5)
117
136
 
118
137
 
119
138
 
120
- 1mVERSION0m
121
- Each 4mgem24m 1mMAY 22mhave one or more version specifiers.
139
+ VERSION
140
+ Each gem MAY have one or more version specifiers.
122
141
 
123
142
 
124
143
 
@@ -127,10 +146,10 @@ GEMFILE(5) GEMFILE(5)
127
146
 
128
147
 
129
148
 
130
- 1mREQUIRE AS0m
131
- Each 4mgem24m 1mMAY 22mspecify files that should be used when autorequiring via
132
- 1mBundler.require22m. You may pass an array with multiple files or 1mtrue 22mif
133
- file you want 1mrequired 22mhas same name as 4mgem24m or 1mfalse 22mto prevent any
149
+ REQUIRE AS
150
+ Each gem MAY specify files that should be used when autorequiring via
151
+ Bundler.require. You may pass an array with multiple files or true if
152
+ file you want required has same name as gem or false to prevent any
134
153
  file from being autorequired.
135
154
 
136
155
 
@@ -152,9 +171,9 @@ GEMFILE(5) GEMFILE(5)
152
171
 
153
172
 
154
173
 
155
- 1mGROUPS0m
156
- Each 4mgem24m 1mMAY 22mspecify membership in one or more groups. Any 4mgem24m that
157
- does not specify membership in any group is placed in the 1mdefault0m
174
+ GROUPS
175
+ Each gem MAY specify membership in one or more groups. Any gem that
176
+ does not specify membership in any group is placed in the default
158
177
  group.
159
178
 
160
179
 
@@ -164,8 +183,8 @@ GEMFILE(5) GEMFILE(5)
164
183
 
165
184
 
166
185
 
167
- The Bundler runtime allows its two main methods, 1mBundler.setup 22mand
168
- 1mBundler.require22m, to limit their impact to particular groups.
186
+ The Bundler runtime allows its two main methods, Bundler.setup and
187
+ Bundler.require, to limit their impact to particular groups.
169
188
 
170
189
 
171
190
 
@@ -184,8 +203,8 @@ GEMFILE(5) GEMFILE(5)
184
203
 
185
204
 
186
205
 
187
- The Bundler CLI allows you to specify a list of groups whose gems 1mbun-0m
188
- 1mdle install 22mshould not install with the 1m--without 22moption. To specify
206
+ The Bundler CLI allows you to specify a list of groups whose gems bun-
207
+ dle install should not install with the --without option. To specify
189
208
  multiple groups to ignore, specify a list of groups separated by spa-
190
209
  ces.
191
210
 
@@ -196,46 +215,49 @@ GEMFILE(5) GEMFILE(5)
196
215
 
197
216
 
198
217
 
199
- After running 1mbundle install --without test22m, bundler will remember that
218
+ After running bundle install --without test, bundler will remember that
200
219
  you excluded the test group in the last installation. The next time you
201
- run 1mbundle install22m, without any 1m--without option22m, bundler will recall
220
+ run bundle install, without any --without option, bundler will recall
202
221
  it.
203
222
 
204
- Also, calling 1mBundler.setup 22mwith no parameters, or calling 1mrequire0m
205
- 1m"bundler/setup" 22mwill setup all groups except for the ones you excluded
206
- via 1m--without 22m(since they are not available).
223
+ Also, calling Bundler.setup with no parameters, or calling require
224
+ "bundler/setup" will setup all groups except for the ones you excluded
225
+ via --without (since they are not available).
207
226
 
208
- Note that on 1mbundle install22m, bundler downloads and evaluates all gems,
227
+ Note that on bundle install, bundler downloads and evaluates all gems,
209
228
  in order to create a single canonical list of all of the required gems
210
229
  and their dependencies. This means that you cannot list different ver-
211
230
  sions of the same gems in different groups. For more details, see
212
- Understanding Bundler 4mhttp://bundler.io/rationale.html24m.
231
+ Understanding Bundler http://bundler.io/rationale.html.
213
232
 
214
- 1mPLATFORMS0m
233
+ PLATFORMS
215
234
  If a gem should only be used in a particular platform or set of plat-
216
235
  forms, you can specify them. Platforms are essentially identical to
217
- groups, except that you do not need to use the 1m--without 22minstall-time
236
+ groups, except that you do not need to use the --without install-time
218
237
  flag to exclude groups of gems for other platforms.
219
238
 
220
- There are a number of 1mGemfile 22mplatforms:
239
+ There are a number of Gemfile platforms:
221
240
 
222
- 1mruby 22mC Ruby (MRI) or Rubinius, but 1mNOT 22mWindows
241
+ ruby C Ruby (MRI), Rubinius or TruffleRuby, but NOT Windows
223
242
 
224
- 1mmri 22mSame as 4mruby24m, but not Rubinius
243
+ mri Same as ruby, but only C Ruby (MRI)
225
244
 
226
- 1mmingw 22mWindows 32 bit 'mingw32' platform (aka RubyInstaller)
245
+ mingw Windows 32 bit 'mingw32' platform (aka RubyInstaller)
227
246
 
228
- 1mx64_mingw0m
247
+ x64_mingw
229
248
  Windows 64 bit 'mingw32' platform (aka RubyInstaller x64)
230
249
 
231
- 1mrbx 22mSame as 4mruby24m, but only Rubinius (not MRI)
250
+ rbx Rubinius
251
+
252
+ jruby JRuby
232
253
 
233
- 1mjruby 22mJRuby
254
+ truffleruby
255
+ TruffleRuby
234
256
 
235
- 1mmswin 22mWindows
257
+ mswin Windows
236
258
 
237
259
  You can restrict further by platform and version for all platforms
238
- 4mexcept24m for 1mrbx22m, 1mjruby22m, and 1mmswin22m.
260
+ except for rbx, jruby, truffleruby and mswin.
239
261
 
240
262
  To specify a version in addition to a platform, append the version num-
241
263
  ber without the delimiter to the platform. For example, to specify that
@@ -249,13 +271,13 @@ GEMFILE(5) GEMFILE(5)
249
271
 
250
272
  The full list of platforms and supported versions includes:
251
273
 
252
- 1mruby 22m1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5
274
+ ruby 1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5
253
275
 
254
- 1mmri 22m1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5
276
+ mri 1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5
255
277
 
256
- 1mmingw 22m1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5
278
+ mingw 1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5
257
279
 
258
- 1mx64_mingw0m
280
+ x64_mingw
259
281
  2.0, 2.1, 2.2, 2.3, 2.4, 2.5
260
282
 
261
283
  As with groups, you can specify one or more platforms:
@@ -268,11 +290,11 @@ GEMFILE(5) GEMFILE(5)
268
290
 
269
291
 
270
292
 
271
- All operations involving groups (1mbundle install22m, 1mBundler.setup22m,
272
- 1mBundler.require22m) behave exactly the same as if any groups not matching
273
- the current platform were explicitly excluded.
293
+ All operations involving groups (bundle install bundle-install.1.html,
294
+ Bundler.setup, Bundler.require) behave exactly the same as if any
295
+ groups not matching the current platform were explicitly excluded.
274
296
 
275
- 1mSOURCE0m
297
+ SOURCE
276
298
  You can select an alternate Rubygems repository for a gem using the
277
299
  ':source' option.
278
300
 
@@ -289,47 +311,53 @@ GEMFILE(5) GEMFILE(5)
289
311
  Bundler will search for child dependencies of this gem by first looking
290
312
  in the source selected for the parent, but if they are not found there,
291
313
  it will fall back on global sources using the ordering described in
292
- 4mSOURCE24m 4mPRIORITY24m.
314
+ SOURCE PRIORITY.
293
315
 
294
316
  Selecting a specific source repository this way also suppresses the
295
- ambiguous gem warning described above in 4mGLOBAL24m 4mSOURCES24m 4m(#source)24m.
317
+ ambiguous gem warning described above in GLOBAL SOURCES (#source).
318
+
319
+ Using the :source option for an individual gem will also make that
320
+ source available as a possible global source for any other gems which
321
+ do not specify explicit sources. Thus, when adding gems with explicit
322
+ sources, it is recommended that you also ensure all other gems in the
323
+ Gemfile are using explicit sources.
296
324
 
297
- 1mGIT0m
325
+ GIT
298
326
  If necessary, you can specify that a gem is located at a particular git
299
- repository using the 1m:git 22mparameter. The repository can be accessed via
327
+ repository using the :git parameter. The repository can be accessed via
300
328
  several protocols:
301
329
 
302
- 1mHTTP(S)0m
330
+ HTTP(S)
303
331
  gem "rails", :git => "https://github.com/rails/rails.git"
304
332
 
305
- 1mSSH 22mgem "rails", :git => "git@github.com:rails/rails.git"
333
+ SSH gem "rails", :git => "git@github.com:rails/rails.git"
306
334
 
307
- 1mgit 22mgem "rails", :git => "git://github.com/rails/rails.git"
335
+ git gem "rails", :git => "git://github.com/rails/rails.git"
308
336
 
309
- If using SSH, the user that you use to run 1mbundle install MUST 22mhave the
310
- appropriate keys available in their 1m$HOME/.ssh22m.
337
+ If using SSH, the user that you use to run bundle install MUST have the
338
+ appropriate keys available in their $HOME/.ssh.
311
339
 
312
- 1mNOTE22m: 1mhttp:// 22mand 1mgit:// 22mURLs should be avoided if at all possible.
340
+ NOTE: http:// and git:// URLs should be avoided if at all possible.
313
341
  These protocols are unauthenticated, so a man-in-the-middle attacker
314
342
  can deliver malicious code and compromise your system. HTTPS and SSH
315
343
  are strongly preferred.
316
344
 
317
- The 1mgroup22m, 1mplatforms22m, and 1mrequire 22moptions are available and behave
345
+ The group, platforms, and require options are available and behave
318
346
  exactly the same as they would for a normal gem.
319
347
 
320
- A git repository 1mSHOULD 22mhave at least one file, at the root of the
321
- directory containing the gem, with the extension 1m.gemspec22m. This file
322
- 1mMUST 22mcontain a valid gem specification, as expected by the 1mgem build0m
348
+ A git repository SHOULD have at least one file, at the root of the
349
+ directory containing the gem, with the extension .gemspec. This file
350
+ MUST contain a valid gem specification, as expected by the gem build
323
351
  command.
324
352
 
325
- If a git repository does not have a 1m.gemspec22m, bundler will attempt to
353
+ If a git repository does not have a .gemspec, bundler will attempt to
326
354
  create one, but it will not contain any dependencies, executables, or C
327
355
  extension compilation instructions. As a result, it may fail to prop-
328
356
  erly integrate into your application.
329
357
 
330
- If a git repository does have a 1m.gemspec 22mfor the gem you attached it
358
+ If a git repository does have a .gemspec for the gem you attached it
331
359
  to, a version specifier, if provided, means that the git repository is
332
- only valid if the 1m.gemspec 22mspecifies a version matching the version
360
+ only valid if the .gemspec specifies a version matching the version
333
361
  specifier. If not, bundler will print a warning.
334
362
 
335
363
 
@@ -340,23 +368,35 @@ GEMFILE(5) GEMFILE(5)
340
368
 
341
369
 
342
370
 
343
- If a git repository does 1mnot 22mhave a 1m.gemspec 22mfor the gem you attached
344
- it to, a version specifier 1mMUST 22mbe provided. Bundler will use this ver-
345
- sion in the simple 1m.gemspec 22mit creates.
371
+ If a git repository does not have a .gemspec for the gem you attached
372
+ it to, a version specifier MUST be provided. Bundler will use this ver-
373
+ sion in the simple .gemspec it creates.
346
374
 
347
375
  Git repositories support a number of additional options.
348
376
 
349
- 1mbranch22m, 1mtag22m, and 1mref0m
350
- You 1mMUST 22monly specify at most one of these options. The default
351
- is 1m:branch => "master"0m
377
+ branch, tag, and ref
378
+ You MUST only specify at most one of these options. The default
379
+ is :branch => "master"
352
380
 
353
- 1msubmodules0m
354
- Specify 1m:submodules => true 22mto cause bundler to expand any sub-
355
- modules included in the git repository
381
+ For example:
356
382
 
357
- If a git repository contains multiple 1m.gemspecs22m, each 1m.gemspec 22mrepre-
358
- sents a gem located at the same place in the file system as the 1m.gem-0m
359
- 1mspec22m.
383
+ git "https://github.com/rails/rails.git", :branch => "5-0-sta-
384
+ ble" do
385
+
386
+ git "https://github.com/rails/rails.git", :tag => "v5.0.0" do
387
+
388
+ git "https://github.com/rails/rails.git", :ref => "4aded" do
389
+
390
+ submodules
391
+ For reference, a git submodule
392
+ https://git-scm.com/book/en/v2/Git-Tools-Submodules lets you
393
+ have another git repository within a subfolder of your reposi-
394
+ tory. Specify :submodules => true to cause bundler to expand any
395
+ submodules included in the git repository
396
+
397
+ If a git repository contains multiple .gemspecs, each .gemspec repre-
398
+ sents a gem located at the same place in the file system as the .gem-
399
+ spec.
360
400
 
361
401
 
362
402
 
@@ -371,13 +411,13 @@ GEMFILE(5) GEMFILE(5)
371
411
 
372
412
 
373
413
  To install a gem located in a git repository, bundler changes to the
374
- directory containing the gemspec, runs 1mgem build name.gemspec 22mand then
375
- installs the resulting gem. The 1mgem build 22mcommand, which comes standard
376
- with Rubygems, evaluates the 1m.gemspec 22min the context of the directory
414
+ directory containing the gemspec, runs gem build name.gemspec and then
415
+ installs the resulting gem. The gem build command, which comes standard
416
+ with Rubygems, evaluates the .gemspec in the context of the directory
377
417
  in which it is located.
378
418
 
379
- 1mGIT SOURCE0m
380
- A custom git source can be defined via the 1mgit_source 22mmethod. Provide
419
+ GIT SOURCE
420
+ A custom git source can be defined via the git_source method. Provide
381
421
  the source's name as an argument, and a block which receives a single
382
422
  argument and interpolates it into a string to return the full repo
383
423
  address:
@@ -397,9 +437,9 @@ GEMFILE(5) GEMFILE(5)
397
437
 
398
438
 
399
439
 
400
- 1mGITHUB0m
401
- 1mNOTE22m: This shorthand should be avoided until Bundler 2.0, since it cur-
402
- rently expands to an insecure 1mgit:// 22mURL. This allows a man-in-the-mid-
440
+ GITHUB
441
+ NOTE: This shorthand should be avoided until Bundler 2.0, since it cur-
442
+ rently expands to an insecure git:// URL. This allows a man-in-the-mid-
403
443
  dle attacker to compromise your system.
404
444
 
405
445
  If the git repository you want to use is hosted on GitHub and is pub-
@@ -423,10 +463,10 @@ GEMFILE(5) GEMFILE(5)
423
463
 
424
464
 
425
465
 
426
- Since the 1mgithub 22mmethod is a specialization of 1mgit_source22m, it accepts a
427
- 1m:branch 22mnamed argument.
466
+ Since the github method is a specialization of git_source, it accepts a
467
+ :branch named argument.
428
468
 
429
- 1mGIST0m
469
+ GIST
430
470
  If the git repository you want to use is hosted as a Github Gist and is
431
471
  public, you can use the :gist shorthand to specify the gist identifier
432
472
  (without the trailing ".git").
@@ -445,10 +485,10 @@ GEMFILE(5) GEMFILE(5)
445
485
 
446
486
 
447
487
 
448
- Since the 1mgist 22mmethod is a specialization of 1mgit_source22m, it accepts a
449
- 1m:branch 22mnamed argument.
488
+ Since the gist method is a specialization of git_source, it accepts a
489
+ :branch named argument.
450
490
 
451
- 1mBITBUCKET0m
491
+ BITBUCKET
452
492
  If the git repository you want to use is hosted on Bitbucket and is
453
493
  public, you can use the :bitbucket shorthand to specify the bitbucket
454
494
  username and repository name (without the trailing ".git"), separated
@@ -470,19 +510,19 @@ GEMFILE(5) GEMFILE(5)
470
510
 
471
511
 
472
512
 
473
- Since the 1mbitbucket 22mmethod is a specialization of 1mgit_source22m, it
474
- accepts a 1m:branch 22mnamed argument.
513
+ Since the bitbucket method is a specialization of git_source, it
514
+ accepts a :branch named argument.
475
515
 
476
- 1mPATH0m
516
+ PATH
477
517
  You can specify that a gem is located in a particular location on the
478
518
  file system. Relative paths are resolved relative to the directory con-
479
- taining the 1mGemfile22m.
519
+ taining the Gemfile.
480
520
 
481
- Similar to the semantics of the 1m:git 22moption, the 1m:path 22moption requires
482
- that the directory in question either contains a 1m.gemspec 22mfor the gem,
521
+ Similar to the semantics of the :git option, the :path option requires
522
+ that the directory in question either contains a .gemspec for the gem,
483
523
  or that you specify an explicit version that bundler should use.
484
524
 
485
- Unlike 1m:git22m, bundler does not compile C extensions for gems specified
525
+ Unlike :git, bundler does not compile C extensions for gems specified
486
526
  as paths.
487
527
 
488
528
 
@@ -492,8 +532,8 @@ GEMFILE(5) GEMFILE(5)
492
532
 
493
533
 
494
534
  If you would like to use multiple local gems directly from the filesys-
495
- tem, you can set a global 1mpath 22moption to the path containing the gem's
496
- files. This will automatically load gemspec files from subdirectories.
535
+ tem, you can set a global path option to the path containing the gem's
536
+ files. This will automatically load gemspec files from subdirectories.
497
537
 
498
538
 
499
539
 
@@ -504,8 +544,8 @@ GEMFILE(5) GEMFILE(5)
504
544
 
505
545
 
506
546
 
507
- 1mBLOCK FORM OF SOURCE, GIT, PATH, GROUP and PLATFORMS0m
508
- The 1m:source22m, 1m:git22m, 1m:path22m, 1m:group22m, and 1m:platforms 22moptions may be applied
547
+ BLOCK FORM OF SOURCE, GIT, PATH, GROUP and PLATFORMS
548
+ The :source, :git, :path, :group, and :platforms options may be applied
509
549
  to a group of gems by using block form.
510
550
 
511
551
 
@@ -532,16 +572,23 @@ GEMFILE(5) GEMFILE(5)
532
572
 
533
573
 
534
574
 
535
- In the case of the group block form the :optional option can be given
536
- to prevent a group from being installed unless listed in the 1m--with0m
537
- option given to the 1mbundle install 22mcommand.
575
+ In the case of the group block form the :optional option can be given
576
+ to prevent a group from being installed unless listed in the --with
577
+ option given to the bundle install command.
538
578
 
539
- In the case of the 1mgit 22mblock form, the 1m:ref22m, 1m:branch22m, 1m:tag22m, and 1m:sub-0m
540
- 1mmodules 22moptions may be passed to the 1mgit 22mmethod, and all gems in the
579
+ In the case of the git block form, the :ref, :branch, :tag, and :sub-
580
+ modules options may be passed to the git method, and all gems in the
541
581
  block will inherit those options.
542
582
 
543
- 1mINSTALL_IF0m
544
- The 1minstall_if 22mmethod allows gems to be installed based on a proc or
583
+ The presence of a source block in a Gemfile also makes that source
584
+ available as a possible global source for any other gems which do not
585
+ specify explicit sources. Thus, when defining source blocks, it is rec-
586
+ ommended that you also ensure all other gems in the Gemfile are using
587
+ explicit sources, either via source blocks or :source directives on
588
+ individual gems.
589
+
590
+ INSTALL_IF
591
+ The install_if method allows gems to be installed based on a proc or
545
592
  lambda. This is especially useful for optional gems that can only be
546
593
  used if certain software is installed or some other conditions are met.
547
594
 
@@ -553,48 +600,54 @@ GEMFILE(5) GEMFILE(5)
553
600
 
554
601
 
555
602
 
556
- 1mGEMSPEC0m
603
+ GEMSPEC
604
+ The .gemspec http://guides.rubygems.org/specification-reference/ file
605
+ is where you provide metadata about your gem to Rubygems. Some required
606
+ Gemspec attributes include the name, description, and homepage of your
607
+ gem. This is also where you specify the dependencies your gem needs to
608
+ run.
609
+
557
610
  If you wish to use Bundler to help install dependencies for a gem while
558
- it is being developed, use the 1mgemspec 22mmethod to pull in the dependen-
559
- cies listed in the 1m.gemspec 22mfile.
611
+ it is being developed, use the gemspec method to pull in the dependen-
612
+ cies listed in the .gemspec file.
560
613
 
561
- The 1mgemspec 22mmethod adds any runtime dependencies as gem requirements in
562
- the default group. It also adds development dependencies as gem
563
- requirements in the 1mdevelopment 22mgroup. Finally, it adds a gem require-
564
- ment on your project (1m:path => '.'22m). In conjunction with 1mBundler.setup22m,
614
+ The gemspec method adds any runtime dependencies as gem requirements in
615
+ the default group. It also adds development dependencies as gem
616
+ requirements in the development group. Finally, it adds a gem require-
617
+ ment on your project (:path => '.'). In conjunction with Bundler.setup,
565
618
  this allows you to require project files in your test code as you would
566
- if the project were installed as a gem; you need not manipulate the
619
+ if the project were installed as a gem; you need not manipulate the
567
620
  load path manually or require project files via relative paths.
568
621
 
569
- The 1mgemspec 22mmethod supports optional 1m:path22m, 1m:glob22m, 1m:name22m, and 1m:develop-0m
570
- 1mment_group 22moptions, which control where bundler looks for the 1m.gemspec22m,
571
- the glob it uses to look for the gemspec (defaults to: "{,4m,24m/*}.gem-
572
- spec"), what named 1m.gemspec 22mit uses (if more than one is present), and
622
+ The gemspec method supports optional :path, :glob, :name, and :develop-
623
+ ment_group options, which control where bundler looks for the .gemspec,
624
+ the glob it uses to look for the gemspec (defaults to: "{,,/*}.gem-
625
+ spec"), what named .gemspec it uses (if more than one is present), and
573
626
  which group development dependencies are included in.
574
627
 
575
- When a 1mgemspec 22mdependency encounters version conflicts during resolu-
576
- tion, the local version under development will always be selected --
577
- even if there are remote versions that better match other requirements
578
- for the 1mgemspec 22mgem.
628
+ When a gemspec dependency encounters version conflicts during resolu-
629
+ tion, the local version under development will always be selected --
630
+ even if there are remote versions that better match other requirements
631
+ for the gemspec gem.
579
632
 
580
- 1mSOURCE PRIORITY0m
581
- When attempting to locate a gem to satisfy a gem requirement, bundler
633
+ SOURCE PRIORITY
634
+ When attempting to locate a gem to satisfy a gem requirement, bundler
582
635
  uses the following priority order:
583
636
 
584
- 1. The source explicitly attached to the gem (using 1m:source22m, 1m:path22m, or
585
- 1m:git22m)
637
+ 1. The source explicitly attached to the gem (using :source, :path, or
638
+ :git)
586
639
 
587
640
  2. For implicit gems (dependencies of explicit gems), any source, git,
588
- or path repository declared on the parent. This results in bundler
589
- prioritizing the ActiveSupport gem from the Rails git repository
590
- over ones from 1mrubygems.org0m
641
+ or path repository declared on the parent. This results in bundler
642
+ prioritizing the ActiveSupport gem from the Rails git repository
643
+ over ones from rubygems.org
591
644
 
592
- 3. The sources specified via global 1msource 22mlines, searching each
593
- source in your 1mGemfile 22mfrom last added to first added.
645
+ 3. The sources specified via global source lines, searching each
646
+ source in your Gemfile from last added to first added.
594
647
 
595
648
 
596
649
 
597
650
 
598
651
 
599
652
 
600
- June 2017 GEMFILE(5)
653
+ November 2018 GEMFILE(5)