Module: IntercomApp::Utils

Included in:
Generators::InstallGenerator
Defined in:
lib/intercom-app/hub_secret_generator.rb

Instance Method Summary collapse

Instance Method Details

#random_hub_secretObject



10
11
12
# File 'lib/intercom-app/hub_secret_generator.rb', line 10

def random_hub_secret
  Digest::SHA1.hexdigest random_string
end

#random_stringObject



6
7
8
# File 'lib/intercom-app/hub_secret_generator.rb', line 6

def random_string
  (0...20).map { (65 + rand(26)).chr }.join
end