rexe 0.15.0 → 0.15.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 +5 -0
  3. data/README.md +1 -1
  4. data/exe/rexe +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3a85b226f2d7d337d03476286bbe79f7b594519f93370198f8ae0581cec3616c
4
- data.tar.gz: 77e944cb23215f4ed522e5c13b8f4457f0cbefcac67b26da8218d700d729a079
3
+ metadata.gz: 1e109ac92787742884d19056f18b7b6cc36bd93f017f8e06857b733c6532f607
4
+ data.tar.gz: b1eb347fee1f87826f73f3afb246de542ee145b484b1497cc5f2ff29eada7265
5
5
  SHA512:
6
- metadata.gz: 4c88dd6b11138b9339f73439687a847332957cb50b66a1c7bde4e38d6fbc4cc4c9931e0e40111054d9b0e784ec7ac0201e172d6a1224b4aa72b5fde8593087f6
7
- data.tar.gz: 30e2902d826c9f32b12a2508152039752bd0c0f9738aa792fbadf133f57a19af28b0f8ea0ebc8ea85a052678ec8a748b5b1974ef4ffe811243b33cd2b20abd4d
6
+ metadata.gz: f7a5886ca0a29bc61bdd37cb27ecb8e328aeed12aa7dcf4c3c4a7bb15bf8d2009d8b2ffab45f334f7e5b50fe8ca9ea30dd4ef02448077acaab935ee33671b52b
7
+ data.tar.gz: 4567e8126e315260b9c07583f0c7a028ce237b83e634103552b08a0d43f240271ebed5c49d13f2dee29256201f8a88d632fae2a0761c612816e764d3a70c5ec3
@@ -1,5 +1,10 @@
1
1
  ## rexe -- Ruby Command Line Executor
2
2
 
3
+ ### 0.15.1
4
+
5
+ * Fix help text in readme.
6
+
7
+
3
8
  ### 0.15.0
4
9
 
5
10
  * Source code now defaults to 'self' (#3).
data/README.md CHANGED
@@ -68,7 +68,7 @@ line, tipping the scale so that it is practical to do it more often.
68
68
  Here is `rexe`'s help text as of the time of this writing:
69
69
 
70
70
  ```
71
- rexe -- Ruby Command Line Executor/Filter -- v0.15.0 -- https://github.com/keithrbennett/rexe
71
+ rexe -- Ruby Command Line Executor/Filter -- v0.15.1 -- https://github.com/keithrbennett/rexe
72
72
 
73
73
  Executes Ruby code on the command line, optionally automating management of standard input
74
74
  and standard output, and optionally parsing input and formatting output with YAML, JSON, etc.
data/exe/rexe CHANGED
@@ -12,7 +12,7 @@ require 'shellwords'
12
12
 
13
13
  class Rexe
14
14
 
15
- VERSION = '0.15.0'
15
+ VERSION = '0.15.1'
16
16
 
17
17
  PROJECT_URL = 'https://github.com/keithrbennett/rexe'
18
18
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rexe
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.15.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Keith Bennett