0
votes
0answers
50 views

Rails model structure for user created league tables

I'm looking to build an application that will allow multiple users to create their own tables, populate those tables with fields and 'contestants'. I'm trying to piggyback off of the work I did ...
0
votes
1answer
53 views

How to solve: validates.rb:96:in `rescue in block in validates': Unknown validator (…)

I'm start learning Rails, and I can't go forward because I'm getting a error when I try to run: bundle exec rspec spec/ I think the error is on my "models/users.rb" file: class User < ...
0
votes
1answer
25 views

Incomplete User Accounts

I'm working on a website where users can make purchases using only their email address, with no account required. If they ever do decide to make an account in the future, all their purchases will get ...
1
vote
2answers
51 views

How to display this instance method from rails model?

I have two rails models, Usage & Price. So far they look like this: class Usage < ActiveRecord::Base has_one :price def spend usage.amount * price.amount end end and ...
3
votes
2answers
294 views

Single Table Inheritance with model subdirectories in Rails 3.2.11

I have a model Sport. Using single table inheritance I have 2 other models, Cricket and Football so that class Cricket < Sport and class Football < Sport I put these two models in a subfolder ...
0
votes
2answers
63 views

Working with Constants (in Models)

I am currently working on an app that stores grades in the users table like so (json encoded): {"6":"6th Grade","7":"7th Grade","8":"8th Grade"} There are constants setup in the Users Model for ...
2
votes
1answer
78 views

Get variable from another table in ROR models

I am trying to get a user who has not filled out their profile to redirect to the edit page. I have two tables - Users (Devise handles) and Profiles. Profiles has a row called profile_complete In ...
2
votes
3answers
212 views

Ruby on Rails: how to migrate changes made on models?

In a Rails application, how can I migrate the changes I make in models? For instance, I know that if I create a model with command "rails g model Person name:string", a migration will be created as ...
0
votes
1answer
190 views

associate self.id to nested model before_create in rails

I have my models & associations currently setup like so: class User < ActiveRecord::Base has_and_belongs_to_many :projects has_many :versions, :through => :projects end class Projects ...
0
votes
3answers
128 views

Rails: combine two queries into one

I am new to rails. Here is the following code with Foo as model object: a = Foo a = Foo.where(age: 18) if params[:sort] == "desc" a = a.order("name desc") end Here two queries are performed, I ...
0
votes
5answers
533 views

How to create an association between two rails models

This is a newbie question, but I'm still learning how to create an association between two models in rails. I have a user model and a journal_entry model. The journal entries belong to the user and ...
1
vote
1answer
3k views

in Rails, with check_box_tag, how do I keep the checkboxes checked after submitting query?

Ok, I know this is for the Saas course and people have been asking questions related to that as well but i've spent a lot of time trying and reading and I'm stuck. First of all, When you have a model ...
1
vote
1answer
235 views

How to add property in module in Rails CouchRest Model to support multiple inheritance?

In my class, I want to include multiple modules. Each module can define its own property to persist in couchDB. Here is an example: module Owner property :name end module Animal property :type ...
0
votes
1answer
1k views

Subclassing activerecord and maintain subclass after db fetch

I have an ActiveRecord model Media which is supposed to be able to store similarly structured information about different types of media (Media::Book, Media::Movie, Media::Music). However each of ...
1
vote
2answers
344 views

Rails Models relationships

Hello fellow developers! Recently I've been playing with Rails 3.0 and after quite a bit of research I'm kinda stuck. I want to know what approach or solution is the best in my case(I couldn't find an ...
1
vote
2answers
102 views

query in rails3

In another question that i asked recently i got a really good answer and the code worked... But i do not know exactly why it works... Now i have a similar problem, but don't know how to solve it...? ...
0
votes
2answers
299 views

How do I prevent modifications to a Model?

In a current project, I have a model called Box that stores items from an online store. A box belongs to a Package (which defines price, payment conditions, etc) and has many Item and ExtraItem ...
0
votes
3answers
85 views

rails use counts in different views

Hello i guess this is going to be pretty noob question.. But.. I have an scaffold called list, which has_many :wishes. And with that information in my model, I can in my list view use this code ...
1
vote
5answers
251 views

How to setup default attributes in a ruby model

I have a model User and when I create one, I want to pragmatically setup some API keys and what not, specifically: @user.apikey = Digest::MD5.hexdigest(BCrypt::Password.create("jibberish").to_s) I ...
1
vote
2answers
215 views

Rails Model Associations for Item-Item Relationship?

Looking for some guidance on the best way to implement this scenario: I have an items table (of products) and want to support the ability to cross-sell / up-sell / complement items. So there is an ...
0
votes
2answers
1k views

Ruby On Rails - How to get the Object Method Caller

Let me explain my problem: I have 2 models: class User < AR::Base has_many :contacts end class Contact < AR::Base belongs_to :user belongs_to :user_contact_id, :class_name => "User", ...