Method: Dbhero::Configuration#reset

Defined in:
lib/dbhero/configuration.rb

#resetObject



30
31
32
33
34
35
36
37
38
39
40
# File 'lib/dbhero/configuration.rb', line 30

def reset
  self.authenticate = DEFAULT_AUTHENTICATE
  self.current_user_method = DEFAULT_CURRENT_USER_METHOD
  self.user_representation = DEFAULT_USER_PRESENTATION
  self.google_api_id = DEFAULT_GOOGLE_API_ID
  self.google_api_secret = DEFAULT_GOOGLE_API_SECRET
  self.custom_user_auth_condition = DEFAULT_CUSTOM_USER_AUTH_CONDITION
  self.max_rows_limit = DEFAULT_MAX_ROWS_LIMIT
  self.csv_delimiter = DEFAULT_CSV_DELIMITER
  self.cached_query_exp = DEFAULT_CACHED_QUERY_EXP
end