rexe 1.5.0 → 1.5.1
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/CHANGELOG.md +5 -0
- data/exe/rexe +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '036597bf795aea3d05206bec898b2688dc1b75cf51c2dec772574a86734f56ef'
|
4
|
+
data.tar.gz: 6d404ef04a3fdcf8913e654da1cb71e18191f3796e70f0da2dc249f467f88f5a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6002bbc565faf3861ec08752b22160453b2b35dbab126e4e7d53b9e4e7b68da49545fb615f48eb4a8bddc087943cf33572e36521b38d1e0fe12a17812e0ea4a8
|
7
|
+
data.tar.gz: 63cfec0e25406005aa3c030376755333842f294530ee96fc7d9344460f9b7efbd4c7380eeffed689905bf2331c836b8935e297278237cb8721ba19e0a19c81e9
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
## rexe -- Ruby Command Line Executor/Filter
|
2
2
|
|
3
|
+
### 1.5.1
|
4
|
+
|
5
|
+
* Change string concatenations using << to creation of new strings with += to accommodate default-frozen strings.
|
6
|
+
|
7
|
+
|
3
8
|
### 1.5.0
|
4
9
|
|
5
10
|
* Switch from AwesomePrint to AmazingPrint, and change all references in text, help, etc.
|
data/exe/rexe
CHANGED
@@ -15,7 +15,7 @@ require 'shellwords'
|
|
15
15
|
|
16
16
|
class Rexe
|
17
17
|
|
18
|
-
VERSION = '1.5.
|
18
|
+
VERSION = '1.5.1'
|
19
19
|
|
20
20
|
PROJECT_URL = 'https://github.com/keithrbennett/rexe'
|
21
21
|
|
@@ -123,7 +123,7 @@ class Rexe
|
|
123
123
|
|
124
124
|
def formatters
|
125
125
|
@formatters ||= {
|
126
|
-
amazing_print: ->(obj) { obj.ai
|
126
|
+
amazing_print: ->(obj) { obj.ai + "\n" },
|
127
127
|
inspect: ->(obj) { obj.inspect + "\n" },
|
128
128
|
json: ->(obj) { obj.to_json },
|
129
129
|
marshal: ->(obj) { Marshal.dump(obj) },
|
@@ -516,7 +516,7 @@ class Rexe
|
|
516
516
|
raise error # re-raise the error, can't fix it
|
517
517
|
else
|
518
518
|
load_dir = File.dirname(gem_path)
|
519
|
-
$LOAD_PATH
|
519
|
+
$LOAD_PATH += load_dir
|
520
520
|
require the_require
|
521
521
|
end
|
522
522
|
end
|
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.5.
|
4
|
+
version: 1.5.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: 2020-
|
11
|
+
date: 2020-11-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: amazing_print
|