examine 0.2.0

Simple project detection and analysis - just pass a path and get project info
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod detector;
mod frameworks;
mod languages;
mod project_info;

pub use project_info::{LanguageStatus, ProjectInfo};

/// Examines the project at the given path and returns its information.
pub fn examine<P: AsRef<std::path::Path>>(path: P) -> Result<ProjectInfo, String> {
    detector::detect_project_info(path.as_ref())
}