Class: OutboundHosts
- Inherits:
-
Object
- Object
- OutboundHosts
- Defined in:
- lib/support/outbound_hosts.rb
Class Method Summary collapse
Class Method Details
.list ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/support/outbound_hosts.rb', line 5 def self.list uris = Set.new Dir['lib/**/*.rb'].each do |file| content = File.read(file) content.each_line do |line| next if line =~ /homepage_url/ if line =~ /("|')(https:\/\/.*)("|')/ uri = URI.parse($2) uris << [uri.host, uri.port] end end end uris.each do |uri| puts "#{uri.first} #{uri.last}" end end |