Tagged Questions
0
votes
0answers
9 views
Rails: setting association object vs. setting association id
I'm following the "Agile Web Development with Rails" book and trying to copy a Products price to the LineItem. Overriding the setter on LineItem seems to be the appropriate choice. However, as so ...
0
votes
1answer
24 views
ActiveRecord OR for existing scopes
I have an existing model with a set of complex scopes:
scope :test1 , where(gift: true)
scope :test2 , lambda {|time| where("last_created_at > ?", time)}
scope :test3 , where(approved: true)
I ...
0
votes
2answers
17 views
Increase integer when a child is added or changed
I'm using ActiveRecord in rails and I have a model named Menu, many other models belong to Menu: Ingredient, Product, ProductSize, Category, ...
And to those models other models belong to: ...
0
votes
1answer
40 views
Initialize objects of Associated models
I have three models which have been defined as follows:
Answer Sheet
class AnswerSheet < ActiveRecord::Base
has_many :answer_sections
accepts_nested_attributes for :answer_sections
end
...
-1
votes
2answers
30 views
Order results by weighted variables?
I have a listing of ~10,000 apps and I'd like to order them by certain columns, but I want to give certain columns more "weight" than others.
For instance, each app has overall_ratings and ...
2
votes
0answers
32 views
Deprecation warning when using has_many :through :uniq in Rails 4
Rails 4 has introduced a deprecation warning when using :uniq => true with has_many :through. For example:
has_many :donors, :through => :donations, :uniq => true
Yields the following ...
0
votes
1answer
17 views
Get scoped relation in scope body or in class method
can you help to newbie, please?
I need something like:
scope :randomized, lambda { actual.offset( rand( actual.count ) ) }
def self.random
randomized.first
end
problem is in count... it is ...
0
votes
1answer
39 views
Convert query from SQL to ActiveRecord
How I can get the same result using ActiveRecord?
SELECT categories.* FROM categories
INNER JOIN levels ON levels.id = categories.level_id where levels.description <= "Medium"
0
votes
1answer
24 views
Wishing for elegant ActiveRecord chaining
In my Rails 3 app I got users that have:
friends (and they are users, too)
activities (via PublicActivity)
There is an action where I need to display my friend's activities.
I wish to do it via ...
2
votes
1answer
52 views
How do I sort a table by the maximum value of associated records?
I have a client model which has many meetings.
class Client < ActiveRecord::Base
has_many :meetings
end
class Meeting < ActiveRecord::Base
belongs_to :client
end
I want to produce an ...
0
votes
1answer
29 views
Active Record Error messages form_tag Rails 3
I have a validation in my model like so
class Prediction < ActiveRecord::Base
attr_accessible :home_team, :away_team, :home_score, :away_score, :fixture_date, :fixture_id, :user_id
has_one ...
0
votes
0answers
23 views
Rails collection render optimization
So I've been trying to optimize my render call, because my ruby code is clearly the slowest part of my site. I've already optimized against N+1 issues.
I've tried this a number of ways.
The first:
...
0
votes
1answer
32 views
Populating a drop down list in ruby on rails and saving the result
I'm fairly new to RoR and having trouble wrapping my head around how to do this.
Basically I want to design a drop down menu that will dynamically populate a drop down of newspapers from the ...
0
votes
1answer
18 views
Rails: access related field data in view?
Excuse me for the seemingly basic question, but I'm new to Rails and I can't seem to google anything useful.
I have two models: Works has_many Pictures.
Both models have a :title.
If, in my ...
1
vote
2answers
36 views
Model design for a calendar
I'm building an application that is based on a calendar and (with basic functionality expected from a calendar).
As the calendar will have such a fundamental part of the application I don't want to ...
0
votes
1answer
18 views
ActiveRecord chaining where with or relation
I am chaining multiple where's in my model and it's look like that -
user.watched_posts.commented_posts
where watched_posts and commented_posts is just method in the User model that calls where.
...
0
votes
1answer
45 views
Sortable menu for complex rails application
I have a Rails app that contains several controllers (for different pages of my website). One controller for regular text pages, separate one for gallery etc. Now, what I need is a sortable menu for ...
1
vote
3answers
30 views
ActiveRecord : Hide column while returning object
Is there an out-of-the-box way to always hide/remove a column (say, User.password) while returning an ActiveRecord object ?
Thanks.
1
vote
1answer
36 views
How to optimize querying for thousands of IDs
Here are three consecutive queries with their Benchmark performance:
ids = @Company.projects.submitted.uniq.collect(&:person_id)
1.370000 0.060000 1.430000 ( 3.763946)
@persons = ...
0
votes
1answer
31 views
How can I get the datatype of an attribute from a Rails model?
I am using Postgres in a Rails project and I have discovered that I need to change all of my varchar datatypes to citext. Rather than do this by hand, I want to just create a migration that loops ...
0
votes
0answers
17 views
Active Record Reputation for model associations
I have two models:
Group.rb
has_many :microposts
Micropost.rb
belongs_to :group
has_reputation :votes, source: :user, aggregated_by: :sum
The model Micropost has reputation by votes and belongs to ...
0
votes
1answer
39 views
How to reject blank and empty attributes during sign_up form?
I have
Model
class User < ActiveRecord::Base
attr_accessible :email
validates :email,
presence: true
serialize :data, ActiveRecord::Coders::Hstore
%w[zipcode first_name].each do ...
1
vote
1answer
48 views
rails activerecord save associated model which has uniqueness validation
I am a newbie to rails. Today I met a problem to save associated models.
I have 2 models with the following association, The Tag model has a validation role for attribute 'name' to be uniqueness.
...
-1
votes
2answers
52 views
Rails method for counting rows returns “wrong number of arguments (0 for 2)”
I am graphing the amount of votes for each vote value (1-4 stars) in my view, and have a method in my controller to count the number of votes (rows).
My controller ...
0
votes
0answers
22 views
With CanCan, limit what roles an admin can assign to self or others through AdminAbility
I'm trying to setup a admin role system, where many admins have different roles. I'm starting with two roles, :super_admin and :office_admin.
I want the :office_admin the ability to manage other ...
0
votes
1answer
50 views
Ransack exception: Don't know how to klassify #<ActiveRecord::Associations::JoinDependency::JoinBase:0x007ffdf67a3360>
I'm new to Ransack. Tried to follow this RailsCast and install a Rails 4 compatible branch of Ransack. Upon hitting the submit button of the form, I get this error:
# @search = ...
1
vote
2answers
49 views
Are ActiveRecord transactions just 1 round trip to database?
If I have a bunch of queries that I am executing, wrapped in an Activerecord transaction, are all those queries sent to the database in 1 round trip (ie all queries sent to db, and response sent ...
2
votes
1answer
64 views
Creating a ruby-on-rails model
I have an existing model that connects to an AS400 DB and I need to create a new model like it that connects to a new file and pulls one field (an email address) and then loops through it 5 times. ...
0
votes
2answers
52 views
How do I get the next available unique ID in Rails without calling Model.last.id?
I populated a database, then deleted all the users. Now I need to get the next available ID (the last one used was 109, but I need this to work in any situation where this happens, not just my unique ...
0
votes
2answers
30 views
Problems with conditional validation in ActiveRecord
I have to conditionally validate my User. After user registers, he can complete the rest of his profile. It's split into parts, so, for example, there is "Educational background" and "Professional ...
0
votes
1answer
48 views
Using Rspec to test ActiveRecord validations for similar fields
I recently started learning RoR and TDD, and am having trouble figuring out the best way to handle this scenario.
I have an ActiveRecord model with two fields which share the same validations.
How ...
0
votes
1answer
56 views
Rails console: attribute returns false, but is shown correctly with to_yaml
maybe I'm missing something, but I did research and could not find out why this is behaving like it does. I'm working with Rails 2.3.16 and ruby 1.9.3, backed by a huge ibm-db2.
Lets assume I have a ...
2
votes
0answers
34 views
what are the limitations of inverse_of in rails 3 with ActiveRecord
I've been reading about inverse_of and everything I'm seeing online seems inconsistent and confuses me. If you look here, you can see
There are a few limitations to inverse_of support:
...
0
votes
1answer
58 views
Rails DateTime field has current date/time if nil in the database
I have a form with a datetime field. Since Rails 3.2.13 doesn't support type="datetime-local" input fields yet (and I'm not ready to move to 4.0 beta), I'm doing this manually:
<input ...
2
votes
2answers
61 views
Why is ActiveRecord/PostgreSQL not finding my data in the database?
I'm sure this is something simple I'm overlooking but since I've been dealing with this strange issue for a few days now I'm asking for help.
Here is my apps setup and the issue:
A Rails 3.2.13 app ...
0
votes
2answers
20 views
How can I order a Rails collection by the attributes of associated records?
I have three models: teachers, students, and assignments
class Teacher < ActiveRecord::Base
has_many :assignments
has_many :students, through: assignments, uniq: true
end
For any given ...
1
vote
0answers
26 views
Create groups of items from separate tables
I have multiple models (events, chores, bills, and lists), which each have their own table. I want to be able to group any of these instances together, for example group an event with a list of items ...
2
votes
2answers
65 views
Devise on ginjo-rfm
I'm using the ginjo-RFM gem for connecting to a Filemaker Database, and want to use Devise for authentication. The problem with this is the fact that Devise requires my User model to inherit from ...
1
vote
2answers
37 views
Is ActiveRecord's order method safe for inserting user-entered strings?
I want to do something like this in Rails:
People.order("#{params[:sort]}, first_name, middle_name, last_name")
Is this safe? Or do I need to parse params[:sort] myself and make sure it's a list of ...
0
votes
0answers
20 views
An aliased string as an AREL/AR statement
Is there an AREL/ActiveRecord way to do:
SomeModel.select('"some_string" AS alias_name')
in Rails 3.2?
Namely, aliasing a string as alias_name with Ruby and no SQL expressions.
1
vote
1answer
32 views
query time in Rails
I have users table and polls table. Assume the tables are quite big, which query would be more efficient in Rails:
User.find(user_id).polls.where('category = ?',category)
Poll.where('user_id = ? AND ...
0
votes
1answer
14 views
How to defer execution of expensive create_by option
The following question is almost exactly what I need: http://stackoverflow.com/a/2394783/456188
I'd like to run the following:
find_or_create_by_person_id(:person_id => 10, :some_other => ...
0
votes
3answers
58 views
ActiveRecord query with two associated models
I have two models, Deal and User. A user has_many deals, and a deal belongs_to a user (the user who created the deal). Users have the attribute roles, where user.roles is an array.
I want to find all ...
0
votes
1answer
42 views
How to define relationships without a foreign key in ActiveRecord?
I have three tables
prices
timestamp : datetime
unit_id : integer
price : decimal
sales
timestamp : datetime
unit_id : integer
price : decimal
schedules
timestamp ...
1
vote
0answers
67 views
Reconnect after a PG::Error SSL SYSCALL error in Rails on Heroku
I've recently experienced H12 request timeouts on Heroku caused by PG::Error SSL SYSCALL error: EOF detected.
Relevant portions of the stack trace include:
2013-04-05T22:07:02+00:00 heroku[router]: ...
0
votes
2answers
73 views
rails how to reference current object in Model
This is a continuation of another question, but as it's different, I though I had better repost it as a new question:
Old Question
I'm adding quiz functionality to the twitter app from the Hartl ...
0
votes
0answers
30 views
different output from rails queries
I have a user (User) model which has many questions (Question). Each user has a unique key. The question model has a field to store that key. I need to search for all the questions by a specific user.
...
0
votes
1answer
73 views
How to perform math calculations in Active Record Querying in Rails
I'm building an application and I'm finding it necessary to perform some simple math calculations in my query. Essentially, I've got a database with daily values from the S&P 500, and I need to ...
0
votes
2answers
53 views
Displaying attributes for associated models in views
I want to fetch username or email( both are in user table) of user who creates article in blog application. Currently I am able to fetch user id from articles_controller.rb
def create
@article = ...
0
votes
0answers
41 views
Rails: update id between two tables relationship
I have 4 tables:
A has many B
B belong_to A
C has many D
D belong_to C
A has_one C
B has one D
From:
edit, insert to B
row 1
row 2
Model
def self.build_width_invoice(hash1, hash2)
doc = ...

