0
votes
1answer
33 views

How to find related records in Ruby on Rails?

I have this class: class Invoice < ActiveRecord::Base has_many :payments def payable? amount_payable != 0 end end How can I get the total of all payments whose invoice is payable? ...
0
votes
1answer
18 views

ActiveRecord find with joins and associations?

I have a model TwitterUser that has_one website as shown in the model below: class TwitterUser < ActiveRecord::Base has_one :website, :foreign_key => :id, :primary_key => :website_id end ...
0
votes
1answer
29 views

Ambiguous column name in Ruby on Rails with SQLite database?

I am getting this error in my Rails app: ActiveRecord::StatementInvalid in PaymentsController#index SQLite3::SQLException: ambiguous column name: date: SELECT COUNT(*) FROM "payments" INNER JOIN ...
0
votes
1answer
40 views

Breaking changes in Rails 4 JSON rendering?

I started a new app atop Rails 4 and I've noticed what seems to be a breaking change in how JSON rendering is implemented by default, but I can't find it written up anywhere so I was wondering if ...
0
votes
1answer
16 views

Destroy dependent objects in Rails using one transaction

Please, help to optimize object destroing in Rails application: I have relatively big database, and when I want to delete user from it all dependent objects removing takes > 1 minute. It's very long. ...
0
votes
1answer
39 views

Adding instance methods during class definition

I'm currently working on my first gem and making my first experiences in meta programming. Therefore, I would like some feedback on how to correctly define an instance method during a class ...
1
vote
1answer
18 views

Many to Many relationship :through giving 'Could not find the association' error

In my model an Item is created by a User and can be purchased by many Users, and a User can purchase many Items. User, Item, and Purchase are defined, using AcvtiveRecord with superfluous details ...
0
votes
1answer
21 views

ActiveRecord associations outside Rails

I am using active_record to connect to a database. I am working in plain ruby and not rails. I can connect to the database fine and do all the stuff except associations. Can I do something like this? ...
0
votes
1answer
19 views

Rails 3 Attendance Form with Multiple days per week and Multiple children

I am trying to create a form that will allow you to enter or update the time for attendance on a daily basis, with the ability to show each weeks worth of records for each child. I am having trouble ...
1
vote
1answer
26 views

Unable to :include model with two relations

I'm trying to model a table with host records (id, hostname, netid) and a table with routing connections which represents a connection between two routes (id, src_id,src_ip,dst_id,dst_ip). When I ...
0
votes
1answer
21 views

Rails has_one per scope

I have three models as follows: class User < ActiveRecord::Base ... has_many :feeds ... end class Project < ActiceRecord::Base ... has_many :feeds ...
0
votes
2answers
36 views

How to search an integer field in ActiveRecord?

I want users to be able to search my database using this function: def self.search(query) new_query = (query.to_d * 100).to_i where("price_in_cents LIKE ?", new_query) end The problem is that ...
0
votes
2answers
46 views

How do I match all “and” using ActiveRecord?

I need an ActiveRecord query to match ALL items in a params[] array. My current method gives results based on finding any of the tags, not "MATCH ALL" class Product < ActiveRecord::Base ...
2
votes
4answers
51 views

Find all records that don't have any of an associated model

I'm using Rails 3.2. I have a product model, and a variant model. A product can have many variants. A variant can belong to many products. I want to make a lookup on the Products model, to ...
0
votes
2answers
46 views

How to validate that payment can never cause invoice amount payable to be less than zero?

