Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7411953
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T06:27:58+00:00 2026-05-29T06:27:58+00:00

I have a class variable that I would like to set from an initilizer

  • 0

I have a class variable that I would like to set from an initilizer and have the value kept from then on. The example below works for only the first page load. Is there a better way to do this?

app/models/token.rb

class Token    
  class << self
    attr_accessor :salt
  end
end

config/initilizers/token.rb

Token.salt = "savory hash"
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T06:27:59+00:00Added an answer on May 29, 2026 at 6:27 am

    In development mode, your class is going to get reloaded with every request, so the value that’s set in an initializer at app startup will not persist when the class is reloaded after the first request. (The result of “config.cache_classes = false” in your development.rb).

    However, if you want to set a value in an initializer and have it persist in development mode, you can either add it as a constant:

    initializers.rb

     SALT='savory_hash'
    

    OR as an application config variable:

    application.rb

     module YourAppsName
      class Application < Rails::Application
       config.token_salt = "savory_hash"
      end
     end
    

    which would be accessible anywhere in the app with:

     Rails.application.config.token_salt
    

    Of course, if you enable class caching in your environment, you should find that your variable’s value will persist without doing anything of the above.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string variable that represents the name of a custom class. Example:
If I have a class (like below) and in a function I set a
I have a C++ helper class that I use with objective-C. I would like
I would like to initialize a class, then call an attribute which was set
I have a private class variable that holds a collection of order items: Private
Say I have a class which represents a person, a variable within that class
I have a global variable that is an instance of my custom class. How
I have a Class named Constants that contains all the constant variable in my
I have an initialization class that preloads content into a variable (probably a list
I have a custom class that has as an instance variable of a coordinate:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.