class Object

Constants

TRANSLATION_STORE

Public Instance Methods

secret_token() click to toggle source
# File lib/generators/new/templates/secret_token.rb, line 14
def secret_token
  token_file = Rails.root.join('.secret')
  if File.exist?(token_file)
    # Use the existing token.
    File.read(token_file).chomp
  else
    # Generate a new token and store it in token_file.
    token = SecureRandom.hex(64)
    File.write(token_file, token)
    token
  end
end