health_check_cli 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +7 -1
- data/lib/health_check_cli/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bfd7ed8fb35b2cbdd356fd4f315cc611a56b519a
|
|
4
|
+
data.tar.gz: 328bc1b8f466e1c5361d88831a82274df84a0d06
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d9a14c3e9228e1acd980954c8c5a8727ffeed338a62327296f5f28b786c6bbd0197d8d0a465472e72dd502ce813cbf090ebacce399dd363b9804372c89bfb85f
|
|
7
|
+
data.tar.gz: 8b9a8799d9061ff53cffac17f966f928e9344cb6a19664733171c0ed31f4e3368bd79410e5f05ae4203cbc5e45a02dea1e6383976cdfd26efb3cc2d6499f9a7f
|
data/README.md
CHANGED
|
@@ -20,7 +20,7 @@ Or install it yourself as:
|
|
|
20
20
|
|
|
21
21
|
## Usage
|
|
22
22
|
|
|
23
|
-
To start using the health check CLI gem, type in
|
|
23
|
+
To start using the health check CLI gem, type in your terminal:
|
|
24
24
|
```
|
|
25
25
|
health_check_cli
|
|
26
26
|
```
|
|
@@ -36,6 +36,12 @@ Currently, in the prompt you can give the following commands:
|
|
|
36
36
|
|
|
37
37
|
I would like some time in the future to extend the gem's functionality. :)
|
|
38
38
|
|
|
39
|
+
## Test
|
|
40
|
+
The application is fully unit tested, using Rspec. To run the test suite type in your terminal:
|
|
41
|
+
```
|
|
42
|
+
rspec spec
|
|
43
|
+
```
|
|
44
|
+
|
|
39
45
|
## Development
|
|
40
46
|
|
|
41
47
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|