blackstack-core 1.2.9 → 1.2.10

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: 5c877e577233283db175f62ba92c4975a4cdac81f9ea44ecc76cdc1645ab30d6
4
- data.tar.gz: 92f6bc2e8a72b0b56caed5a323c518066392be8a3a6fd9fd258a5e0faadadd95
3
+ metadata.gz: 9f9ada61d055548918448b48e7cf02f31226fefb8721d35b381a796f215df7f4
4
+ data.tar.gz: a28cc19fc248d0263ab165218003b225cb25311d3e985ccc2ae1523c79049837
5
5
  SHA512:
6
- metadata.gz: 38fbaf98892cbafc15d7e94ded840677e5fe1082531be91768fff2fbbee2e0475bb1a09be6541686d4be90c56118ac303a37b8286bca5f7689a29abdb6661b66
7
- data.tar.gz: fd957c0c43e294885b08ef3805136c2a4acc720339d9fcfeba54f3da642ca141f5cc7b159643a6216cc4a8b28a0d20e99773f8168a76ea09d59416e4be70632b
6
+ metadata.gz: 733b6b5f3de03db04524a025b8759f1ed2060bb1bab93f232a4926ea83e352fea8f5fff3c15935c2220bdcb207a7b4cde1877ef26a97042729d431aff96a1e52
7
+ data.tar.gz: a9e8dde42397c2364e4b8e74c271adc3d8697481ce79a09c9cc104f519c6383aa864b2d1604cec8028fcb50fca5526214afc30bd0138b8a7097d92d6a5a93d7b
@@ -1,5 +1,24 @@
1
1
  require_relative '../lib/blackstack-core'
2
2
 
3
+ # inform if it is a personal email address, and who is hosting that email
4
+ a = [
5
+ 'jloftus@qsd.fm',
6
+ 'edg@egadesign.net',
7
+ 'ghorn@strtrade.com',
8
+ 'rbaker@luxurylakeoconee.com',
9
+ 'sabbie.wijaya@gmail.com',
10
+ 'stlbodj@swbell.net',
11
+ 'OKnott@knottmechanical.com',
12
+ 'ctekwani@gmail.com',
13
+ 'billy@altgrouplv.com',
14
+ 'bhaney@kingcastling.com',
15
+ ]
16
+ a.each { |s|
17
+ print "'#{s}'.personal_email?... "
18
+ puts "#{s.personal_email?.to_s} (handler: #{s.mail_handler})"
19
+ }
20
+ exit(0)
21
+
3
22
  # returns true if the string meets all the security requirements for a password
4
23
  puts ""
5
24
  puts "Passwords"
data/lib/extend_string.rb CHANGED
@@ -26,13 +26,13 @@ class String
26
26
  # raise an exception if `email` is not a valid email address.
27
27
  # return if the email domain is gmail, hotmail, outlook, yahoo, comcast, aol, msn or sbcglobal.
28
28
  def personal_email?
29
- BlackStack::Netting.isPersonalEmail?(self.to_s)
29
+ return BlackStack::Netting.isPersonalEmail?(self.to_s)
30
30
  end
31
31
 
32
32
  # raise an exception if `email` is not a valid email address.
33
33
  # return an array with the companies who are hosting an email address, by running the linux command `host`.
34
34
  def mail_handler
35
- BlackStack::Netting.getMailHandler(self.to_s)
35
+ return BlackStack::Netting.getMailHandler(self.to_s)
36
36
  end
37
37
 
38
38
 
data/lib/functions.rb CHANGED
@@ -844,7 +844,7 @@ module BlackStack
844
844
  # extract the domain from the email
845
845
  domain = value.split('@').last
846
846
  #
847
- domain~=/gmail\.com/ || domain~=/hotmail\.com/ || domain~=/outlook\.com/ || domain~=/yahoo\.com/ || domain~=/comcast\.com/ || domain~=/aol\.com/ || domain~=/msn\.com/ || domain~=/sbcglobal\.net/
847
+ return domain=~/gmail\.com/ || domain=~/hotmail\.com/ || domain=~/outlook\.com/ || domain=~/yahoo\.com/ || domain=~/comcast\.com/ || domain=~/aol\.com/ || domain=~/msn\.com/ || domain=~/sbcglobal\.net/ ? true : false
848
848
  end
849
849
 
850
850
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blackstack-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.9
4
+ version: 1.2.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leandro Daniel Sardi