I have this class: class Payment < ActiveRecord::Base attr_accessible :amount, :invoice_id belongs_to :invoice validates :amount, :numericality => { :greater_than => 0, ...
2
votes
1answer
41 views

How to ensure record is not saved by two users at the same time?

I have this class: class Payment < ActiveRecord::Base attr_accessible :amount, :invoice_id belongs_to :invoice validates :amount, :numericality => { :greater_than => 0, ...
0
votes
2answers
32 views

Rails dynamic foreign key for has_many relationship

I have a User model that's used to hold all Users. There's two types on users in my apps, mentors and students, but they have the same structure. I want to do something like this. has_many ...
-1
votes
1answer
44 views

Can't get an STI/ActiveRecord model to do what I expect

I'm trying to build a simple survey/questionnaire app. Surveys have Questions; most questions consist of a single content field (the question itself), for which the survey taker will write in a ...
0
votes
1answer
21 views

Rails 3: method delegations with nil relationships

Given the following (vastly simplified) objects: class Player < ActiveRecord::Base has_many :characters end class Character < ActiveRecord::Base belongs_to :player delegate :name, :to ...
1
vote
2answers
78 views

How do I improve process performance converting a file to array of hashes?

I am using this method to process a single text file that has about 220,000 lines. It takes a few minutes to process one, but I have lots of them. Are there any recommendations to make this process ...
-1
votes
1answer
18 views

How do I get the rating for a source in activerecord-reputation-system

I'm using Twitter's activerecord-reputation-system gem which has been easy to get set up but running into a challenge getting the rating a source provided on a target. My model looks like this with ...
0
votes
3answers
25 views

Get all records with child records OR field length > 250

I have a Comment model which has-many attachments. What I want to return, is all of the comments which either have one or more attachment records, OR whose comment is longer than 250 characters. Is ...
3
votes
4answers
76 views
+50

Rails - Where (directories) to put Models that are not Active Record

We are building out apps that have Models that are not database components. We are curious to learn what others are doing in the rails community to address this subject. We are struggling with where ...
1
vote
2answers
51 views

How to reorder activerecord array based on array of ids

I have an existing activerecord array, gotten by the following: @posts = Post.where(["created_at > ?", n_days.days.ago]) And I would like to order this array based on a value that needs to be ...
0
votes
0answers
31 views

Data formatting/Storing

Have the following number... 0000950123-09-032084 It's all numeric, no letters. I wanted to store it in my database (sqlite3 for development and Postgres for production) using Activerecord. I ...
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
24 views

ActiveRecord::StatementInvalid unknown column error

Why does this work fine: Tag.create(game_id: 1, tagged: u) But this: tags = Tag.where(game_id: 1, tagged: u).includes(:tagged) gives error: ActiveRecord::StatementInvalid: Mysql2::Error: ...
0
votes
3answers
32 views

Rails form validation for custom setter during update_attributes?

I have a setup similar to below. Everything works fine, but if the validations in the Employee model fail (when the custom setter is invoked), how do I get them to fire when update_attributes is ...
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 ...
0
votes
1answer
18 views

Rails mysql query with Single Table Inheritance N+1 issue

I am trying to find all users that signed up during a given period of time to the ActionMovie plan. I am running into an N+1 problem and its taking me a very long time to get the number of new ...
1
vote
0answers
27 views

Return Hierarchical data from MySQL tables using ActiveRecord

In the Database (mySQL), I have a table named tests and a related (via FK) table called cars. Using the ActiveRecord gem, I added the classes for these tables in schema.rb: class Test < ...
1
vote
2answers
37 views

ActiveRecord::AssociationTypeMismatch when create new

Got ActiveRecord::AssociationTypeMismatchComponent(#70354292616060) expected, got String(#70354278277000) when create object "Machine" below; Objective: Try to assign "attributes" to a model that is ...
1
vote
1answer
29 views

activerecord ruby row with max value in mysql table

I need to select from MySQL table table1 (it's shown below) all records with different 'foreign_row_id' values and group them by maximum datetime value. For example, from the table below I should ...
0
votes
2answers
36 views

Creating an array from activerecord objects

When in the rails console the following code prints to screen an array of coordinates in geojson format as I expect it to: Bg. select("bg_id, ST_AsGeoJSON(the_geom) as my_geo"). ...
0
votes
1answer
132 views

dynamic_matchers.rb:55:in `method_missing': undefined method `migration_error=' for ActiveRecord::Base:Class (NoMethodError)

I'm on Windows. Ruby v.1.9.3p392 / Rails v. 3.2.13 - This is the demo_app project from the 2nd chapter of Michael Hart's Ruby on Rails Tutorial. This error comes up when I issue 'rails generate ...
0
votes
1answer
48 views

Rails Ransack search to get sum of association with conditions

Sorry if the title is unclear - I am not really sure how to word this question. I am using rails 3.2, postgresql, and ruby 1.9.3. I have two models: Order, which has many Items. Orders have a ...
1
vote
1answer
27 views

Having issues building a rails query that includes three associated models

I have three models I'm working with: User, Deal, and Investment. User User has many :deals User has many :investments Deal Deal has many :investments Deal belongs to :user Investment ...
0
votes
1answer
20 views

Can I use the syntax parent.Childs.create multiple times, when declaring a parent and two child records?

customer=Customer.new #create a new Customer object customer.id =1000+i #Id needs to be set first because otherwise its automatically set customer.update_attributes( :fname=>'mike', ...
-2
votes
0answers
21 views

/rails/activesupport/lib/active_support/memoizable.rb:32: [BUG] Segmentation fault

Very Urgent!!! I am getting Segmentation fault while running the migrations. Following is the error for your reference. rake db:migrate RAILS_ENV=production (in /data/first/releases/20121211170552) ...
0
votes
1answer
31 views

how to configure active record with mysql

I have this error: 126: No se puede encontrar el módulo especificado. - C:/Ruby193/lib/ruby/gems/ 1.9.1/gems/mysql2-0.3.11-x86-mingw32/lib/mysql2/1.9/mysql2.so (LoadError) mysql2.so it's there... ...
0
votes
2answers
34 views

Rails advanced sql query

I have a model User thats has_many user_entitlements. I want to get all of the users that have a preview attribute and no user entitlements. My code is currently: User.where("preview is not ...
0
votes
1answer
11 views

Setting defaults for my model fields like current time for 'created' and visits to zero

I have a simple model that contains the follow fields: url, datecreated, lastaccessed and visited. I have a form that provides the URL. Everything else I'd like to set manually. At the moment i've ...
0
votes
2answers
19 views

(Rails Active Record): Request with constraint for uniqueness of a filed of the result objects

Ok, I got the following simple model class: class Baby < ActiveRecord::Base attr_accessible :name, :born_at ... end And I need to collect the youngest 20 babies with unique names ...
0
votes
3answers
32 views

Do I have to explicitly generate a migration for the foreign key in a rails application?

Suppose I have Model Person and Model Book. One person has many books. I have a has_many books in Person's model and belongs_to in Book's model. When I generate those scaffold, there're no foreign ...
0
votes
3answers
70 views

Rails - how to select all records by ID range

I am trying to do a query for all cities (selecting only their name attribute) by their ID, and I want to be able to specify a range of ID's to select. My code is below: def list_cities(start, stop) ...
0
votes
1answer
26 views

Rails: Assign values to fields in model

I have two fields, first_name and brand_name. User enters first_name during sign in. And if he is an owner, he enters brand_name. brand_name by default equals first_name when the user creates an ...
0
votes
0answers
21 views

Ruby Gem Squeel, how to write self join

I'm trying to write the following query using the ruby gem Squeel SELECT COUNT(*) FROM( SELECT a.end_at AS START, Min(b.start_at) AS END FROM periods AS a JOIN periods AS b ON ...
0
votes
0answers
40 views

Strange overflow in ruby on rails active record

Let's say I have a model Item. There are a lot of items in the datatable. Item has has_one relation with other model (Price for example). I have to create relationship with create_price method. ...
0
votes
3answers
23 views

Linking two objects to a single record in rails active record

I'm trying to make two one to one relationships in the same class in rails. I added two columns to my class called link post_id1 post_id2 So now I want to be able to get a link object, and do ...
2
votes
0answers
27 views

ruby oracle-enhanced stuck connection after sleep

Thank you for your attention. We got a bit stuck with stuck connections with after some idle period and would appreciate any help or things to try. We're using v1.4.1 of ...

1 2 3 4 5 49