Merge branch 'init-with-gitignore' of https://github.com/vrinek/mdBook into vrinek-init-with-gitignore
This commit is contained in:
commit
73ce3f814a
|
@ -94,7 +94,7 @@ fn init(args: &ArgMatches) -> Result<(), Box<Error>> {
|
||||||
// If flag `--theme` is present, copy theme to src
|
// If flag `--theme` is present, copy theme to src
|
||||||
if args.is_present("theme") {
|
if args.is_present("theme") {
|
||||||
|
|
||||||
// Skip this id `--force` is present
|
// Skip this if `--force` is present
|
||||||
if !args.is_present("force") {
|
if !args.is_present("force") {
|
||||||
// Print warning
|
// Print warning
|
||||||
print!("\nCopying the default theme to {:?}", book.get_src());
|
print!("\nCopying the default theme to {:?}", book.get_src());
|
||||||
|
@ -115,6 +115,22 @@ fn init(args: &ArgMatches) -> Result<(), Box<Error>> {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Because of `src/book/mdbook.rs#L37-L39`, the following will always evaluate to `true`
|
||||||
|
let is_dest_inside_root = book.get_dest().starts_with(book.get_root());
|
||||||
|
|
||||||
|
if !args.is_present("force") && is_dest_inside_root {
|
||||||
|
let gitignore = book.get_dest().join(".gitignore");
|
||||||
|
println!("\nCreating default .gitignore at {:?}", gitignore);
|
||||||
|
print!("\nAre you sure you want to continue? (y/n) ");
|
||||||
|
|
||||||
|
if confirm() {
|
||||||
|
book.create_gitignore();
|
||||||
|
println!("\n.gitignore created.");
|
||||||
|
} else {
|
||||||
|
println!("\nSkipping...\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
println!("\nAll done, no errors...");
|
println!("\nAll done, no errors...");
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
|
@ -160,12 +160,37 @@ impl MDBook {
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn create_gitignore(&self) {
|
||||||
|
let gitignore = self.get_gitignore();
|
||||||
|
|
||||||
|
if !gitignore.exists() {
|
||||||
|
// Gitignore does not exist, create it
|
||||||
|
|
||||||
|
debug!("[*]: {:?} does not exist, trying to create .gitignore", gitignore);
|
||||||
|
|
||||||
|
let mut f = File::create(&gitignore)
|
||||||
|
.expect("Could not create file.");
|
||||||
|
|
||||||
|
debug!("[*]: Writing to .gitignore");
|
||||||
|
|
||||||
|
writeln!(f, "# Ignore everything within this folder")
|
||||||
|
.expect("Could not write to file.");
|
||||||
|
writeln!(f, "*")
|
||||||
|
.expect("Could not write to file.");
|
||||||
|
writeln!(f, "")
|
||||||
|
.expect("Could not write to file.");
|
||||||
|
writeln!(f, "# Except this file")
|
||||||
|
.expect("Could not write to file.");
|
||||||
|
writeln!(f, "!.gitignore")
|
||||||
|
.expect("Could not write to file.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// The `build()` method is the one where everything happens. First it parses `SUMMARY.md` to
|
/// The `build()` method is the one where everything happens. First it parses `SUMMARY.md` to
|
||||||
/// construct the book's structure in the form of a `Vec<BookItem>` and then calls `render()`
|
/// construct the book's structure in the form of a `Vec<BookItem>` and then calls `render()`
|
||||||
/// method of the current renderer.
|
/// method of the current renderer.
|
||||||
///
|
///
|
||||||
/// It is the renderer who generates all the output files.
|
/// It is the renderer who generates all the output files.
|
||||||
|
|
||||||
pub fn build(&mut self) -> Result<(), Box<Error>> {
|
pub fn build(&mut self) -> Result<(), Box<Error>> {
|
||||||
debug!("[fn]: build");
|
debug!("[fn]: build");
|
||||||
|
|
||||||
|
@ -180,6 +205,10 @@ impl MDBook {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
pub fn get_gitignore(&self) -> PathBuf {
|
||||||
|
self.config.get_dest().join(".gitignore")
|
||||||
|
}
|
||||||
|
|
||||||
pub fn copy_theme(&self) -> Result<(), Box<Error>> {
|
pub fn copy_theme(&self) -> Result<(), Box<Error>> {
|
||||||
debug!("[fn]: copy_theme");
|
debug!("[fn]: copy_theme");
|
||||||
|
|
||||||
|
@ -297,6 +326,10 @@ impl MDBook {
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn get_root(&self) -> &Path {
|
||||||
|
self.config.get_root()
|
||||||
|
}
|
||||||
|
|
||||||
pub fn set_dest(mut self, dest: &Path) -> Self {
|
pub fn set_dest(mut self, dest: &Path) -> Self {
|
||||||
|
|
||||||
// Handle absolute and relative paths
|
// Handle absolute and relative paths
|
||||||
|
|
Loading…
Reference in New Issue