a component of the Rails framework that holds the state of an object and is responsible for enforcing business rules and persisting the object.
2
votes
1answer
41 views
Rails Associations Riddle: User, Lecturer, Student and Event
I've googled, read the docs, and watched railscast, but I can't wrap my head around this.
Please help. I'm running the latest stable Rails and Ruby 1.9.3, on Ubuntu 13.04.
I have a User model, and an ...
0
votes
1answer
30 views
How to create double nested model with a twist in Rails 3?
I'm creating a registration where I have "Person" "Child" and "Meal" Models. Person can have many Children and can register many Meals for themselves but also many Meals for Children.
The point is ...
0
votes
1answer
45 views
Rails two related models in one form not saving
My form fields are:
<%= form_tag signup_path, :class=>"no-ajax form-signin" do %>
<fieldset>
<legend>Company</legend>
<div class="field">
...
0
votes
0answers
29 views
Count Consecutive Records matching a criteria in rails
I have a rails model called UserAttempt which has done_correct:boolean entry in database.
The model has a method on it called delta_tts which returns a float value. ie., user_attempt.delta_tts = ...
0
votes
1answer
30 views
Using module with both class and instance methods
In my application I need to call the same methods on the collection of the objects and on separate object as well. For example, an insured user has many insurance policies, which can change their ...
0
votes
1answer
39 views
Referencing calling instance variable when extending has_many
I have a model called Project that has many Proposals.
The Project model has an attribute called winning_proposal_id
Right now I have something like this to find the winning proposal as well as a ...
0
votes
1answer
63 views
How to test Model Errors with Mocha and rspec?
I have this problem related to testing model errors with Mocha:
This is my controller (Api / Artist controller):
class Api::ArtistsController < ApplicationController
respond_to :json
def ...
3
votes
1answer
89 views
What is the best way to drop a table & remove a model in Rails 3?
I have a model & a table which I no longer need in my App, I could leave them there but I would like to remove them to keep things tidy.
I'm trying to figure out the best way to remove them with ...
0
votes
0answers
51 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
57 views
Nested attributes for belongs_to association rails
I have two models, Complaint and Company. Complaint belongs_to and accepts_nested_attributes for Company, and Company has_many Complaints.
# Models
class Complaint < ActiveRecord::Base
...
0
votes
2answers
65 views
How to create a compound JSON object from these three models?
I have three tables; Area, Movie and MovieArea. In rails, I want to be able to query MovieArea based on the area_id field of Movie. I then want to return a compound json object using the fields from ...
0
votes
1answer
54 views
Getting current_user's id in model
Forgive me if this is a newb question but I was wondering how they got the current user's id in the User model here:
Listing 10.39
I've tried reading it again and again and i still can't figure it ...
0
votes
0answers
88 views
Hartl Tutorial : Chapter 11 : Creating associations broke rspec
I am currently working on Chapter 11 of the Hartl tutorial for Ruby on Rails. I have enjoyed finding all my answers on Stackoverflow; but now I have hit a wall.
The sample app is implementing a ...
0
votes
1answer
55 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
30 views
Rails Complex Query Suggesting Next Object
I have a complex scope on my model giving the user active deals that meet their parameters.
scope :deal_query, lambda { |m, p| where("meal = ? and active = ? and people LIKE '%?%' and inactive_days ...
0
votes
1answer
82 views
Rails 3.2.x render another template view with specific id
I am attempting the follow string of code:
class AppointmentsController < ApplicationController
def create
@appointment = Appointment.new(params[:appointment])
@current_patient = ...
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 ...
0
votes
1answer
91 views
Rails accessing fields stored as JSON data inside a field of a table
I have table Employee with several columns. One of the column is a text field and some data is stored inside it in following format,
:last_working_day => nil,
:first_working_day => <some ...
1
vote
2answers
52 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
...
1
vote
1answer
64 views
Query that joins child model results item erroneously shown multiple times
I have the following models, each a related child of the previous one (I excluded other model methods and declarations for brevity):
class Course < ActiveRecord::Base
has_many :questions
...
0
votes
0answers
27 views
Calculating a Score among multiple models
I've got four models: Assignment has_many Questions has_many Answers and also Questions has_many Responses. In my Answers model, I've also got a boolean field named "correct" to indicate the correct ...
1
vote
1answer
99 views
Multi-layer sorting in Rails model
Im having trouble figuring out how to write a multi-layer sort using a scope method in my model, which can sort through the model's attributes, as well as its related child models' attributes?
To put ...
0
votes
1answer
53 views
Ruby on Rails - Need help associating models
Ok, am still a newbie in ruby on rails trying to learn my way around. I have two models (User model and Comment model). Basically a user has a simple profile with an 'about me' section and a photo's ...
0
votes
2answers
38 views
Rails Format Collection_Select Based on two relationships
I'm trying to figure out how to construct a collection_select to include two relationships. Here are my models:
class Country < ActiveRecord::Base
has_many :companies, :dependent => :destroy
...
0
votes
2answers
96 views
Using scope to sort entries in related child models
I have three related models such as the following, each being the child of the one above:
class Course < ActiveRecord::Base
has_many :questions
end
class Question < ActiveRecord::Base
...
1
vote
0answers
74 views
after_save not called on Heroku production but works locally
I've a model called Rating that reference itself.
class Rating < ActiveRecord::Base
has_many :ratings, :as => :ratable, :dependent => :destroy
after_save :update_total_rating
private
...
0
votes
2answers
129 views
How to have multiple conditions in a named scope?
I have a User model. I can check whether a User is an admin by doing a_user.try(:admin?).
I'd like to define a named scope that gets all Users updated within the last X minutes who are not admins. So ...
3
votes
2answers
305 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
107 views
rails multiple models in simple_form
Hi I have a model called Event and a form to create events.
Events belong_to Users and should be created by them.
How is it possible to implement the current_user.id into a hidden field so that it ...
0
votes
2answers
110 views
Ruby on Rails pass id to new create form
Ok, I've searched high and low, read tutorials, watched videos and I am still not getting any where with this. I've read similar questions here, but questions were more complex or lacked answers - so ...
0
votes
0answers
17 views
Rule to edit rather than create based on nested fields in rails forms
How can I get a Task submission form to add the entered task to an existing Project (ie edit rather than create new project) according to a rule based on nested fields where, for example, the ...
0
votes
2answers
120 views
Can't create belongs_to association in controller
Please bare with me, just brushing up on Rails and have been stuck on this for a while and struggling to get my head around using associations in the controller.
I have 2 models Users and Companies. ...
0
votes
1answer
42 views
Rails - assigning the foreign id at item creation between two related model objects
I am having difficulty successfully assigning the foreign key in a one-to-many relationship at the creation of one of the "many" model objects.
In more concrete terms... I have two models, Course and ...
0
votes
1answer
80 views
Rails - Dynamic Nested Forms for Only One Element
I've to modals teams and players, and as usual team has many players.
In teams' show page, I'm showing the players and so on. (I've followed railscasts.com/episodes/196-nested-model-form-part-1 ...
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 ...
0
votes
2answers
79 views
Ruby on Rails - Counting goals of a team in many matches
I've got a Match model and a Team model.
I want to count how many goals a Team scores during the league (so I have to sum all the scores of that team, in both home_matches and away_matches).
How can ...
1
vote
1answer
155 views
Two controllers, one model — why is my app looking for a second model?
I have an Order model.
Customers get a handful of consumer-friendly views that let them create and view their own orders, all backed by an Orders controller.
Admins get the full range of views to ...
0
votes
1answer
276 views
Multiple images upload carrierwave
I have two models "Posts" and "Images" I wanted "Posts" to have multiple "Images" so I currently have it so "Posts" has many "Images" and "Images" belongs" to "Posts". I have carrierwave taking care ...
2
votes
3answers
215 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
193 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 ...
1
vote
1answer
102 views
validation for models in ruby on rails
I have a model:
class HelloRails < ActiveRecord::Base
attr_accessible :filename, :filevalidate
include In4systemsModelCommon
validates :filename, presence: true
def update
...
0
votes
1answer
44 views
Rails: New entry to a model that belongs_to two other
In my app, a Product has_many opinions, which are written by many clients. Here are models with associations:
class Product < ActiveRecord::Base
attr_accessible :name, :desc, :price
...
0
votes
1answer
75 views
Need to add an alias to a list of results generated by Ruby on rails
Forgive my vague topic, I am currently working on a rails application with three models User, list and items. The user has many lists and a list can have many items. I am currently working on a method ...
0
votes
1answer
145 views
Ruby on Rails, creating CMS with content types
I'm learning RoR nowadays and came up with an idea of creating a very simple content management system. I would like to allow users to create structure of content by adding fields, then the app would ...
0
votes
1answer
61 views
Does rails 3 give options to add filter inside model like validations?
Example Case- How add filter to strip all html tags(this code not works, just psedocode for want i need to get):
class Person < ActiveRecord::Base
validates :name, :presence => true
...
0
votes
0answers
47 views
Rails 3.2 Security
In my rails app I have a User Model where I have an attribute: points
class User < ActiveRecord::Base
attr_accessible :points
has_many :answers
end
Is there a way to make the attribute ...
2
votes
1answer
63 views
How does Rails automatically load ModelHelper into Model
I'm interested in how Rails automatically loads the modules in app/helpers into models.
To wit: when app/helpers/widget_helper.rb exists and contains WidgetHelper that module is automatically loaded ...
0
votes
1answer
73 views
Rails: Trying to separate a model into an engine gem
I'm new to here an to Rails so excuse any dumbness on my part.
I'm trying to do something really simple and can't seen to find a guide that's up to date and properly demonstrates how to do this.
...
0
votes
2answers
32 views
Model inheritance – use 'where' depending on attribute
I have a user model and a dealer and customer model, which inherit the user class and have no own database table:
class User < ActiveRecord::Base
end
class Dealer < User
before_save ...




