user2026178
user2026178

Reputation: 318

Descriptive Statistics Gem Ruby on Rails

I am trying to use descriptive statistics gem in rails on scores entered by the user. However, it keeps giving me this error.

uninitialized constant ScoresController::DescriptiveStatistics

scores_controller.rb

    def index                                      
          @statsD = User.all.extend(DescriptiveStatistics)
    end

index.html.erb

<h1>Simple Stats:</h1>
                        <%= @statsD %>

I am new to rails so I'm struggling with the github directions for rails.

Upvotes: 0

Views: 405

Answers (1)

rdupz
rdupz

Reputation: 2313

Have you tried restarting your app after the gem installation ?

Upvotes: 1

Related Questions