0
votes
1answer
32 views

Rails: Get the Class Name of a Child Class in a Parent Class Method

I have a STI table (Vote) with many children (Tag::Vote, User::Vote, Group::Vote, etc). All the children classes share a very similar method that looks like this: def self.cast_vote(params) value = ...
0
votes
2answers
24 views

Scaffolding - rails generate - data migrate def in class

I'm new to Rails - I started a new rails app rails new test, then rails generate scaffold Name column1:datatype column2:datatype In the tutorial once I open the 12345678timestamp_create_names.rb file ...
2
votes
3answers
196 views

Rails - Why use self.current_user = user in sign_in method

I have finished the Ruby on Rails Tutorial by Michael Hartl. I know some basic ideas about instance variable, getters and setters. The sign_in method is here def sign_in(user) ...
0
votes
1answer
108 views

before_create still saves

Before everything i would like to thank you for your help I have a model like this: attr_protected nil belongs_to :product belongs_to :user before_create :add_ammount def ...
1
vote
1answer
205 views

What is the value of self in a Rails model and why aren't obvious instance methods available?

I have a custom accessor method in my rails 3.1.6 app that assigns a value to an attribute, even if the value is not present.The my_attr attribute is a serialized Hash which should be merged with the ...
4
votes
2answers
719 views

When to use self in Model?

Question: when do I need to use self in my models in Rails? I have a set method in one of my models. class SomeData < ActiveRecord::Base def set_active_flag(val) self.active_flag = val ...
0
votes
1answer
320 views

using self to get current object in model, rails

i was wondering if it was possible to get the current object in a model? ie i have a FavoriteRelationship model which belongs_to :user belongs_to :lesson my lesson model is has_many ...
0
votes
1answer
36 views

rails controller good practices

I have a SpecificController as below, class SpecificController < ApplicationController def specific_search # ===== Main ======= self.set_instance_variables ...
0
votes
3answers
197 views

rails, how to pass self in function

message and user. my message belongs_to user and user has_many messages. in one of my views, i call something like current_user.home_messages? and in my user model, i have... def home_messages? ...
0
votes
3answers
695 views

Ruby On Rails self saving in model

I have a function in my model that changes is as follows: def compare self.dirty = 1 if self.dirty == 0 compare_recursive(0, MergeDigestTree.all) self.dirty = 0; end Do ...
2
votes
5answers
111 views

How to get the name of an object in Ruby?

I want to write a simple debug method in Ruby for my Rails app: foo = "bar" debug(foo) The debug method would return the string "foo: bar". How do you get the name of the object (foo, in this ...
4
votes
4answers
2k views

Use of ruby self keyword?

from what I understand of the self keyword, it simply refers to the current instance of the class. Isn't this the default behaviour at all times anyways? For example, isn't self.var_one = ...
1
vote
2answers
728 views

Setting attribute from model without using self does't works

Device model has following attributes: name, version and full_name Full name is name + version: class Device < ActiveRecord::Base def prepare full_name = (!show_version || version.nil?)? ...
7
votes
3answers
4k views

(Ruby,Rails) Context of SELF in modules and libraries…?

Quick question regarding the use of "SELF" inside a module or library. Basically what is the scope/context of "SELF" as it pertains to a module or library and how is it to be properly used? For an ...
1
vote
2answers
70 views

Is it possible to look beyond self in self.posts.find?

Expanding on recent_posts_on_self below, I want to add an all_recent_posts_on_self method but I'm not sure if it's possible using the syntax self.posts.find. On the other hand, ...