-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
my name
committed
Oct 18, 2018
1 parent
52cceb0
commit 869881a
Showing
5 changed files
with
41 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* To change this license header, choose License Headers in Project Properties. | ||
* To change this template file, choose Tools | Templates | ||
* and open the template in the editor. | ||
*/ | ||
package com.praqma.gitrepodoctor; | ||
|
||
import java.nio.file.Files; | ||
import java.nio.file.Paths; | ||
|
||
/** | ||
* | ||
* @author florenthaxha | ||
*/ | ||
public class Main { | ||
|
||
/** | ||
* @param args the command line arguments | ||
*/ | ||
public static void main(String[] args) { | ||
// CreateStatistics cs = new CreateStatistics(); | ||
// String json = RepositoryInformation.build("/Users/florenthaxha/Work/GitRepoDoctor").toJson(); | ||
// System.out.println(json); | ||
// cs.createAndSaveReport("/Users/florenthaxha/Work/GitRepoDoctor", "/Users/florenthaxha/School"); | ||
// RepositoryInformation rii = new RepositoryInformation().fromJson(json); | ||
// System.out.println(rii); | ||
|
||
assert args.length == 1; | ||
assert Files.exists(Paths.get(args[0])); | ||
System.out.println(RepositoryInformation.build(args[0]).toJson()); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters