the_hulk 0.0.9 → 0.0.10
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.
- data/README.md +7 -1
- data/lib/hulk/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
|
@@ -3,6 +3,12 @@ hulk
|
|
|
3
3
|
|
|
4
4
|
Hulk is an ultra simple command line tool for running a list of bash commands synchronously.
|
|
5
5
|
|
|
6
|
+
## Installing
|
|
7
|
+
|
|
8
|
+
Just run the following command to install hulk onto your system.
|
|
9
|
+
```
|
|
10
|
+
gem install the_hulk
|
|
11
|
+
```
|
|
6
12
|
|
|
7
13
|
## Usage
|
|
8
14
|
|
|
@@ -44,7 +50,7 @@ Feel free to use multiple variables.
|
|
|
44
50
|
|
|
45
51
|
```YML
|
|
46
52
|
perform:
|
|
47
|
-
|
|
53
|
+
- "$$ and then $$ followed by $$"
|
|
48
54
|
```
|
|
49
55
|
|
|
50
56
|
Hulk will prompt you for each variable in your build before it runs, and then you may step away as Hulk smashes through your build with your assigned variables.
|
data/lib/hulk/version.rb
CHANGED