Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

im working with activemerchant and it raise me this error when validating the card is this ok in rails 3? thank you in advance more power to all

belongs_to :reservation

  attr_accessor :card_number, :card_verification

  validate :validate_card, :on => :create

  def validate_card
    unless credit_card.valid?
      credit_card.errors.full_messages.each do |message|
        errors.add_to_base "error"
      end
    end
  end

    def credit_card
    @credit_card ||= ActiveMerchant::Billing::CreditCard.new(
      :type               => card_type,
      :number             => card_number,
      :verification_value => card_verification,
      :month              => card_expires_on.month,
      :year               => card_expires_on.year,
      :first_name         => first_name,
      :last_name          => last_name
    )
  end

it is pointing to Undefined method add_to_base

share|improve this question
sup bro. i would like to know if you get any validation errors with the command validate :validate_card, :on => :create cos i keep having validation errors with the first name, last_name fields – Uchenna Okafor May 23 '12 at 12:49

2 Answers

up vote 41 down vote accepted

add_to_base method was removed from rails 3. You should use errors[:base] << "error" instead.

share|improve this answer
This answer needs to get higher on Google. This could have saved me a lot of time. – Peter Anselmo Jun 11 '12 at 14:58
Glad it helped :) – Vasiliy Ermolovich Jun 11 '12 at 15:28

In your model just make:

:add_to_base=> false

Access it in your controller as:

model_instance.errors.messages
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.