Bladeren bron

update TUTORIAL.md

in this first exercise, i face the problem that Gradle was not installed on my device. the tutorial doesn't mention this part. even before i fetch the exercise there was no mention to the Gradle in the installation. so I think as a beginner it might help to add this part to the new people will try and use the tutorial in future and some of them will probably face this issue.
mohamedFalah 9 jaren geleden
bovenliggende
commit
b3203f614e
1 gewijzigde bestanden met toevoegingen van 9 en 0 verwijderingen
  1. 9
    0
      exercises/hello-world/TUTORIAL.md

+ 9
- 0
exercises/hello-world/TUTORIAL.md Bestand weergeven

@@ -40,6 +40,15 @@ steps described by the links below:
40 40
 
41 41
 Use Gradle to run the tests:
42 42
 
43
+Make sure you have gradle installed on your device. Write this code in your termianl:
44
+```
45
+$ gradle -- version
46
+```
47
+if you got somthing like [Gradle 2.X.X] or higher then you are fine otherwise install it by writing this code in the termianl:
48
+```
49
+$ brew install gradle 
50
+```
51
+Now you can run the tests by writing this code below:
43 52
 ```
44 53
 $ gradle test
45 54
 ```