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 8451889
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T11:21:44+00:00 2026-06-10T11:21:44+00:00

I try create ruby class with included Enumarable So insode view I try render

  • 0

I try create ruby class with included Enumarable
So insode view I try render class which has each method and should return object builded for specific content_id

Here is view which use this code some_file.haml

.
.
.
%table{:border => "0"}
  %thead
    %tr
      %td Files
      %td Views
      %td Comments
      %td Likes 
  %tbody
    - render 'content_stats_row', :collection => @graphs.content_stats_table, :as => :row
.
.
.

Here is my class for @graphs

module FusionGraphs
  class ContentStatsTable
    include Enumerable

    def initialize(content_ids, start_date, end_date)
      @content_ids, @start_date, @end_date = content_ids, start_date, end_date 
    end

    def summarized_content
      @summarized_content ||= Hash[ Content.where(:id => @content_ids).value_of(:id, :name) ]
    end

    def summarized_comments
      @summarized_comments ||= Comment.where(:content_id => @content_ids)
                                  .where('date(created_at) between ? and ? ', @start_date, @end_date)
                                  .group(:content_id)
                                  .count
    end

    def summarized_views
      @summarized_views ||= View.where(:viewable_type => 'Content', :viewable_id => @content_ids)
                            .where('date(created_at) between ? and ? ', @start_date, @end_date)
                            .group(:viewable_id)
                            .count

    end

    def summarized_likes
      @summarized_likes ||= Like.where(:content_id => @content_ids)
                            .where('date(created_at) between ? and ? ', @start_date, @end_date)
                            .group(:content_id)
                            .count
    end

    def each
      @rows ||= @content_ids.map do |content_id|
              OpenStruct.new( :content_name => summarized_content[content_id],
                              :views => summarized_views[content_id] || 0,
                              :comments => summarized_comments[content_id] || 0,
                              :likes => summarized_likes[content_id] || 0
                            )
             end
    @rows.each {|row| yield row }
    end

  end
end

I cant get results from ** render ‘content_stats_row’, :collection => graphs.content_stats_table, :as => :row **
It is not working
What I’m doing wrong?

  • 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-10T11:21:46+00:00Added an answer on June 10, 2026 at 11:21 am

    In your haml view file you placed (-)hyphen before render, it should be (=) equal.

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

Sidebar

Related Questions

I try to create a simple heroku app which clones a git repository, invokes
I create a custom class which I call MyClass in a module MyModule module
I'm a new user of Ruby on rails and I try now to create
I try create a map for open ~/.vimrc, but open the ~/.vimrc only when
I want to try create something like Zend's Server Pagecache. What I want to
I try to create donate via PayPal button and add custom select with amount.
I try to create styles with first-child and last-child items but I encountered a
I try to create my own linux bash script that calls truecrypt for mounting.
Im try to create a spinner dynamically on press of a button. this is
I try to create the simplest WinAPI window using assembly NASM. I have problem

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.