dataMetaDom 1.0.1 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2578257bdf5a67a2a4c25cfec42f5229900f07d6
4
- data.tar.gz: e2c063e1d81b3e4eba2738559f23400857d5a0e6
3
+ metadata.gz: 360973021272976f1657127c48398569da5c3211
4
+ data.tar.gz: 0a5030e192ab0bd6f5182b9a03b58771ccd89524
5
5
  SHA512:
6
- metadata.gz: 924717e61de5af7360386aebfc6146224217bb63f73f5d4f1300bf45a9e4dcfee84eebc8a474d40b3f0b903568ef2545dce306ad46042e23dc0689251e836c0f
7
- data.tar.gz: 0362a4721f67d263a3de838470a438fd6d1c4d7ef066f5666d837d14f807e92058108da778d35c1057d0820e359d0b1e63a70e0e16a75fbc2f4b86a698a820b3
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.1'
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.
@@ -18,6 +18,7 @@ DataMeta DOM version #{DataMetaDom::VERSION}
18
18
 
19
19
  HELP
20
20
 
21
+ $stdout.flush # otherwise it may mix up with the $stderr output below
21
22
  $stderr.puts "\nERROR: #{errorText}" if errorText
22
23
  exit errorText ? 0 : 1
23
24
  end
@@ -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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dataMetaDom
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Bergens