Sfoglia il codice sorgente

Merge pull request #46 from groyoh/docs

Added track specific documentation
Katrina Owen 11 anni fa
parent
commit
27d14232e4
6 ha cambiato i file con 43 aggiunte e 1 eliminazioni
  1. 2
    1
      config.json
  2. 0
    0
      docs/HELLO.md
  3. 33
    0
      docs/INSTALLATION.md
  4. 0
    0
      docs/RESOURCES.md
  5. 3
    0
      docs/TOOLS.md
  6. 5
    0
      docs/WORKFLOW.md

+ 2
- 1
config.json Vedi File

@@ -40,7 +40,8 @@
40 40
   ],
41 41
   "ignored": [
42 42
     "_template",
43
-    ".gradle"
43
+    ".gradle",
44
+    "docs"
44 45
   ],
45 46
   "foregone": [
46 47
     "leap",

+ 0
- 0
docs/HELLO.md Vedi File


+ 33
- 0
docs/INSTALLATION.md Vedi File

@@ -0,0 +1,33 @@
1
+## Installation
2
+
3
+You will need:
4
+
5
+* Java 8
6
+* Gradle
7
+
8
+### Java
9
+
10
+If typing `java -version` on the command-line returns `command not found` or similar, then go to [java.com](https://www.java.com/en/download/help/index_installing.xml), which will tell you how to install Java on your system.
11
+
12
+If Java is already installed, you will see something like the following, perhaps with some extra details about builds and virtual machines:
13
+
14
+    java version "1.8.0"
15
+
16
+### Gradle
17
+
18
+On Mac OS X you can install Gradle using homebrew:
19
+
20
+    brew install gradle
21
+
22
+On Windows you will need to visit the [Gradle](http://gradle.org/installation) website and follow the instructions there.
23
+
24
+* Download the latest version (big green button)
25
+* Unpack the ZIP file, which will contain a folder (e.g. gradle-2.2.1)
26
+* Copy the folder to a convenient location
27
+* Add that location + `\bin` to your `PATH`
28
+
29
+Verify that it has been installed correctly by running:
30
+
31
+    gradle -version
32
+
33
+You should see a version number as well as some extra information about build time and dependencies.

+ 0
- 0
docs/RESOURCES.md Vedi File


+ 3
- 0
docs/TOOLS.md Vedi File

@@ -0,0 +1,3 @@
1
+## IDE integration
2
+
3
+Check out [Gradle Tooling](http://gradle.org/tooling) for integration into IDEs such as Eclipse.

+ 5
- 0
docs/WORKFLOW.md Vedi File

@@ -0,0 +1,5 @@
1
+## Running Tests
2
+
3
+Change directories to the downloaded exercism problem, and then run
4
+
5
+    $ gradle test