Tagged Questions
0
votes
1answer
13 views
Rails model to model relation in different context
I have records with author and moderator. So I have two models Record and User:
class Record < ActiveRecord::Base
attr_accessible :content, :author_id, :moderator_id
end
and
class User < ...
0
votes
1answer
27 views
How to query Rails / ActiveRecord model based on custom model method?
Disclaimer: I'm relatively new to rails.
I have a custom method in my model that I'd like to query on. The method, called 'active?', returns a boolean. What I'd really like to do is create an ...
1
vote
2answers
43 views
Randomly pick photo from User model ruby
The schema for my ruby on rails app is below. I am currently filling my home page and want to randomly pick photo(s) from a random existing user to feature on the home page.
I have tried a lot of ...
1
vote
2answers
49 views
Error messages from model in Rails 3.2
Currently my app includes the following code to display the error messages on a view from model.rb but it is not updated code as error_messages_for is deprecated in Rails 3. Can anyone please suggest ...
0
votes
2answers
47 views
Only save the records that don't exist
Currently I am grabbing football fixtures via a screen scrape and each time the rake task is performed I am deleting all the records and saving the new ones..I don't want to do this, I want to only ...
0
votes
3answers
58 views
Grab id from another model and then save it into a new model
Really trying to get my head around the following situation. I am grabbing football results via a screen scrape and saving them to a model (result), ok so far.... I have some associations setup ...
0
votes
1answer
18 views
Limit ignored when used with find_by_id
I am trying to understand a behaviour of Rails ActiveRecord with limit.
Let's say I have a model Car with only one attribute name.
Now in the console (rails console), if I type:
...
0
votes
1answer
16 views
List all validation rules for a certain model
I think I have duplication in validation of an attribute since I am getting the same validation error twice on email field.
I suspect the some gems may enforce the same validations.
Is there a way ...
0
votes
2answers
41 views
Setting up the correct model association Rails 3
Im trying to figure out the best path here, a previous question hasn't shed much light on the matter, but thats probably due to my explanation, so im going to try and break it down into smaller chunks ...
1
vote
1answer
38 views
Split a string into two separate attributes ruby
I am performing a screen grab to get football results and the score comes as a string, 2-2 for example. What I would ideally like to have is have that score split into home_score and away_score which ...
0
votes
0answers
16 views
Modeling data for relationships/logs versus data templates
I frequently have a situation in which I want to use rows from one model as templates for adding rows to another model.
For example, I have an Invoice model to which I'd like to be able to add ...
0
votes
0answers
26 views
Strange behaviour in Rails MiniTest unit testing of a model
I encounter a very strange behaviour in Rails using MiniTest for unit testing a simple model.
That is my Currency model:
class Currency < ActiveRecord::Base
attr_accessible :currency_cd, ...
1
vote
2answers
69 views
Comparing attributes and assign a value
This is the first time approaching something like this, so am looking for some advice/best practice to achieve my goal. I want to assign a value (score) to the result of a prediction made by a ...
0
votes
1answer
26 views
Updating model from form outside of standard create page - goes to create page if form is blank
I have added a form to my homepage which creates a new instance for the model links. This is great, except if you leave the form field empty and hit submit, it forwards you to the new page for the ...
0
votes
2answers
31 views
Ruby on Rails: how do I create an initializer method in the model or should I set all the default params in a controller?
I have a field in my model for date created, this is not passed from the form and is currently set in the create method of my controller.
Should this be in my model instead in some sort of ...
0
votes
1answer
25 views
Rails 3 - Model structure
I would like to have nice and clean structure in my Rails App.
Now I have 4 files in models folder: Post, PostTranslation, PostCategory and PostCategoryTranslation.
This is my post.rb
class Post ...
0
votes
2answers
55 views
Remote data model in Rails
i have model with validations, some methods, filters and so. Unfortunately the data are from API, so i need to overload the method which is pull the records from DB. Which method is that?
So far i ...
0
votes
1answer
53 views
Check if record exists in Model Rails
I was wondering if i would need to create a custom validation for the following scenario.
I have a Prediction model, in which a user submits their predicted scores for a set of football matches, they ...
0
votes
1answer
47 views
Using a key to authorise creation of model attributes
I am unsure if my logic is correct in the following scenario, maybe its not even a best practice or there could be a simpler way. Also i am unsure how to set up my code so if anyone has any pointers ...
0
votes
1answer
40 views
Rails: view based on a different model-controller
I am using two different models&controllers - say products and checkout, but I want the checkout to be ordered by the product number. (Meaning checkout for product number 5, checkout for product ...
0
votes
1answer
12 views
Select menus in Rails 3?
I have the following code in my Rails 3 application, it's supposed to be displaying a select box with each asset_type record:
assets_helper
def asset_type_all_select_options
asset_type.all.map{ ...
1
vote
1answer
35 views
Make item “Private” in rails
App Attributes:
Rails 3.2, Mongoid, Devise, Elasticsearch
Basic Structure:
User has a Post
Post can be seen by other users
Situation:
A User wants to remove the post from being view-able by ...
0
votes
1answer
28 views
How to call a Model Method from a Controller in Rails 3?
In my model I have something like:
class CML < Lead
def model_method
#something
end
end
and in my Controller:
def recommend
@var.model_method
#more stuff
end
and @var is a CML ...
0
votes
1answer
37 views
Best Way to Create attributes for a Model Instance Object
I'm building a Rails server for the back-end of an iPhone app. Rails sends JSON to the front-end and I find myself doing something like this.
@user = User.find(1)
@user["status"] = "Some cool ...
0
votes
1answer
29 views
undefined method `model_name' for NilClass:Class in edit form
I have a rails app where I can create and edit records. I've created a form to enter data which works fine when I use the new/create actions. It will create a record no problem. But when I hit the ...
0
votes
1answer
26 views
How to make an object an attribute of another object in rails
Is there a way to make a Rails model have another model as an attribute?
E.g. I have a User model with an address attribute, and the address attribute in the User model is its own class.
User Model
...
0
votes
2answers
35 views
Rails architecture, better create a a new model or add a boolean value to existing model?
I have an article model article.rb (with related images):
attr_accessible :name, :content, :image_ids, :altname1
I now want to create another kind of articles, that are just for cities. They will ...
1
vote
3answers
124 views
rails: create scaffold for models to inherit from superclass?
I'm new to Rails, still getting my feet wet, so please pardon me if this is either trivial or "the wrong way" to do things.
I'd like to create a superclass for some scaffolded models. For example, ...
1
vote
2answers
61 views
Inserting Multiple Records at a time into Model [duplicate]
I am looking for some best practices when it comes to inserting data into a model, especially when there are a lot of records to be created, so far I am retrieving some XML and saving it into a model
...
0
votes
0answers
22 views
Rails 3 Complex Scope
I've got three models that are related as follows:
class Artist < ActiveRecord::Base
has_and_belongs_to_many :tracks
has_many :episodes, :through => :tracks, :uniq => true
end
class ...
0
votes
2answers
56 views
Generate random resource ID's with prefix?
I have a simple Rails 3 invoicing application with the following models:
Brand
Client
Invoice
A brand has many invoices, clients have many invoices and invoices belong to clients and brands. ...
3
votes
2answers
65 views
Rails STI model without a table on migrations
I've got a model, say User, and a model Admin which inherits from User. I have some code in lib folder which uses those two models. But if I install a new database and try to run the migrations rails ...
1
vote
0answers
67 views
How can I set the belongs_to association of a new object via a dropdown menu in the form?
So I'm new to Rails, and I've just finished going through Michael's Hartl's railstutorial.org.
I'm now building my first app, and i'm encountering my first road block.
So basically i've got Bubbles ...
0
votes
2answers
35 views
How to model this rails relationship, “has two”?
Imagine a roster of characters in a game.
I need to let users vote on which character counters which character and be able to save that in the database.
Batman is strong against Superman
Batman is ...
0
votes
1answer
30 views
Rails model containing list of integers
How can I have a list of integers as an attribute of a Rails model? I've tried Googling, but nothing comes up. Do I really have to create a seperate model just to hold the integer and then use a ...
3
votes
1answer
46 views
Preventing Certain Users from Deleting Records in Rails Admin
I have Rails Admin installed which is working great. However I have a problem. Only admins can sign into Rails Admin and there are two types of admins. The first type of admin can have access to ...
0
votes
1answer
24 views
rails sums model
I have a lot of sum functions in my app. I am moving all data sums to a separate model...lets call it...sums. This will make calling those numbers faster as I wont nail the database everytime I need ...
1
vote
1answer
47 views
Adding some custom methods to delayed job in rails 3?
I want to add some custom methods to the delayed jobs model.
I want to have some extra such as...
def status
return "errored" unless self.last_error.blank?
return "waiting" if ...
0
votes
2answers
58 views
Rails - model aggregate (sum, avg,…) with limit
I have a model call that's something like this:
My_model.sum(:column, :condition => ['id = ?', id], order => "date DESC", :limit => X)
The problem that the sum obtained is not "limited" by ...
1
vote
1answer
38 views
Save contents of a hash to a model
Slowly getting there with what i am trying to achieve. I am grabbing data via screen grab and want to save the data to my model, i have two columns, home_team and away_team. So far i grab the data.
...
4
votes
2answers
91 views
Rails association with tables without models
I'm looking to rewrite my project in Rails. It's currently written in PHP (CodeIgniter), I've come to the point where I'm writing more libraries and core extensions than I'm writing new code. I've ...
0
votes
1answer
34 views
Unransackable attributes for multiple models
To exclude some attributes from search and sorting I add following to my model
UNRANSACKABLE_ATTRIBUTES = %w[id created_at updated_at section]
def self.ransackable_attributes auth_object = nil
...
0
votes
1answer
62 views
Rails 3 - Calculate model's attribute based on associated model's attribute [closed]
I have three models - Usage(month, elec, gas), Project(project_type, date_implemented, manual_elec_savings, manual_gas_savings) and monthly_project_savings(elec, gas, usage_id, project_id).
The ...
0
votes
2answers
51 views
Possible to configure models in Rails to pull data from different data sources?
Our app requires pulling data from different data sources: one a MySQL database and another a Mongo database.
Is it possible to config models to pull data from different data sources and leverage ...
0
votes
2answers
51 views
Creating model in rails does not create a corresponding table in mysql
Havent come across this before, i am generating a model in rails
rails g model Rating ratings:integer
at this point no migration file is being generated
I then run
rake db:migrate
Nothing ...
0
votes
1answer
29 views
Complaints that a route is missing while it's not
I'm working on a very simple project management web app.
I have two different pages where you view the projects.
1. View all projects
2. View only the projects where you are administrator (includes ...
0
votes
1answer
51 views
Expected /…path…/projects_users.rb to define Projects_users
What I'm trying to do is to create posts in a relational table called 'projects_users' with the seed, but after a 'rake db:seed' the following error is thrown:
Expected /...path.../projects_users.rb ...
0
votes
1answer
61 views
Rails 3 basic validation not working with :prompt or :include_blank?
I have the following code in my view:
<%= f.select :user_id, user_all_select_options, :include_blank => '--Select a name-----' %>
It displays a list of users with --Select a name----- at ...
0
votes
1answer
50 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
2answers
62 views
Rails - Show data from Client model on Project model's index page
I'm trying to wrap my head around this, but just can't seem to figure it out. So I have a Rails app with a project model and a client model. A client has_many projects and a project belongs_to a ...





