recordx 0.5.3 → 0.5.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/lib/recordx.rb +4 -3
- metadata +7 -8
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 05d07097d58b532f126dd90b3660a374407f903476143e1ee1c3cb89982fb0cc
|
4
|
+
data.tar.gz: 8fd638f9716223586bc86c94535719635e28474a98ff231312eb5467e3563d3d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2fbc5bf21f50ba029431c7e293aae8b6b3474148103d4ba940163562916c63d993643a920c4b9fe0ebcf620f83ae32d29fbdb75703bd82e6552cd51daa678d38
|
7
|
+
data.tar.gz: 86fca08fe6b11c17fce5676c11c2604ca79388e5c2dd20d374926663fa2eb6af5b7779b9046d8b0d583a66a76a2af84520b6b8a9ad91ced7b84e5639fe08173b
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/lib/recordx.rb
CHANGED
@@ -8,6 +8,7 @@ require 'rexle-builder'
|
|
8
8
|
|
9
9
|
|
10
10
|
class RecordX
|
11
|
+
using ColouredText
|
11
12
|
|
12
13
|
attr_reader :id, :created, :last_modified
|
13
14
|
|
@@ -34,7 +35,7 @@ class RecordX
|
|
34
35
|
debug: false)
|
35
36
|
|
36
37
|
@debug = debug
|
37
|
-
puts 'x: ' + x.inspect if @debug
|
38
|
+
puts ('x: ' + x.inspect).debug if @debug
|
38
39
|
|
39
40
|
h = if x.is_a? Hash then x
|
40
41
|
|
@@ -98,8 +99,8 @@ class RecordX
|
|
98
99
|
|
99
100
|
def to_kvx()
|
100
101
|
|
101
|
-
puts 'inside to_kvx' if @debug
|
102
|
-
kvx = Kvx.new(@h.to_h)
|
102
|
+
puts 'inside to_kvx'.info if @debug
|
103
|
+
kvx = Kvx.new(@h.to_h, debug: @debug)
|
103
104
|
|
104
105
|
if @callerx and @callerx.summary[:recordx_type] then
|
105
106
|
summary_fields = @callerx.summary.keys - [:recordx_type, \
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: recordx
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James Robertson
|
@@ -35,7 +35,7 @@ cert_chain:
|
|
35
35
|
EIi/XV4rQZuQex22BSKqX+7yWSGbOtHhEDLjsIiI0ekaUbHr3diiVoyvqoVRuBIF
|
36
36
|
p3MTPyzuloAgdm0fePPKwi7V
|
37
37
|
-----END CERTIFICATE-----
|
38
|
-
date:
|
38
|
+
date: 2019-02-19 00:00:00.000000000 Z
|
39
39
|
dependencies:
|
40
40
|
- !ruby/object:Gem::Dependency
|
41
41
|
name: rexle
|
@@ -43,20 +43,20 @@ dependencies:
|
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
- - ">="
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version: 1.
|
49
|
+
version: 1.5.1
|
50
50
|
type: :runtime
|
51
51
|
prerelease: false
|
52
52
|
version_requirements: !ruby/object:Gem::Requirement
|
53
53
|
requirements:
|
54
54
|
- - "~>"
|
55
55
|
- !ruby/object:Gem::Version
|
56
|
-
version: '1.
|
56
|
+
version: '1.5'
|
57
57
|
- - ">="
|
58
58
|
- !ruby/object:Gem::Version
|
59
|
-
version: 1.
|
59
|
+
version: 1.5.1
|
60
60
|
description:
|
61
61
|
email: james@jamesrobertson.eu
|
62
62
|
executables: []
|
@@ -83,8 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
83
|
- !ruby/object:Gem::Version
|
84
84
|
version: '0'
|
85
85
|
requirements: []
|
86
|
-
|
87
|
-
rubygems_version: 2.7.6
|
86
|
+
rubygems_version: 3.0.1
|
88
87
|
signing_key:
|
89
88
|
specification_version: 4
|
90
89
|
summary: A kind of Hash which can also use accessor methods to store or retrieve values.
|
metadata.gz.sig
CHANGED
Binary file
|