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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T06:46:24+00:00 2026-06-09T06:46:24+00:00

I have a function that does this: def blank_to_negative(value) value.is_number? ? value : -1

  • 0

I have a function that does this:

  def blank_to_negative(value)
    value.is_number? ? value : -1
  end

If the value passed is not a number, it converts the value to -1.

I mainly created this function for a certain model, but it doesn’t seem appropriate to define this function in any certain model because the scope of applications of this function could obviously extend beyond any one particular model. I’ll almost certainly need this function in other models, and probably in views.

What’s the most “Rails Way” way to define this function and then use it everywhere, especially in models?

I tried to define it in ApplicationHelper, but it didn’t work:

class UserSkill < ActiveRecord::Base
  include ApplicationHelper
  belongs_to :user
  belongs_to :skill

  def self.splice_levels(current_proficiency_levels, interest_levels)
    Skill.all.reject { |skill| !current_proficiency_levels[skill.id.to_s].is_number? and !interest_levels[skill.id.to_s].is_number? }.collect { |skill| {
      :skill_id => skill.id,
      :current_proficiency_level => blank_to_negative(current_proficiency_levels[skill.id.to_s]),
      :interest_level => blank_to_negative(interest_levels[skill.id.to_s]) }}
  end 
end

That told me

undefined method `blank_to_negative’ for #

I’ve read that you’re “never” supposed to do that kind of thing, anyway, so I’m kind of confused.

  • 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-09T06:46:25+00:00Added an answer on June 9, 2026 at 6:46 am

    if you want to have such a helper method in every class in your project, than you are free to add this as a method to Object or whatever you see fits:

    module MyApp
      module CoreExtensions
        module Object
          def blank_to_negative
            self.is_number? ? self : -1
          end
        end
      end
    end
    
    Object.send :include, MyApp::CoreExtensions::Object
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to have a mapping function that does this: public static void
Here's the story... I have a jQuery function that does something, this function is
If I have a function that does not need to return a variable, is
I have a function that does a long task and I want to update
Say I have a function that does the following in Vb.net For i as
I have the following function that does string splitting: on splitText(aString, delimiter) set retVal
I have a class named toto which I send to a function that does
I need to write a little ruby function that does word wrapping. I have
I have a for loop in a search function, with a function that does
I have an eventhandler function for a textbox, that does the following, Searches the

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.