ソースを参照

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 年 前
コミット
b3203f614e
共有1 個のファイルを変更した9 個の追加0 個の削除を含む
  1. 9
    0
      exercises/hello-world/TUTORIAL.md

+ 9
- 0
exercises/hello-world/TUTORIAL.md ファイルの表示

40
 
40
 
41
 Use Gradle to run the tests:
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
 $ gradle test
53
 $ gradle test
45
 ```
54
 ```