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

I tried the following:

class DataEntry
  include DataMapper::Resource
  property :id,         Serial,   :key => true
  property :some_data,    Text,   :length => 1000000
  property :created_at, DateTime

  after :save do |entry|
    if entry.created_at.strftime('%T') == "00:00:00"
      @new_datetime = ((entry.created_at.to_time+1)-3600).to_datetime
      entry.update!(:created_at => @new_datetime)
    end
    return true
  end
end

This should change the time an entry has been saved to 00:00:01 if it's 00:00:00 (hours:min:sec). I know my code is dirty (I'm learning ruby, datamapper, etc, I'm a bit of a noob ;) ), but what's even worse: it doesn't have any effect on the model. It just saves as if my hook wouldn't exist. What am I doing wrong?

(What's maybe also important: I'm using this with sinatra, so I can't access rails helpers like n.hours etc.!)

Thanks in advance! ;)

share|improve this question

1 Answer

up vote 1 down vote accepted

why are you using after?

i would suggest to use before to avoid double operation on object.

by using self you can omit redundant entry using

and no need to return true

also, why instance variables?

before :save do
  if self.created_at.strftime('%T') == "00:00:00"
    self.created_at = ((self.created_at.to_time+1)-3600).to_datetime
  end
end
share|improve this answer
haha yes, it works!! – le_me Nov 20 '12 at 18:36

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.