randamu 0.0.1 → 0.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6d68cc6e383d78b5e4917f38f62c33d9af5f0a41cb5a4f00f578a7e469969176
4
- data.tar.gz: 30ab7a2ed9b9c87522cd7e2c93c9c9c20b0f90a9ae8dab1252a587b3d15050e9
3
+ metadata.gz: 96d7376926841d816bed4811dc0c2763c88ff37cf1c23de93641b0b7c1f56e45
4
+ data.tar.gz: 75c228b78bed44700ea06f02bfbce811c25973435069128616237a6ae0369f6f
5
5
  SHA512:
6
- metadata.gz: 8cd0cac5450fa857d0322c8323b473a7ccfd78d0bf18c4a30fb318b2639ffc8a83c4f3389e989b90b0a582257880519419b72023e1a8d2bc923233faf3f4b978
7
- data.tar.gz: c813efb6410afe66ba52d9ad675c4e90d79ec969ffee98820dac1d3a7010e9799a12fa4170781886d8ed709cc751ad67af923cc2b81f370e07632fbeaccdb924
6
+ metadata.gz: 6e919edd93ec77c8738b8d0b66c5898b7d0dd70dab84b09f16d1c48fb9c5b0f2292eeb1fefbb1f6d4a8d5b5e57f74bd1c37441a1d9baf21fff94edb62d9ab00a
7
+ data.tar.gz: 7289fd2374370abb664e66d6baa2c0c35ee8a447781f4a937a0a9e662f8068eeaf6459075beb48c443ed0a2dd56f635464b682d90ab924b32a76716634954416
@@ -1,5 +1,5 @@
1
1
  module Randamu
2
- class Academic
2
+ class Academic < Base
3
3
  class << self
4
4
  def education_level
5
5
  ['Educação infantil', 'Fundamental', 'Médio',
@@ -10,14 +10,15 @@ module Randamu
10
10
  load_data('academic.courses').sample
11
11
  end
12
12
 
13
- def school_name
13
+ def school
14
14
  load_data('academic.schools').sample
15
15
  end
16
16
 
17
- def university_name
17
+ def university
18
18
  load_data('academic.universities').sample
19
19
  end
20
20
 
21
+ alias :college :university
21
22
  end
22
23
  end
23
24
  end
@@ -20,13 +20,13 @@ module Randamu
20
20
  end
21
21
 
22
22
  def phone(state: Dictionary::STATES.keys.sample, country_code: false)
23
- return "+55 (#{load_data("phone.ddd.#{state}").sample}) " + phone_number if country_code
24
- "(#{load_data("phone.ddd.#{state}").sample}) " + phone_number
23
+ base_phone_number = "(#{load_data("phone.ddd.#{state}").sample}) " + phone_number
24
+ country_code ? "+55 #{base_phone_number}" : base_phone_number
25
25
  end
26
26
 
27
27
  def phone_only_numbers(state: Dictionary::STATES.keys.sample, country_code: false)
28
- return "55#{load_data("phone.ddd.#{state}").sample}" + phone_number if country_code
29
- "#{load_data("phone.ddd.#{state}").sample}" + phone_number
28
+ base_phone_number = load_data("phone.ddd.#{state}").sample.to_s + phone_number
29
+ country_code ? "55#{base_phone_number}" : base_phone_number
30
30
  end
31
31
 
32
32
  private
@@ -2,7 +2,7 @@ module DocumentGenerator
2
2
  def cpf(valid: true)
3
3
  return generate_valid_cpf if valid
4
4
 
5
- genereate_invalid_cpf
5
+ generate_invalid_cpf
6
6
  end
7
7
 
8
8
  def rg
@@ -40,7 +40,7 @@ module DocumentGenerator
40
40
  cpf.join
41
41
  end
42
42
 
43
- def genereate_invalid_cpf
43
+ def generate_invalid_cpf
44
44
  cpf = generate_valid_cpf
45
45
  last_digit = cpf[-1]
46
46
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: randamu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jorge Coutinho
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-01 00:00:00.000000000 Z
11
+ date: 2024-10-03 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Random data generators
14
14
  email: jorgecoutinhodsn@gmail.com