rbsubst 1.0.1 → 1.0.2
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/rbsubst.gemspec +2 -11
- metadata +2 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3055659a2fa0e5b075870ab22121d4f3dcc4ae81
|
|
4
|
+
data.tar.gz: bb0fd41595a3cde0c1d9b3862329b8ac404add63
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e519ea3aac4e2309b922b0a9acee4a28ae1bfa6683351186981f481c5d379bc499c719b4b877e4c1e7b17319151f2af58c6ffec2ab88dfc9edbf6076b4b4f762
|
|
7
|
+
data.tar.gz: 66d36e95812ea7fe45fefcd7b329eefe29e33da9d53e5fc03ee21c7a51ade581666202b8040f3d6ac975f9c8f61c7cab58c256b3bc53fede53bc8b31a67ec172
|
data/rbsubst.gemspec
CHANGED
|
@@ -1,20 +1,11 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'rbsubst'
|
|
3
|
-
s.version = "1.0.
|
|
3
|
+
s.version = "1.0.2"
|
|
4
4
|
s.author = "Brice Videau"
|
|
5
5
|
s.email = "brice.videau@imag.fr"
|
|
6
6
|
s.homepage = "https://github.com/Nanosim-LIG/rbsubst"
|
|
7
7
|
s.summary = "Use ruby as a preprocessor."
|
|
8
|
-
s.description =
|
|
9
|
-
Usage: rbsubst [options] [file1 file2 ...]
|
|
10
|
-
Process the standard input or given text files treating lines starting by PREFIX
|
|
11
|
-
as ruby script. Non ruby lines are treated using ruby string substitutions.
|
|
12
|
-
Options:
|
|
13
|
-
-d, --[no-]debug Print the generated script on standard error
|
|
14
|
-
--prefix PREFIX Prefix to be used (default #!RB!#)
|
|
15
|
-
--marker MARKER Marker to delimit strings (default EOF_RB)
|
|
16
|
-
-h, --help Show this message
|
|
17
|
-
EOF
|
|
8
|
+
s.description = "Use ruby as a preprocessor."
|
|
18
9
|
s.files = %w( rbsubst.gemspec LICENSE bin/rbsubst)
|
|
19
10
|
s.executable = "rbsubst"
|
|
20
11
|
s.has_rdoc = false
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rbsubst
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brice Videau
|
|
@@ -10,15 +10,7 @@ bindir: bin
|
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2015-11-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
|
-
description:
|
|
14
|
-
Usage: rbsubst [options] [file1 file2 ...]
|
|
15
|
-
Process the standard input or given text files treating lines starting by PREFIX
|
|
16
|
-
as ruby script. Non ruby lines are treated using ruby string substitutions.
|
|
17
|
-
Options:
|
|
18
|
-
-d, --[no-]debug Print the generated script on standard error
|
|
19
|
-
--prefix PREFIX Prefix to be used (default #!RB!#)
|
|
20
|
-
--marker MARKER Marker to delimit strings (default EOF_RB)
|
|
21
|
-
-h, --help Show this message
|
|
13
|
+
description: Use ruby as a preprocessor.
|
|
22
14
|
email: brice.videau@imag.fr
|
|
23
15
|
executables:
|
|
24
16
|
- rbsubst
|