1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//! Gemfile parsing and rubygems.org integration.
//!
//! This crate provides Bundler-specific functionality for the deps-lsp server,
//! including Gemfile DSL parsing, dependency extraction, and rubygems.org
//! registry integration.
//!
//! # Features
//!
//! - Parsing `Gemfile` dependencies with position tracking
//! - Fetching version data from rubygems.org API
//! - Supporting registry, git, path, and github dependencies
//! - Group handling (`:development`, `:test`, `:production`)
//! - Implementing deps-core traits for generic LSP handlers
//!
//! # Examples
//!
//! ```
//! use deps_bundler::{BundlerDependency, RubyGemsRegistry};
//!
//! // Types are re-exported for convenience
//! let _deps: Vec<BundlerDependency> = vec![];
//! ```
// Re-export commonly used types
pub use BundlerEcosystem;
pub use ;
pub use BundlerFormatter;
pub use GemfileLockParser;
pub use ;
pub use ;
pub use ;