Reputation: 318
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