An attribute accessor in Ruby is a way of declaring attribute accessibility (read and write) via Ruby's metaprogramming facilities.

learn more… | top users | synonyms

0
votes
0answers
10 views

Specify attribute list in attr_accessor with method call

I want to create large number of attributes which can be done with ease if constructed with method call like this, attr_accessor :attr_list def attr_list [:x1, :y1, :x2, :y2] end This is ...
1
vote
1answer
84 views

Virtual attributes in rails 4

How can I use virtual attributes(getter, setter) in rails 4, as 'attr_accessible' removed. I am getting issue, here def tags_list @tags = self.tags.collect(&:name).join(', ') end I ...
3
votes
1answer
34 views

attr_accessor or custom methods duplicate method names confusion

I do understand that Ruby supports short-hand style of calling methods i.e: 1.+(2) is same as 1+2 (and I still think if it related to my situation), but I got really confused why attr_accessor methods ...
1
vote
0answers
30 views

Access a column only with a particular method in rails 3

Suppose I have a model User with two attributes: :name and :age. I want the :age column to be accessible only to "def manipulate_age()"(some method). This also includes, user.update_attributes!(:age ...
1
vote
0answers
40 views

Non-model field is not validated in nested form

I'm trying to add a validation of 'size' property for 'Creative' model. 'Creative' model is one-to-one related to the 'Ad', and it's field are displayed as a nested form in the 'Ads' form(code ...
1
vote
1answer
39 views

Ruby attr_accessor and collect bracket

I thought I understood attr_* and the shorthand notation for map(&:name.to_proc).join(' '), but I ran across this today. Why does setting attr_accessor keep my from being able to write something ...
4
votes
5answers
220 views

Ruby instance_eval on a class with attr_accessor

I understand the basic difference between instance_eval and class_eval. What I've discovered though when playing around is something strange involving attr_accessor. Here's an example: A = Class.new ...
1
vote
2answers
81 views

Can't mass assign protected attributes - it's mass assigning fields in attr_accessor

Can't mass-assign protected attributes: password, password_confirmation Both of those fields are not mapped in the database, they are just fields in the form that I want to use to enable some ...
-2
votes
1answer
51 views

Ruby: Creating an “attr_accessor :arg1, :arg2, :arg3” functionality [closed]

So I want to be able to define a class like this: class MyHouse < Home things :bed, :lamp, :chair end Where Home takes care of putting those "things" in an array, like this: class Home ...
0
votes
0answers
53 views

Rails: Trouble assigning non-database values with attr_accessor

I've created a User model in Rails 3. I'm trying to create a new model from a form. The form has a :password field <%= f.label(:password) %> <%= f.password_field(:password) %> but the ...
0
votes
2answers
87 views

Assigning attr_accessor using fixtures in Rails

I have a simple Rails 3 model, with an attr_accessor that doesn't have a field in the database, and I need to set it up using fixtures, because of my initialization setup. But when I try it, I get an ...
5
votes
1answer
139 views

Ruby attr_accessor vs. getter/setter benchmark: why is accessor faster?

I just tested attr_accessor against equivalent getter/setter-methods: class A # we define two R/W attributes with accessors attr_accessor :acc, :bcc # we define two attributes with ...
0
votes
0answers
86 views

Carrierwave upload in rails not working

I am building a photo uploader for my app. I have made a Photo model so that a user can have more photos "assigned" to it. I want to be able to see all the photos that a user has uploaded. My problem ...
1
vote
1answer
421 views

Using attr_accessor in rails 3

I've always had consistency problems with attr_accessor in rails. I've never figured out what detail I am missing...so, I thought I would put a question here. I have the following: ...Controller ...
0
votes
3answers
204 views

ruby restrict attr_accessor in subclass

I want restrict the access of superclass's method in subclass class Parent attr_accessor :first_name, :last_name def initialize(first_name, last_name) @first_name, @last_name = first_name, ...
0
votes
3answers
129 views

ActiveModel::MassAssignmentSecurity::Error in SchedulesController#create

im trying to declare some virtual attributes that will be used to combine date and time together given me date time, though i keep getting the following error. as you can see from the code examples ...
0
votes
0answers
202 views

Defining attr_accessor for class instance variables - Ruby

I am trying to create an accessor for a class instance variable. I am calling the attr_accessor method from a module which is included in the class. See the code below: module Persistence def ...
0
votes
2answers
73 views

Rails already has getters and setters without me setting an attr_accessor. How do I stop all setters ?

Here is my class, as you can see, no attr_accessor class LegacyBlogPost < ActiveRecord::Base establish_connection Rails.configuration.database_configuration['blogs'] self.table_name = ...
0
votes
1answer
190 views

Rails model attr_accessor attribute not saving?

Here is the structure I'm working with: app/models/model.rb class Model < ActiveRecord::Base attr_accessor :some_var end app/models/model_controller.rb class ModelsController < ...
0
votes
2answers
241 views

Rails 2. Calling virtual attribute's setter by update_attributes

I have one extra attribute in my form (:pagesize) which is not in database. There is also a setter for it: def pagesize= pagesize self.preferences["pagesize"] = pagesize end I want ...
0
votes
3answers
474 views

Can't mass-assign protected attributes: stripe_card_token

I'm trying to create a charge with stripe. I get the following error when attempting to create order object, but I have set attr_accessor :stripe_card_token. Does anyone know what I am doing wrong? ...
2
votes
1answer
155 views

attr_accessible, attr_accessor, I would like to know what they do

I'm doing my first steps in Rails and in object-oriented programming. There is something quite fudemental that I would like to understand: why do we need attr_accessible within the model? I have read ...
0
votes
1answer
144 views

How to get attr_accessor really working in rails?

Here are the code snippets which are working for me User Model class User < ActiveRecord::Base def full_name [first_name,last_name].join(" ") end def full_name=(name) split = ...
0
votes
1answer
39 views

Rails Attribute Not Showing / Saving as Blank

The attribute, balanced_card_uri, is saving as blank and not showing on this raise: https://img.skitch.com/20120916-fpmxabwg6m4ys3y84rkti615iq.jpg Here's the code from customer.rb: ...
0
votes
2answers
69 views

Error saving record when custom validation is in place

I have this API that saves videos, indexes them and updates them. In order to reduce the times the indexing was happening I decided to add some validation to only index videos that had changed or that ...
0
votes
0answers
185 views

Can't access a model instance variable in my controller that I set in a nested model

I'm tying myself in knots here. As described in another question (Does ActiveRecord have a way of reporting that a nested attribute model has been destroyed?), I'm trying to send back via AJAX/JSON ...
0
votes
1answer
116 views

Why doesn't my instance variable point to a Watir::Browser instance?

I'm really confused about this. I'm using the Ruby class below in an automated test suite: class FlightSearchPage attr_accessor :page_title def initialize(browser, page) @browser = ...
1
vote
2answers
258 views

data_mapper, attr_accessor, & serialization only serializing properties not attr_accessor attributes

I'm using data_mapper/sinatra and trying to create some attributes with attr_accessor. The following example code: require 'json' class Person include DataMapper::Resource property :id, ...
1
vote
1answer
69 views

ruby pickaxe book says attr_accessor is class method

In the ruby pickaxe book, there is a line that says attr_accessor is a class method defined in class Module But isn't attr_accessor an instance method? Am I missing something here?
1
vote
1answer
137 views

Attribute accessor with a datatype

I am looking to set an attribute_accessor with a datatype associated with it like how we have fields in the model that have database that have datatypes like string , integer etc associated with them. ...
1
vote
0answers
43 views

trouble saving to intersect table following railscast

I'm trying to create nested attributes as outlined in this railscast http://railscasts.com/episodes/167-more-on-virtual-attributes?view=asciicast In my example, I am trying to associate an activity ...
0
votes
1answer
402 views

Cannot access attr_accessor defined variables

I am using Thinking Sphinx to run searches and I get the appropriate ActiveRecord Models fine. The problem is, I want to create an appropriate link path and text on each model, then send the info to ...
0
votes
2answers
170 views

Ruby attr_accessor with method name != instance variable name

Is there a short way to do this? def value @val end def value=(value) @val = value end
1
vote
0answers
134 views

conditional if using attr_accessor

I have a simple model that needs a conditional validation. I feel like I have it set up correctly but my app is not responding as expected. Wondering if anyone sees my error or has some wisdom to ...
1
vote
2answers
74 views

How to access accessor's instance variable from a subclass?

How to access attr_accessor's instance variable from a subclass? class A attr_accessor :somevar @somevar = 123 puts @somevar end class B < A def meth puts @somevar end end ...
0
votes
2answers
193 views

Ruby: access to attr_accessor's method from internal method

I have a code: class A attr_accessor :somevar def a somevar = 'something' puts @somevar end def b send :somevar=, 'something' puts @somevar end end A.new.a #=> nil ...
1
vote
1answer
159 views

Virtual attribute is not set before attr_encrypted uses said virtual attribute for encryption key

When encryption_key is called by attr_encrypted, :passphrase hasn't been set. The encryption key ends up being a sha1 hash of the salt; it should be a sha1 hash of the passphrase and salt. The salt ...
1
vote
1answer
317 views

How do you output all attributes including attr_accessor attributes?

Let's say I have a user class with columns name and email: Class User < ActiveRecord::Base attr_accessor :gender end user = User.new(:gender => 'male', :name => 'joe', :email => ...
1
vote
2answers
116 views

How to enhance attr_accessor in ruby?

I want to implement a (class) method attr_accessor_with_client_reset, which does the same thing as attr_accessor, but on every writer it additionally executes @client = nil So, for example, ...
0
votes
1answer
432 views

Rails: Attr accessor undefined method in the setter

I have this line of code in a User model: attr_accessor :birthdate In the same model, I have a method that tries to set that birthdate by doing this: self.birthdate = mydate Where mydate is a ...
3
votes
1answer
502 views

Cache Model array with attr_accessor?

When I add a attr_accessor to my model without the column in the database, I can add temporary data to an array of class objects. My example : class User < ActiveRecord::Base attr_accessor ...
1
vote
1answer
520 views

Do I need to use attr_accessor?

I am planning to use conditional validations along the lines of what is described in this railscast In the railscast, which is rather old, attr_accessor is used, (skip to the later portion of the ...
6
votes
2answers
3k views

What would a default getter and setter look like in rails?

I know that I can write attr_accessor :tag_list to make a virtual attribute tag_list for an object in Rails. This allows there to be a tag_list attribute in forms for the object. If I use ...
0
votes
1answer
135 views

Ruby attr_accessor not being read

I am developing a game with Ruby using the Gosu and Chipmunk gems. I have the following class in the file named HeroBullets.rb: require 'gosu' class HeroBullets attr_accessor :y def ...
4
votes
2answers
2k views

attr_accessor and password validation on update

I have this code in my user model: class User < ActiveRecord::Base attr_accessible :email, :password, :password_confirmation attr_accessor :password before_save :encrypt_password ...
7
votes
2answers
1k views

attr_accessor strongly typed Ruby on Rails

Just wondering if anyone can shed some light on the basics of getter setters in Ruby on Rails with a view on strongly typed. I am very new to ruby on rails and predominately have a good understanding ...
0
votes
1answer
304 views

HTTParty default_params Aren't Able to be Set With attr_accessor

I have a class that has a constructor. The constructor passes a param to HTTParty's default_params. However, when I analyze the request, it isn't passing the param. Here's the code: module Dance ...
1
vote
3answers
738 views

Ruby: dynamically generate attribute_accessor

I'm trying to generate the attr_reader from a hash (with nested hash) so that it mirror the instance_variable creation automatically. here is what i have so far: data = {:@datetime => ...
2
votes
2answers
291 views

How to retrieve 'attr_accessor' attribute names?

I am using Ruby on Rails 3.0.9 and I would like to retrieve all attr_accessor attribute names starting with a specific string. That is, ... in my module I have: attr_accessor ...
0
votes
1answer
317 views

Ruby object undefined method

I had this: class ProposalsController < ApplicationController def forkIt return "FFFFFUUUU" end end But when I tried to access the method (so I can gave my FFFFUUUU RAGE) it told me ...

1 2