stp_client 0.4.2 → 0.4.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +7 -7
- data/lib/stp/structs/account.rb +3 -3
- data/lib/stp/version.rb +1 -1
- metadata +2 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 261c9f866c7ceb1621dcfd05ebc51a2a23fa73f816c30089b34745a1e8f16458
|
4
|
+
data.tar.gz: 897297e8713a5a081dc11d6a0642dd86299e09256d551217e426b514fee95e17
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b269d1b5c55ca547639b53ff7a2f3b11a6e99900ed87f794e7143702f8934a84337577b975ed94674794a0d3e0b3e85174ff4993f2520ac80528b486dda9421a
|
7
|
+
data.tar.gz: f49256bcb78005b6c0debe661eae877f77bb5dc9070cebcfa1f70701de40a7f0c77920f423373b36326b50495b196353155451f0912086e971e0157f9e115efc
|
data/Gemfile.lock
CHANGED
@@ -8,9 +8,9 @@ PATH
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
|
-
activemodel (5.2.4.
|
12
|
-
activesupport (= 5.2.4.
|
13
|
-
activesupport (5.2.4.
|
11
|
+
activemodel (5.2.4.3)
|
12
|
+
activesupport (= 5.2.4.3)
|
13
|
+
activesupport (5.2.4.3)
|
14
14
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
15
15
|
i18n (>= 0.7, < 2)
|
16
16
|
minitest (~> 5.1)
|
@@ -18,7 +18,7 @@ GEM
|
|
18
18
|
addressable (2.7.0)
|
19
19
|
public_suffix (>= 2.0.2, < 5.0)
|
20
20
|
bcrypt (3.1.13)
|
21
|
-
concurrent-ruby (1.1.
|
21
|
+
concurrent-ruby (1.1.6)
|
22
22
|
crack (0.4.3)
|
23
23
|
safe_yaml (~> 1.0.0)
|
24
24
|
crypto_yellowme (0.4.0)
|
@@ -32,10 +32,10 @@ GEM
|
|
32
32
|
faraday (1.0.0)
|
33
33
|
multipart-post (>= 1.2, < 3)
|
34
34
|
hashdiff (1.0.1)
|
35
|
-
i18n (1.7.
|
35
|
+
i18n (1.7.1)
|
36
36
|
concurrent-ruby (~> 1.0)
|
37
37
|
json (2.3.0)
|
38
|
-
minitest (5.14.
|
38
|
+
minitest (5.14.1)
|
39
39
|
multipart-post (2.1.1)
|
40
40
|
public_suffix (4.0.3)
|
41
41
|
rspec (3.9.0)
|
@@ -58,7 +58,7 @@ GEM
|
|
58
58
|
simplecov-html (~> 0.10.0)
|
59
59
|
simplecov-html (0.10.2)
|
60
60
|
thread_safe (0.3.6)
|
61
|
-
tzinfo (1.2.
|
61
|
+
tzinfo (1.2.7)
|
62
62
|
thread_safe (~> 0.1)
|
63
63
|
webmock (3.4.2)
|
64
64
|
addressable (>= 2.3.6)
|
data/lib/stp/structs/account.rb
CHANGED
@@ -37,9 +37,9 @@ module STP
|
|
37
37
|
{
|
38
38
|
cuenta: @account,
|
39
39
|
empresa: @company,
|
40
|
-
nombre: @name,
|
41
|
-
apellidoPaterno: @paternal_surname,
|
42
|
-
apellidoMaterno: @maternal_surname,
|
40
|
+
nombre: I18n.transliterate(@name),
|
41
|
+
apellidoPaterno: I18n.transliterate(@paternal_surname),
|
42
|
+
apellidoMaterno: I18n.transliterate(@maternal_surname),
|
43
43
|
rfcCurp: @rfc,
|
44
44
|
fechaNacimiento: @birthdate,
|
45
45
|
genero: @sex,
|
data/lib/stp/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stp_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yellowme
|
@@ -142,8 +142,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
142
142
|
- !ruby/object:Gem::Version
|
143
143
|
version: '0'
|
144
144
|
requirements: []
|
145
|
-
|
146
|
-
rubygems_version: 2.7.6
|
145
|
+
rubygems_version: 3.1.2
|
147
146
|
signing_key:
|
148
147
|
specification_version: 4
|
149
148
|
summary: STP Client is a ruby integration to STP services
|