randamu 0.0.2 → 0.0.3

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: 96d7376926841d816bed4811dc0c2763c88ff37cf1c23de93641b0b7c1f56e45
4
- data.tar.gz: 75c228b78bed44700ea06f02bfbce811c25973435069128616237a6ae0369f6f
3
+ metadata.gz: d4f557bc3003d936d24d790027efdeff376fc68c9af000df9442a8686ecd140e
4
+ data.tar.gz: e6d463809113e374ed9a2d80c1146bad96d60f747e74643d57381684bed13776
5
5
  SHA512:
6
- metadata.gz: 6e919edd93ec77c8738b8d0b66c5898b7d0dd70dab84b09f16d1c48fb9c5b0f2292eeb1fefbb1f6d4a8d5b5e57f74bd1c37441a1d9baf21fff94edb62d9ab00a
7
- data.tar.gz: 7289fd2374370abb664e66d6baa2c0c35ee8a447781f4a937a0a9e662f8068eeaf6459075beb48c443ed0a2dd56f635464b682d90ab924b32a76716634954416
6
+ metadata.gz: 95c7f7e9b827b1da9dc6ef7f1854ec56a6b497e5818f601ad51fc48f5429b1c16e82f2902d27e6db68b07a2b247c3ed7e80e2aa36dbf4264101e8315af1d2e9b
7
+ data.tar.gz: 5f926d0ebf7dec4bfcc6e72eaffddd28d9dcacd70e45758886d4c6689fa5ccacd9677c165f5bd9a25ceff1cefa13304166fdbc1825c124796b9a29d912ab2b62
@@ -5,10 +5,12 @@ module Randamu
5
5
  ALPHABET = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
6
6
  NUMERIC = '0123456789'
7
7
  SPEACIAL = '!@#$%&*()_+'
8
-
8
+ USERNAME_TYPES = %i[default funny]
9
9
  class << self
10
10
  def username(type: :default)
11
- load_data("names.usernames.#{type}").sample
11
+ return load_data("names.usernames.#{type}").sample if USERNAME_TYPES.include?(type)
12
+
13
+ load_data('names.usernames.default').sample
12
14
  end
13
15
 
14
16
  def password(length: 8, special: true, numeric: true, alphabet: true)
@@ -20,12 +22,12 @@ module Randamu
20
22
  end
21
23
 
22
24
  def phone(state: Dictionary::STATES.keys.sample, country_code: false)
23
- base_phone_number = "(#{load_data("phone.ddd.#{state}").sample}) " + phone_number
25
+ base_phone_number = "(#{load_data("phone.ddd.#{state.upcase}").sample}) " + phone_number
24
26
  country_code ? "+55 #{base_phone_number}" : base_phone_number
25
27
  end
26
28
 
27
29
  def phone_only_numbers(state: Dictionary::STATES.keys.sample, country_code: false)
28
- base_phone_number = load_data("phone.ddd.#{state}").sample.to_s + phone_number
30
+ base_phone_number = load_data("phone.ddd.#{state.upcase}").sample.to_s + phone_number
29
31
  country_code ? "55#{base_phone_number}" : base_phone_number
30
32
  end
31
33
 
@@ -48,6 +50,6 @@ module Randamu
48
50
  end
49
51
 
50
52
  # private methods from NameGenerator
51
- private_class_method :first_name, :last_name, :full_name, :custom_name
53
+ private_class_method :first_name, :last_name, :full_name
52
54
  end
53
55
  end
@@ -9,7 +9,7 @@ module Randamu
9
9
  %w(A+ A- B+ B- AB+ AB- O+ O-).sample
10
10
  end
11
11
  def gender
12
- %w(male female other).sample
12
+ %w(Masculino Feminino Outro).sample
13
13
  end
14
14
 
15
15
  def marital_status
@@ -1,17 +1,12 @@
1
1
  module Randamu
2
2
  class Text < Base
3
+ FORMATS = %i(upcase downcase capitalize)
3
4
  class << self
4
5
  def word(format: nil)
5
- case format
6
- when :upcase
7
- load_data('texts.lorem').sample.upcase
8
- when :downcase
9
- load_data('texts.lorem').sample.downcase
10
- when :capitalize
11
- load_data('texts.lorem').sample.capitalize
12
- else
13
- load_data('texts.lorem').sample
14
- end
6
+ word = load_data('texts.lorem').sample
7
+ return word.send(format) if format && FORMATS.include?(format.to_sym)
8
+
9
+ word
15
10
  end
16
11
 
17
12
  def title(words: 3)
@@ -12,11 +12,7 @@ module NameGenerator
12
12
  load_db(:last).sample
13
13
  end
14
14
 
15
- def full_name(gender: nil)
16
- "#{first_name(gender: gender)} #{last_name}"
17
- end
18
-
19
- def custom_name(length: 3, gender: nil)
15
+ def full_name(gender: nil, length: 2)
20
16
  generate_custom_name(first_name(gender: gender), length)
21
17
  end
22
18
 
@@ -36,4 +36,4 @@ module Dictionary
36
36
  norte: %w[AM RR AP PA TO RO AC],
37
37
  nordeste: %w[MA PI CE RN PB PE AL SE BA]
38
38
  }.freeze
39
- end
39
+ end
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.2
4
+ version: 0.0.3
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-03 00:00:00.000000000 Z
11
+ date: 2024-10-04 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Random data generators
14
14
  email: jorgecoutinhodsn@gmail.com