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_secret ⇒ Object
10 11 12 |
# File 'lib/intercom-app/hub_secret_generator.rb', line 10 def random_hub_secret Digest::SHA1.hexdigest random_string end |
#random_string ⇒ Object
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 |