rexe 1.3.0 → 1.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -0
  3. data/README.md +3 -1
  4. data/exe/rexe +3 -1
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8ab00704245578c9561f0505ecf8bd7e89726a1c8c6df3ffd6a7ac42cd47cde9
4
- data.tar.gz: f9a016b6c972c9960f6e42042ad5531b095fb69ccee8409b770d3da52c40f3d6
3
+ metadata.gz: 5381849daea572a6e282c26c818c52a2dbf5e0859b7d0b2503500a590e222976
4
+ data.tar.gz: 7c5123e27867beb235c1b418c66b31cabd1d0546dbf79239edd17dadd5d49b47
5
5
  SHA512:
6
- metadata.gz: 34399b21ef6425c9107f42fe5809c4d3e4b98e5a1e88680dfdfb074f0b8c5b3f5e94c2b83d31299a948d2b54b873e41580d0cb1d4f1c57de2f10a29bce3a4da6
7
- data.tar.gz: 7956d7b7b7f0ee154f345c9fd375e86913d9abf8b38f0e2d0d69cd5b2354ec6db9675bb3b425f077f0b4b1f572970c177daa64ce299a3293cd86dd45da219eee
6
+ metadata.gz: 165da8a53ff192be771d94316ea1fe3cdbfbecc65f7a7a020882c128f9e95d7751fc642e5b3f697a57474cee2aefdb72c9723a6a4d07d33fae7b1ec65cec0cd6
7
+ data.tar.gz: 300d2b9d707453009b2a036ffc477c1a2596f20e8897d1623fd22620eb9e7574387975bdb7a20f12892cc0acba1137b595f8c21977fc55a715e0eab6c1f60c82
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  ## rexe -- Ruby Command Line Executor/Filter
2
2
 
3
+
4
+ ### 1.3.1
5
+
6
+ * Add Awesome Print and Pretty Print output formats to help.
7
+
8
+
3
9
  ### 1.3.0
4
10
 
5
11
  * Document --project-url option.
data/README.md CHANGED
@@ -73,7 +73,7 @@ Rexe is at https://github.com/keithrbennett/rexe and can be installed with `gem
73
73
  Here is rexe's help text as of the time of this writing:
74
74
 
75
75
  ```
76
- rexe -- Ruby Command Line Executor/Filter -- v1.3.0 -- https://github.com/keithrbennett/rexe
76
+ rexe -- Ruby Command Line Executor/Filter -- v1.3.1 -- https://github.com/keithrbennett/rexe
77
77
 
78
78
  Executes Ruby code on the command line,
79
79
  optionally automating management of standard input and standard output,
@@ -107,12 +107,14 @@ Options:
107
107
  -n, --[no-]noop Do not execute the code (useful with -g);
108
108
  For true: yes, true, y, +; for false: no, false, n
109
109
  -o, --output_format FORMAT Output format, defaults to -on (no output):
110
+ -oa Awesome Print
110
111
  -oi Inspect
111
112
  -oj JSON
112
113
  -oJ Pretty JSON
113
114
  -om Marshal
114
115
  -on No Output (default)
115
116
  -op Puts
117
+ -oP Pretty Print
116
118
  -os to_s
117
119
  -oy YAML
118
120
  If 2 letters are provided, 1st is for tty devices, 2nd for block
data/exe/rexe CHANGED
@@ -12,7 +12,7 @@ require 'shellwords'
12
12
 
13
13
  class Rexe
14
14
 
15
- VERSION = '1.3.0'.freeze
15
+ VERSION = '1.3.1'.freeze
16
16
 
17
17
  PROJECT_URL = 'https://github.com/keithrbennett/rexe'.freeze
18
18
 
@@ -214,12 +214,14 @@ class Rexe
214
214
  -n, --[no-]noop Do not execute the code (useful with -g);
215
215
  For true: yes, true, y, +; for false: no, false, n
216
216
  -o, --output_format FORMAT Output format, defaults to -on (no output):
217
+ -oa Awesome Print
217
218
  -oi Inspect
218
219
  -oj JSON
219
220
  -oJ Pretty JSON
220
221
  -om Marshal
221
222
  -on No Output (default)
222
223
  -op Puts
224
+ -oP Pretty Print
223
225
  -os to_s
224
226
  -oy YAML
225
227
  If 2 letters are provided, 1st is for tty devices, 2nd for block
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rexe
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Keith Bennett
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-05-28 00:00:00.000000000 Z
11
+ date: 2019-06-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: awesome_print