rexe 0.13.0 → 0.14.0
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 +7 -0
- data/README.md +233 -129
- data/exe/rexe +264 -224
- data/rexe.gemspec +2 -7
- metadata +13 -7
data/rexe.gemspec
CHANGED
@@ -52,13 +52,8 @@ Gem::Specification.new do |spec|
|
|
52
52
|
|
53
53
|
WARNING!
|
54
54
|
|
55
|
-
The default
|
56
|
-
|
57
|
-
The -ms (separate string mode) mode name was changed
|
58
|
-
to -ml (line mode) in version 0.9.0.
|
59
|
-
|
60
|
-
The verbose mode boolean switch (-v) was changed to the
|
61
|
-
log format option (-g) in version 0.12.0.
|
55
|
+
The default output format has been changed from -op (:puts) to -on (:none)
|
56
|
+
in version 0.14.0.
|
62
57
|
|
63
58
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
64
59
|
|
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: 0.
|
4
|
+
version: 0.14.0
|
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-03-
|
11
|
+
date: 2019-03-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: awesome_print
|
@@ -108,11 +108,17 @@ metadata:
|
|
108
108
|
homepage_uri: https://github.com/keithrbennett/rexe
|
109
109
|
source_code_uri: https://github.com/keithrbennett/rexe
|
110
110
|
changelog_uri: https://github.com/keithrbennett/rexe/blob/master/README.md
|
111
|
-
post_install_message:
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
111
|
+
post_install_message: |2+
|
112
|
+
|
113
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
114
|
+
|
115
|
+
WARNING!
|
116
|
+
|
117
|
+
The default output format has been changed from -op (:puts) to -on (:none)
|
118
|
+
in version 0.14.0.
|
119
|
+
|
120
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
121
|
+
|
116
122
|
rdoc_options: []
|
117
123
|
require_paths:
|
118
124
|
- lib
|