0
votes
1answer
33 views

Rails - How can I sum all the fields and use the sum as a validation before entering values in database?

I have a form containing multiple fields that have integer inputs. I have basic validation on the fields like presence, inclusion, and numericality. The part that I am stuck at however is checking ...
0
votes
1answer
37 views

How do I add an empty attribute to stylesheet_link_tag “application”?

How do I add an empty attribute to <%= stylesheet_link_tag "application", :media => "all" %>? I want to add data-skrollr-stylesheet emty attribute to it, so the output html would be: <link ...
0
votes
1answer
17 views

Rails login problems with different model attributes

Firstly, I'm newbie to ROR. I have a User model: class User < ActiveRecord::Base attr_accessible :email, :name, :password, :password_confirmation,:gender,:date,:username has_secure_password ...
0
votes
0answers
54 views

Adding nested attributes to devise user model

At first glance it would seem this question has been answered before, but not on my case (most are related to mass assignment issues and/or mongoid.) I have not been able to find an answer even though ...
0
votes
1answer
19 views

Rails ActiveRecord conditionally protect an attribute from modification

I have a Message model with a content attribute (string) and a sent attribute (boolean). A message's content should be modifiable until it's been sent, after which that field should become read only. ...
0
votes
2answers
32 views

Changing attribute name in record objects

I have a query that selects a record of groups from a table. @groups = Group.all One of the attributes, id, is incompatible for the front-end framework that handles the JSON that is sent to it from ...
0
votes
0answers
53 views

How do you properly use attr_writer?

I read What is attr_accessor in Ruby? on accessors, and was wondering if this is an accurate assessment. If I define an attribute with attr_writer :<attribute>, then the attribute setter method: ...
0
votes
2answers
40 views

How to create method that converts attribute's value to new value

I have a form in which users input a number for the attribute :bytesize, which has an integer datatype. The number represents the amount of bytes for my object @catcher. I'd like to have a method ...
0
votes
0answers
112 views

Ruby Rails multiple virtual attribute single database field

Writing a ROR application in which a single database field (longitude) is to be displayed as multiple screen fields (long_degrees, long_minutes, long_seconds, long_direction). I am currently ...
0
votes
1answer
38 views

Converting an object's attribute to an array in Rails

I have a form in my Rails application, and in the form, there is a textbox that corresponds to :mylist, which is an attribute of my class Catcher's object @mycatcherobject In the form, people will ...
4
votes
2answers
203 views

Selecting Rails Models via Virtual Attributes

I have the two rails models Section & SectionRevision. A Section is mostly just a container that holds all the Revisions relating to itself. So most of the attributes for the Section are basically ...
2
votes
1answer
55 views

Rails detect if Attribute Changed Before Update - SystemStackError: stack level too deep

