runfile-exec 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +8 -1
- data/lib/runfile-exec/extensions.rb +2 -0
- data/lib/runfile-exec/version.rb +1 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 15d56df010391a63ea61f17a1564a2a0afae3b28
|
4
|
+
data.tar.gz: e78be7898db3321895f8fbeaab7a5f178de8cb3d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a4ebece6872330365477846ca39796b5dbecf13f8bc86b7b658720931fb68094dd90da496ceb7cb90b83bf86ddb1d7f4fc83525c783297c7ba07c853ec5d375
|
7
|
+
data.tar.gz: 21e318e3764dbfbf2b0c22f562314468a3f242260e6669686aa0445bd9aae6c30fbb33eeac5b234a5d6b0115139c66e17c3a5567e55a3a394a35799c9f8a2e72
|
data/README.md
CHANGED
@@ -15,7 +15,6 @@ Put this in your Runfile
|
|
15
15
|
|
16
16
|
```ruby
|
17
17
|
require "runfile-exec"
|
18
|
-
include RunfileExec
|
19
18
|
```
|
20
19
|
|
21
20
|
And then you can use any of these commands in your Runfile actions:
|
@@ -47,3 +46,11 @@ To change the location, add this at the beginning of your Runfile:
|
|
47
46
|
```ruby
|
48
47
|
RunfileExec.pid_dir = './tmp'
|
49
48
|
```
|
49
|
+
|
50
|
+
## Example ##
|
51
|
+
|
52
|
+
See the `example` folder for sample usage. To see the output:
|
53
|
+
|
54
|
+
$ cd example
|
55
|
+
$ run # list commands
|
56
|
+
$ run runbg # start one of the sample commands
|
data/lib/runfile-exec/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: runfile-exec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Danny Ben Shitrit
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-11-
|
11
|
+
date: 2015-11-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: colsole
|