xhash_client 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +3 -3
- data/lib/xhash/structs/curp.rb +7 -6
- data/lib/xhash/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 677093e282f54841ba892b25b0f35ed46df8c2b2ce58dea9204a49c089dd4596
|
4
|
+
data.tar.gz: 18fc5c71735aacead2a901e4de38bdb62da8d0fab5d5e979378bb8e9a8c2335a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b463f5437405c26eced23fbd141938b46e16adbb1f1a47858878767b4ba89a804a5394252a606ab047373a7dab3c78af7de427fb5b291c9cccda2ded15397647
|
7
|
+
data.tar.gz: c9fbed3159c04ec214192dcb3433c3cf3c4f029a58ea4261aaa4b62802962b1f9b51361df67e14ffac4de2b7fbd79f5a7bd3025af26fbed3ea3ba3f30c369c7c
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
|
4
|
+
xhash_client (0.3.2)
|
5
5
|
activesupport (~> 5.2)
|
6
6
|
httparty (~> 0.16.0)
|
7
7
|
json (~> 2.0)
|
@@ -25,7 +25,7 @@ GEM
|
|
25
25
|
httparty (0.16.4)
|
26
26
|
mime-types (~> 3.0)
|
27
27
|
multi_xml (>= 0.5.2)
|
28
|
-
i18n (1.7.
|
28
|
+
i18n (1.7.1)
|
29
29
|
concurrent-ruby (~> 1.0)
|
30
30
|
json (2.2.0)
|
31
31
|
mime-types (3.3.1)
|
@@ -68,7 +68,7 @@ DEPENDENCIES
|
|
68
68
|
rspec (~> 3.8)
|
69
69
|
simplecov (~> 0.17)
|
70
70
|
webmock (~> 3.7)
|
71
|
-
|
71
|
+
xhash_client!
|
72
72
|
|
73
73
|
BUNDLED WITH
|
74
74
|
1.17.3
|
data/lib/xhash/structs/curp.rb
CHANGED
@@ -1,15 +1,16 @@
|
|
1
1
|
module Xhash
|
2
2
|
CURP =
|
3
3
|
Struct.new(
|
4
|
+
:country_of_birth,
|
5
|
+
:created_at,
|
4
6
|
:curp,
|
5
|
-
:
|
7
|
+
:day_of_birth,
|
8
|
+
:gender,
|
9
|
+
:id,
|
6
10
|
:last_name,
|
7
11
|
:mothers_last_name,
|
8
|
-
:
|
12
|
+
:name,
|
9
13
|
:province_of_birth,
|
10
|
-
:
|
11
|
-
:updated_at,
|
12
|
-
:created_at,
|
13
|
-
:id
|
14
|
+
:updated_at
|
14
15
|
)
|
15
16
|
end
|
data/lib/xhash/version.rb
CHANGED