Implementation of the object-relational mapping (ORM) using active record pattern in Ruby on Rails framework.

learn more… | top users | synonyms

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
39 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
29 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
28 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
16 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"
1
vote
0answers
15 views

Cannot programmatically combine AND and OR conditions using Arel

Given the SQL conditions cond1, cond2 and cond3 generated using Arel operators (.eq for example), I cannot seem to use Arel to produce the SQL: SELECT * FROM <table> WHERE (cond1 AND cond2) OR ...
0
votes
1answer
16 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
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
28 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
14 views

Rails Join Table Issues

In my app there is an Athlete and this athlete has many sports (joined through a user_sports table). Now, each sport has a position (Pitcher, Third Base, etc). Where I am stuck at is trying to ...
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
17 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 ...
2
votes
1answer
35 views

Rails Merge child errors with Parent errors

I've got the following two (sanitized/stylized) models: class DrivingExam < ActiveRecord::Base belongs_to :dmv_rules has_many :invigilator_assignments, as: :assignable has_many ...
1
vote
2answers
34 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
0answers
8 views

Rails 3: How can I avoid running establish_connection tests?

I have a Rails 3 system that's importing data from another database, via models using establish_connection. So, I have a setup that looks roughly like this: class Foo < ActiveRecord::Base ...
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
44 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
1answer
45 views

Not able to get url from uploaded image, undefined method `url' error on has_many associated model

undefined method `url' for #<GalleryPhoto:0x007f80c05a4ba8> 10: <%= @gallery.date %> 11: </p> 12: 13: <%= @gallery.gallery_photos.first.url %> 14: 15: 16: <%= link_to ...
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
35 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
9 views

How to get mass assignment to utilize custom assignment methods

This is driving me totally nuts. I've got a custom setter and a custom getter for a phone number field: class Person < ActiveRecord::Base attr_accessible :phone def phone=(p) p = ...
0
votes
0answers
17 views

closing ActiveRecord connection on a dead thread

If a thread dies or I have to kill a thread that is using an ActiveRecord connection, how do I make sure that the ActiveRecord connection is returned back to the pool? I keep getting errors like ...
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 ...
0
votes
1answer
9 views

How to reassociate a database object with another one in rails 3.2

I'm having trouble phrasing this question, so consequently I'm also having trouble finding answers. Hopefully someone can help me word it better. Anyway, I can't find any standard procedures for ...
0
votes
0answers
33 views

Drawbacks of using both ActiveRecord and Mongoid in Rails app on Heroku

I'm currently using MongoDB exclusively in my app and have no reason to have a SQL DB so far. But I need good gems for: 1. Apple Push Notifications 2. URL shortening and I'm finding that the most ...
1
vote
1answer
47 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
45 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
51 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 ...
1
vote
1answer
32 views

Save record in rails 4.0 using params hash

I'm trying to create a new record in rails using the form_for helper method. I think the params hash is blank because I keep getting blank errors when I submit the form. This is my form: <% ...
0
votes
0answers
16 views

Persist values different from attributes

I'm sorry, I don't know how to word this properly. I want to work with and ActiveRecord model (in Rails 3) where the values being stored in the database table are different than the values that a ...
0
votes
0answers
49 views

How to insert special characters and keywords into database using `ActiveRecord`

I've exported application code from a Ruby On Rails app that needs to be inserted into PostgreSQL and MySql using ActiveRecord. I've tried different escapes, but no luck. I've tried E and $$ for ...
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 ...
-1
votes
1answer
14 views

Checking existance of long chain of associations in rails

I'm writing an action for that involves a long chain of associations, something like: @featured_image = @content_page.content_tree_item.children.first.featured_images.first I would like to get ...
0
votes
0answers
23 views

Using Factory Girl in Rails to create records as an admin or without protection

moving to FactoryGirl on my specs and am getting a failure. I have googled and checked in stack overflow, also read through the source code and couldn't figure it out. Anyway, I have classes that ...
0
votes
1answer
46 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 ...
1
vote
1answer
93 views

How to prepare raw sql statements with dynamic binding in Rails using ActiveRecord::ConnectionAdapters?

I use MySQL DB and MySQL2 as adapter. I want to execute custom sql-statements in Rails. I need a method that would allow to prepare sql-statements like in PHP, like this: stmt = prepare("INSERT ...
0
votes
1answer
55 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
33 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
59 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 ...

1 2 3 4 5 13