gitignore_rb 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/gitignore_binding/src/lib.rs +0 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c41a88c8d38352c9e612eaa709731a7e36643ff6
|
4
|
+
data.tar.gz: 7673d3334ebba1f7609b1705f99637b6fa5d1bc0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eacedc61844ed9e0037a7a5434104746ff652174b6bd8debac007dea5305e1ac96dda290a58a83e659baf915cbe6eb0e25107af3a92d9ccc89c2d41aa17c2cf2
|
7
|
+
data.tar.gz: 1b7ff8f2073a00196108faf9498e47527ed1d1a80d18c290cc21a154cb0c473287998135c670b6935c3c774396e8fa1974c480479e63b7078a862c90db1eb820
|
@@ -33,7 +33,6 @@ pub extern "C" fn included_files(path_ptr: *const libc::c_char) -> RubyArray {
|
|
33
33
|
let file = gitignore::File::new(&gitignore_path).unwrap();
|
34
34
|
|
35
35
|
let files = file.included_files().unwrap();
|
36
|
-
println!("{:?}", files);
|
37
36
|
RubyArray::from_vec(paths_to_ptrs(files))
|
38
37
|
}
|
39
38
|
|