Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Gradle
.gradle/
build/

# IntelliJ
*.iml
*.ipr
*.iws
.idea/

# Personal information
*.ged
*.pdf
*.svg
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,24 +24,24 @@ A zip of the latest released version is [here](https://github.com/sappling/famtr
How To Build
------------
This project include a [gradle](http://gradle.org) build file and wrapper.
Use the provided gradlew file to create a project for your IDE or a
Use the provided *gradlew* file to create a project for your IDE or a
command line runner. You will need to have a Java 8 JRE or JDK installed and your
JAVA_HOME environment variable set with a path to your JRE.
`JAVA_HOME` environment variable set with a path to your JRE.

Run "gradlew idea" to generate a project for [IntelliJ Idea](https://www.jetbrains.com/idea/).
Run "gradlew eclipse" to generate a project for [Eclipse](https://eclipse.org/ide/).
Run `gradlew idea` to generate a project for [IntelliJ Idea](https://www.jetbrains.com/idea/).
Run `gradlew eclipse` to generate a project for [Eclipse](https://eclipse.org/ide/).

Run "gradlew dist" to build a runnable sample in the build/install/rallyx
directory and a zip in build/distributions.
Run `gradlew dist` to build a runnable sample in the *build/install/famtree*
directory and a zip in *build/distributions*.

Running
-------
Use the script bin/famtree.bat or bin/famtree to run the tool.
Use the script *bin/famtree.bat* or *bin/famtree* to run the tool.


#### Command Line Arguments

```
``` bash
usage: famtree [-gen <numgen>] [-help] [-id <ID>] [-in <filename>]
[-layout <type>] [-names] [-out <filename>] [-stop <ID>] [-type
<type>]
Expand All @@ -61,8 +61,8 @@ People are identified in your gedcom file with an ID such as:
0 @I201@ INDI
1 NAME Lisa Franklin /Doty/
```
When using the "id" or "stop" arguments that take an ID parameter, it is the id between the @ signs on the
INDI line. For example,
When using the `id` or `stop` arguments that take an ID parameter, it is the id between the `@` signs on the
`INDI` line. For example,
`famtree -in famdata.ged -id I201` would
print out a descendant chart for Lisa Doty.

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repositories {
sourceCompatibility = 1.8
targetCompatibility = 1.8

mainClassName = 'org.appling.rallyx.Main'
mainClassName = 'org.appling.famtree.Main'

version = '0.8'

Expand Down
Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Thu Mar 29 17:39:10 EDT 2012
#Thu Nov 19 11:52:18 CET 2015
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http\://services.gradle.org/distributions/gradle-2.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.6-all.zip
137 changes: 78 additions & 59 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading