rust-cookbook/build.rs

15 lines
356 B
Rust
Raw Normal View History

2017-02-20 19:22:19 +00:00
extern crate skeptic;
2017-02-25 07:52:30 +00:00
use std::fs;
2017-02-20 19:22:19 +00:00
fn main() {
2017-04-30 02:51:16 +00:00
let paths = fs::read_dir("./src/").unwrap()
// convert paths to Strings
.map(|p| p.unwrap().path().to_str().unwrap().to_string())
// only compile markdown files
.filter(|p| p.ends_with(".md"))
.collect::<Vec<_>>();
2017-02-25 07:52:30 +00:00
skeptic::generate_doc_tests(&paths[..]);
2017-02-20 19:22:19 +00:00
}