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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T19:16:45+00:00 2026-05-31T19:16:45+00:00

What is analog in datamapper for .present? method? I have code from rails app

  • 0

What is analog in datamapper for .present? method?

I have code from rails app an d wan t to reuse it is Sinatra

ex:

  def encrypt_password
    if password.present?
      self.password_salt = BCrypt::Engine.generate_salt
      self.password_hash = BCrypt::Engine.hash_secret(password, password_salt)
    end
  end

in model I ave before save callback

before :save, :encrypt_password
  • 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-05-31T19:16:46+00:00Added an answer on May 31, 2026 at 7:16 pm

    The present? Method in ActiveSupport is defined as follows:

    class Object
        def present?
          !blank?
        end
    
        def blank?
          respond_to?(:empty?) ? empty? : !self
        end
    end
    

    (Source: http://api.rubyonrails.org/classes/Object.html#method-i-present-3F)

    You could extend Object like that, too. It checks whether the Object is not blank. The method blank? itself checks whether the Object responds to empty?. This is mostly for strings. If the Object does not respond to empty?, the method simply returns !self. So present? would simply return self. Therefore you could also write your code as

      def encrypt_password
        if password
          self.password_salt = BCrypt::Engine.generate_salt
          self.password_hash = BCrypt::Engine.hash_secret(password, password_salt)
        end
      end
    

    The only advantage of the present? method is, that it does not treat an empty string as present, whereas the second method does.

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

Sidebar

Related Questions

perl hex() analog in python how to? I have next perl code: my $Lon
I have built an emulated Analog VU Meter for a recording app and have
Is there any analog to ActiveRecord's find_by_ method in Datamapper ex: @user = User.find_by_email(params[:email])
Does Eclipse have an analog to Visual Studio's Immediate Window, a window where I
Let's say I have a 12-bit Analog to Digital Converter (4096 bins). And let's
Does Java have some analog of Oracle's function MONTHS_BETWEEN ?
What is C# analog of C snprintf()? In C code here we use snprintf(buf,
What is C# analog of C fread()? In C code here we use fread(inbuf,
Is there any analog of django's forms in Ruby on Rails? Thanks, Alexey Zakharov
I have found this analog clock tutorial here: http://www.codeproject.com/KB/selection/AnalogClockControl.aspx Now is it possible to

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.