You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/references/strategies/languages/ruby/ruby.md
+1
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,7 @@ parse a lockfile or run the `bundle` cli to determine dependencies.
20
20
21
21
The lockfile strategy attempts to parse Bundler's `Gemfile.lock` lockfile. This file is created by bundler itself after a build is completed and can be distributed in order to maintain reproducible builds. It contains the following information about a Ruby project:
22
22
- The location for each dependency. These locations are each separate sections and the ones of note are `GIT`, `PATH`, and `GEM` which provide their remote in the `remote: <location>` line.
23
+
-`GIT` and `GEM` type dependencies are supported. `PATH` and any others are not and will show up as `GEM` type dependencies.
23
24
- Each dependencies required dependencies. These required dependencies are listed in the remote sections directly following each dependency from that remote.
24
25
- All direct dependencies, listed in the `DEPENDENCIES` section.
25
26
- Platforms that this ruby project is compatible with, listed in the `PLATFORMS` sections.
0 commit comments