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

  • SEARCH
  • Home
  • 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 9215071
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T02:07:10+00:00 2026-06-18T02:07:10+00:00

In our application we have a gem that supplies common code for five web

  • 0

In our application we have a gem that supplies common code for five web sites running Rails applications. In the gem in the file lib/theme/controller_module.rb is the following code:

def application_javascripts(*items)
  @application_javascripts ||= []
  @application_javascripts += items
end

In the gem in the file helpers/theme_helper.rb is the following code:

def application_js_include_tag
  if @application_javascripts
    javascript_include_tag( *@application_javascripts)
  end
end

The theme gem is in each application’s Gemfile. In controller code and in helpers the application_javascripts executes to track which page-specific JavaScript is used on the page and the application_js_include_tag is placed at the bottom of the view to make only those few files available.

Unfortunately, it appears that @application_javascripts value is not updated in the view once the view has started to render. Additions to @application_javascripts that occur in a helper are not available to the view when application_js_include_tag is executed at the bottom of the page. Do I need a separate helper like application_javascripts with a variable defined there, and use both in application_js_include_tag? Or some other solution?

  • 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-06-18T02:07:11+00:00Added an answer on June 18, 2026 at 2:07 am

    From its behavior, it appears that a snapshot of @application_javascripts is taken at the time rendering starts. Execution of controller.application_javascripts during the rendering does not change the value of @application_javascripts available in the view. Defining in helpers/theme_helper.rb:

    def application_javascripts(*items)
      controller.application_javascripts(*items)
    end
    

    also does not change the value. What does work, is to reproduce the code so that @application_javascripts is changed by the code resident in the helper file. Defining in helpers/theme_helper.rb a duplicate of the controller code:

    def application_javascripts(*items)
      @application_javascripts ||= []
      @application_javascripts += items
    end
    

    works fine.

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

Sidebar

Related Questions

in our application we have a Java applet running inside a .NET browser control.
In our application we have a little query that looks like this: var selectedAgents
In many places in our application we have code like this: using(RAPI rapi =
We have two tables in our application that both have a ShowOrder column. We
Our application is a Java-GWT application that uses Guice-Persist and Guice-Servlet extensively. We have
In our application, I have seen code written like this: User.java (User entity) public
I have a new application starting that's using Rails 2.3.8 for stability concerns and
In our application we have a class that produces characters, and another that consumes
We have a program that uses QoS-sockets, our softphone application uses QoS for the
found a interesting problem during testing our web application. I have application on localhost

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.