I want to detect whether an attribute has changed before a model has updated. I have the following (based on:http://api.rubyonrails.org/classes/ActiveModel/Dirty.html): before_update ...
0
votes
1answer
24 views

Unknown attribute when saving a nested form

I'm writing an engine with Rails 3. And I have there a generic_recipe which contains recipes like this: module EdibleRecipe class GenericRecipe < ActiveRecord::Base attr_accessible :recipe, ...
0
votes
1answer
25 views

Remove attribute from validates_uniqueness_of (Rails 2)

I have the follwing at the model: validates_uniqueness_if :posicao_bastidor, :message => "my message" When an error occurs, rails gives me the following message: "Posicao bastidor my message" ...
0
votes
1answer
59 views

ActiveRecord not updating attribute

Here is a code snippet and its resulting output. The code appears to update the attribute, but when I check the record manually in the database, there is no change. This is confirmed by .changed? ...
0
votes
0answers
31 views

How to add additional attribute to response in Rails application

This code: class SessionsController < Devise::SessionsController # POST /resource/sign_in def create resource = warden.authenticate!(auth_options) set_flash_message(:notice, ...
0
votes
3answers
55 views

Ruby - how to create dynamic model attributes?

I have an array with model attributes (these model attributes are columns in DB table). I am trying to iterate through this array and automatically create a record which I would like to save to DB ...
0
votes
2answers
43 views

rails 3 including fields from joint table

I have the folowing structure: Database: create_table :recipes do |t| t.string :name t.string :categoryname end create_table :ingredients do |t| t.string :name t.string :categoryname ...
0
votes
1answer
90 views

Remove attribute content on model using Carrierwave and callback

I'm trying to remove file attributes from the model when an uploaded file is remove (using a checkboxe). The file is removed correctly, but not the attributes. Can someone help me? I don't want to ...
0
votes
1answer
49 views

dynamic attribute for a rails model

I'm wondering what is the best way to achieve what I want :p I have a model 'ModelA' which has many 'ModelARate'. ModelARate contains a comment or a rate (or both). I don't want to calculate the ...
0
votes
1answer
46 views

Rails: return cloned object plus one more attribute

An object results in following JSON response: [{ "email":"admin@host.com", "id":2, "role_id":2, }] I want to add a custom is_admin attribute: [{ "email":"admin@host.com", "id":2, ...
0
votes
1answer
78 views

How can I translate model and attribute names of an Rails Engine?

The usual way to translate model and attribute names of a Rails project are: MyModel.model_name.human MyModel.human_attribute_name :myattribute or, when you are using a form for MyModel: ...
0
votes
2answers
64 views

Rails - one model, 2 kinds of validation rules

In an app I have 3 types of contact forms - in the model - the attributes :aaa, :bbb, :ccc belongs to the second contact form, the previous attributes belongs to the first contact form. class Message ...
0
votes
1answer
44 views

How to count how many database fields per record have been entered in Rails

I am trying to retrieve simple statistics for database completeness. I would like to know how many fields out of total number of fields have been filled in per record, considering that fields not ...
1
vote
1answer
116 views

Dynamically determining Rails model attributes

I have a model (simplified version below - the full one has a lot more fields) on which I want to do a search. class Media < ActiveRecord::Base attr_accessible :subject, :title, :ref_code ...
1
vote
2answers
178 views

Attributes as local variables vs instance variables in Rails Validations

In custom validation methods, why are the attributes passed as local variables instead of being accessible as instance variables? I was expecting to use @title instead of title in the custom ...
1
vote
2answers
102 views

Changing the data type of an entire column in a PostgreSQL DB in Rails 3.2.8

I have a DB table for my Rails 3.2.8 app as a PostgreSQL database. In this DB I have a column of type boolean. The column has values filled in. I want to change the values from boolean to all strings. ...
3
votes
2answers
133 views

Iterate over model attributes and check error messages

I am trying to iterate over an object and change its attributes while testing with rspec. The idea is to test that the strings are not too long (max 255 chars). Since there are so many, I want to ...
0
votes
2answers
72 views

How to retrieve instance attribute names for which the value is true?

I am using Ruby on Rails 3.2.9 and Ruby 1.9.3. I have an array of symbols and a model class (ActiveModel) having those symbols (more others) as boolean attributes. Given a class instance I would like ...
1
vote
2answers
191 views

ActiveRecord attributes reading and writing

Imagine we have User model and it has name. We can simply read and write it: user = User.new user.name = "Peter Griffin" user.name #=> "Peter Griffin" Also we can do it via attributes hash (keys ...
-1
votes
1answer
93 views

Updating Model from Console in Ruby on Rails

I looked around and this seems simple but I can't find the answer. I'm very new at RoR (as in just started learning today) so let me know if my terminology is wrong! How do I modify a model's ...
0
votes
2answers
135 views

Form for tags not accepting angular js attributes

I have form tag helpers such as form_for(:session, url: sessions_path, name: "signin_form", "ng-controller": "signinctrl") do |f| %> Whenever I go the page however I get an error from rails ...
2
votes
1answer
35 views

Rails - Malicious user overriding user name

Imagine you have a user model with a user name and several other attributes. A user will only be able to set a username while singing up, not later when editing his profile. Still, the :user_name ...
0
votes
1answer
19 views

Accessing a linked model's attribute for output in a table

This helped for display on an individual 'items' show page Accessing an attribute of a linked model in Rails However I'm having trouble doing the same for an 'all items table' ... <% @items.each ...
0
votes
1answer
197 views

carrierwave: mount uploader at a virtual attribute

I'm using a more or less generic property model with the two attributes :key and :value. The value is a string attributes which can be used as uploader dependent on the parent object. How can I mount ...
0
votes
0answers
34 views

Rails globalize3 with client_side_validations gem and strip_attribues gem

Is it possible to utilize Globalize3 gem with 1. client_side_validations gem 2. strip_attribues gem Got a simple model with a single attribute class Category < ActiveRecord::Base ...
1
vote
1answer
55 views

Ruby on Rails: Need help updating db attribute in a nested route

Let me preface this by saying, i'm pretty new to rails and programming. I'm trying to make some links to toggle a boolean attribute on and off. I've essentially succeeded in doing it on a non-nested ...
1
vote
1answer
312 views

What does the initialize method in rails do

I'm trying to wrap my head around the purpose of using the initialize method. In Hartl's tutorial, he uses the example.. def initialize(attributes = {}) @name = attributes[:name] @email = ...
1
vote
1answer
291 views

Meaning for attributes_for in FactoryGirl and Rspec Testing

Looking through a tutorial on controller testing the author gives an example of an rspec test testing a controller action. My question is, why did they use the method attributes_for over build? There ...
0
votes
0answers
55 views

form_tag attribute update

Hi im trying to update an attribute of an array of objects though a table with checkboxes, im not getting any errors but the attributes are not being updated: in (folders) edit.html.erb ...
1
vote
3answers
398 views

Rails override attribute using his getter

I have a price attribute in my model. Can I use attribute-getter, which is named just like the attribute def price ... logic logic .. return something end in order to override the attribute ...
0
votes
3answers
55 views

Rails: how to display a list of items from one model filtered by an attribute located on another model

In RailsLet' say I have 3 Models A, B, and C each with their own controllers. Model A has_many :b Model B has attributes :a_id and :c_id (the foreign keys to B and A) belongs_to :a belongs_to :c ...
0
votes
1answer
54 views

Bringing load_and_authorize_resource from rails to mvc .net

I was looking for an implementation / example of loading and authorizing a resource at a controller level. I am looking for the same functionality as load_and_authorize_resource in the cancan gem in ...
0
votes
1answer
75 views

Rails - syntax for copying a record in attribute from one table to another table on form submission

I'm a newbie so apologies if this is basic but it's been driving me crazy. I have two Rails models called user.rb and question.rb. A user can ask multiple questions and a question can only belong to ...
0
votes
1answer
59 views

How to set or assign predefined attributes to new user, on Rails

First, I apologize if this is too much of a newbie question. I can only code on my spare time so I'm often re-learning things from scratch on every project. I have a Class, Person, with the ...
1
vote
2answers
104 views

How to compare two objects in ruby

I have two User objects existing_user, current_user, how should I traverse the User.attributes.keys and check if they are equal.
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
1answer
55 views

Model Structure for adding extra attributes to sub-class of a rails model

I have a rails model called "Contacts" which holds basic contact information for legal leads such as email, phone, name, etc. It looks like this: class Contact < ActiveRecord::Base ...
0
votes
1answer
300 views

“unknown attribute: user_id” when connecting post with current_user

First, I'm quite new to programming and Ruby on Rails, so please describe the corrections in details, thanks. :-) I'm experiencing an "unknown attribute: user_id"-error, when I'm trying to connect a ...
1
vote
3answers
755 views

ActiveRecord: Attributes protected by default. How can they be public?

I have just started coding with rails. I am using: Rails 3.2.8 ruby 1.9.3p194 I created a migration and a corresponding model, all inside the files they should be ( I present them all together for ...

1 2 3 4