dataMetaDom 1.0.1 → 1.0.3
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/History.md +12 -0
- data/README.md +2 -2
- data/lib/dataMetaDom.rb +1 -1
- data/lib/dataMetaDom/help.rb +1 -0
- data/lib/dataMetaDom/util.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 360973021272976f1657127c48398569da5c3211
|
|
4
|
+
data.tar.gz: 0a5030e192ab0bd6f5182b9a03b58771ccd89524
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f16025cfcef4dda675e35098e37801582be3bcea66a9cafe4f722d0a1ae3b4acbea50d5bcb70893144fcefb3f127e5b69c07c74a38859cdf6402a76b506f0f86
|
|
7
|
+
data.tar.gz: b12c21eccb0edc91554170ad6f9f33eb9551a0ae09a7499994865a3bd73f6cb10ecd2bd46483178ae82b859bcfadb52ad100e0f6b26bd33734e4f228ed7d3204
|
data/History.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
|
|
2
2
|
# `dataMetaDom` Release history:
|
|
3
3
|
|
|
4
|
+
## `1.0.3` - `2017-02-25 Sat` by [`mub`](https://github.com/mub)
|
|
5
|
+
* Updates:
|
|
6
|
+
* Added new canned string validation pattern, `uuid`
|
|
7
|
+
|
|
8
|
+
## `1.0.2` - `2017-02-20 Mon` by [`mub`](https://github.com/mub)
|
|
9
|
+
* Updates:
|
|
10
|
+
* Fixed bug with the help STDOUT mixing up with STDERR output
|
|
11
|
+
|
|
12
|
+
## `1.0.1` - `2017-02-14 Tue` by [`mub`](https://github.com/mub)
|
|
13
|
+
* Updates:
|
|
14
|
+
* Leftover refactoring bugs fixed.
|
|
15
|
+
|
|
4
16
|
## `1.0.0` - `2017-01-15`
|
|
5
17
|
* 1 major enhancement:
|
|
6
18
|
* Initial release
|
data/README.md
CHANGED
|
@@ -6,9 +6,9 @@ The Core of the DataMeta platform, see the Features section below.
|
|
|
6
6
|
|
|
7
7
|
See the [DataMeta home page](https://github.com/eBayDataMeta) and
|
|
8
8
|
|
|
9
|
-
References to this gem's:
|
|
9
|
+
References to this gem's source:
|
|
10
10
|
|
|
11
|
-
* [Source](https://github.com/eBayDataMeta/DataMeta-gems)
|
|
11
|
+
* [Source](https://github.com/eBayDataMeta/DataMeta-gems/tree/master/meta/core/dom)
|
|
12
12
|
|
|
13
13
|
## Features
|
|
14
14
|
|
data/lib/dataMetaDom.rb
CHANGED
|
@@ -25,7 +25,7 @@ For command line details either check the new method's source or the README.rdoc
|
|
|
25
25
|
module DataMetaDom
|
|
26
26
|
|
|
27
27
|
# Current version
|
|
28
|
-
VERSION = '1.0.
|
|
28
|
+
VERSION = '1.0.3'
|
|
29
29
|
|
|
30
30
|
=begin rdoc
|
|
31
31
|
Quick and dirty turning a Windows path into a path of the platform on which this script is running.
|
data/lib/dataMetaDom/help.rb
CHANGED
data/lib/dataMetaDom/util.rb
CHANGED
|
@@ -170,7 +170,7 @@ Suffix for the java source files for the implementors of the DataMetaSame interf
|
|
|
170
170
|
INDENT = ' ' * 4
|
|
171
171
|
|
|
172
172
|
# keep in sync with generated classes such as the Java class `CannedRegexUtil` in DataMeta DOM Core/Java etc.
|
|
173
|
-
CANNED_RX = Set.new [:email, :phone]
|
|
173
|
+
CANNED_RX = Set.new [:email, :phone, :uuid, :UUID]
|
|
174
174
|
|
|
175
175
|
# holds a custom regex symbol and the variables that use this regex
|
|
176
176
|
class RegExEntry
|