0
votes
1answer
66 views

Mix :select with :include in find method (Rails 2)

I have 2 models, User and UserProfile. A user has_one user_profile and a user_profile belongs_to user. 1) Find without select This query in console works fine, and take only 2 SQL queries. >> ...
0
votes
1answer
39 views

How can i set mark for textView?

i am doing "find and repleace button" for my application. I am using gtk and ruby. And i can find that how many word, if there is. Also i want to get selection word that searched word, and i should ...
3
votes
4answers
152 views

Find all images that have square dimensions (1:1 ratio) [closed]

Is it possible to use any *nix programs like 'find' or a scripting language like Python, PHP or Ruby, that can search your HDD and find all images that have the same width and height, aka square ...
2
votes
3answers
71 views

How does Proc.new finds the block in this code?

I have the following code: def call_block Proc.new.call my_local_proc = Proc.new { Proc.new.call } my_local_proc.call end call_block { p 'block' } The output is: block block Can someone ...
0
votes
1answer
48 views

Checking if a tablecolumn contains a certain value

any code for checking a table-column's value? Lets say we have a table submittedpictures and it contains a column called isFinalPicture. There are 5 records, but only 1 of them has isFinalPicture == ...
0
votes
3answers
53 views

Ruby Finding Something in an Array of Hashes

I am trying to learn Ruby and I have the following code a[0]={ :artist => 'Green Day', :name => 'Song1', :bitrate ...
0
votes
1answer
59 views

difficulties in using the functions find and last

I have table Field with : t.string "name" t.integer "id_survey" t.integer "id_participant" and I have the following instances in db: Field1= ["id_participant" => 1, "id_survey" => 1, ...
0
votes
1answer
144 views

Find all associated objects by specific condition

class QuestionGroup < ActiveRecord::Base has_many :questions end class Question < ActiveRecord::Base belongs_to :question_group has_many :question_answers has_many ...
1
vote
1answer
51 views

finding out which object has n instances in ruby

I have an array: x = [a, b, c, d, e, f, g, h] which can have objects from 1 to 9 Firstly, I have to count IF any of these objects is present 3 times. I don't want to write if (x.count(1) == 3) or ...
0
votes
1answer
54 views

Find items from the array of strings in array of hashes and proceed with the appropriate hashes

I have an array of links: array = [link1, link2, link3, link4] and array_of_hashes with two items: :names and :links hash = { :names, :links } e.g. array_of_hashes = [{ :names => name5, :links => ...
0
votes
3answers
97 views

Rails returns a nil, when searching with find_by

I'm beginning to learn RoR, but i've a problem which i don't understand. With Product.find :all returns all the records from DB. But if i want to find_by_gender(1) (or even 2) it returns a nil, i'm ...
0
votes
2answers
211 views

Ruby on Rails add info to .find result

Please bear in mind that I'm totally new to Rails when answering this.My question is as follow: I have an Array that is result of a .find query. This Array is passed to view and each item is shown. ...
0
votes
1answer
906 views

Filtering a list using checkboxes

I have a list of movies as well their ratings. At the top of my page I have a form that gives a list of checkboxes that shows each available rating (G, PG-13, etc). Once a user clicks a checkbox(es) ...
1
vote
3answers
169 views

Find by conditions with * wildcards

I have a search form with two params. If a param is empty I'd like to search all. var_1 = params[:var_1].blank? ? "*" : params[:var_1] var_2 = params[:var_2].blank? ? "*" : params[:var_2] @mymodels ...
0
votes
2answers
264 views

Ruby on Rails: Post.find(8) vs Post.where(:id => 8) statements, can't get comments for Post.where

This brings the comments with post_id=8 @onepost = Post.find(8) @allpostsWithAssoc = @onepost.comments But this doesn't bring the comments with post_id=8, but why ? @onepost = Post.where(:id => ...
1
vote
2answers
311 views

How to do find_index for multiple values in a Ruby array?

Given an array [0, 0, 1, 0, 1], is there a built-in method to get all of the indexes of values greater than 0? So, the method should return [2, 4]. find_index only returns the first match. Working ...
3
votes
1answer
190 views

ActiveRecord and sqlite3 : find does not accept any condition?

I have a problem I can't figure out here. I'm writing a ruby script that deals with an sqllite database. require 'rubygems' require 'sqlite3' require 'active_record' ...
4
votes
1answer
953 views

Can I or SHOULD I find an object by the object_id attribute in ruby?

When I make a new object, let's say o = Object.new This object has an id, o.object_id = ######## I also make several other objects, using the Object class. What would be the best way to have ...
1
vote
3answers
281 views

Rails, acts_as_taggable_on: how to get all aricles without tags

I'm using acts-as-taggable-on. I have Article model: class Article < ActiveRecord::Base acts_as_taggable_on :tags end I know how to find all articles with tag "tag". According to README the ...
0
votes
5answers
118 views

Ruby: Match an item to a list of items

Let's say I want to group States into Regions. For instance, the Southwest Region might be: Texas, Oklahoma, Colorado, New Mexico, Utah, Arizona, Nevada. Somehow I need to create the list of states ...
5
votes
4answers
118 views

Ruby on Rails: Find records without Sorting

I need to find the records in the exact order as it is passed in as the search parameter. For example, I have a string : item_list = "23,12,54,45" With the following query, I get records in the ...
2
votes
1answer
107 views

finding nearest record by time in ruby

The following code works but doesn't seem very ruby-like so I am looking for a better way to achieve the same. #Grab the events from the page events = page.events.sort_by{|e| e.start_time} ...
0
votes
1answer
489 views

Iconv::IllegalSequence in filename saved by wget (Ruby 1.9.2)

I'm saving files to an ext2 partition with wget using normal flags. Retrieving their names sometimes fails: s = `find "#{@dir}" -type f -printf "%T@\t::::\t%s\t::::\t%p\n" |sort` s.each_line {|l| ...
1
vote
3answers
648 views

How can I get Browser.text.include? to search for a variable? ( using Watir and Ruby )

The problem I am having is that I can't seem to find how to get the Bowser.text.include? to look for the value of textinclude that I give it earlier in the program. It seems to search literally for ...
0
votes
4answers
275 views

.find() returns hash-symbols!

I have this in one of my /views/ files: <%= Result.find(:all) %> Result is a model. This works fine in the console but it returns ['#,'#] in the view. It has recognised that I have two ...
0
votes
2answers
903 views

More Efficient Find Or Create Multiple Records In Rails

I have an app that needs to send out user invitations for events. When a user invites a friend (user) to an event, a new record connecting the user to the event is created if one doesn't already ...
0
votes
1answer
1k views

find_in_batches “NO BLOCK GIVEN (YIELD)”

I have a method where I take in a model and result_size . The first thing i try to do in this method is: array = model.logs.find_in_batches(:batch_size => result_size) But this doesn't work; ...
0
votes
1answer
427 views

Problem while using find method of Find Module in Ruby 1.9.2

I am writing the following code in irb in my windows terminal having ruby-1.9.2... and even though the code is just using the find function of the module Find, I am encountering the following error: ...
1
vote
2answers
60 views

Rails: Find all X that are assigned to one Y

I'm new to rails, so please excuse me for that possibly very stupid question. I have a model User and a model Experiment, both linked by a HABTM relationship. When I want to display, let's say: ...
0
votes
3answers
3k views

Ruby array object find

I am trying out ruby by making a program i need. I have a custom class, and I need an array of objects of that class. This custom class has some attributes that change in the course of the program. ...
3
votes
3answers
603 views

How to make Ruby's Find.find follow symlinks?

I have a file hierarchy and some of the sub-directories are relative symlinks. I am using Ruby's Find.find to crawl through these dirs and find some specific files. However it's not looking into any ...
1
vote
2answers
207 views

Getting the id with a rails find with :select

I have this rails find that i need to get the id as well but if i put the id in the :select wont it effect the query and is there another way to get the id @past_requests = ...
4
votes
2answers
1k views

How do you filter Ruby Find.find() results?

Find.find("d") {|path| puts path} I want to exclude certain type of files, say *.gif and directories. PS: I can always add code inside my block to check for the file name and directory type, but I ...
0
votes
3answers
90 views

.finding on a method in ActiveRecord

I'm using ActiveRecord and Ruby (outside of Rails) to track some statistics. I added a method (total_cost) to one of my models to do calculations using a couple of the columns in the current model as ...
0
votes
1answer
360 views

How do I create a blacklist/whitelist for finding Rails model records?

I want to create a model, "Whitelist" to build a list of users that I do not want displayed in my main model, "User". Example Controller def index @users = User.find(:all) #These are to be ...
0
votes
4answers
245 views

Rails: how to use conditions and only let the db look 100 records deep, I'm not looking for limit

I'm adding data to a db and I only need to check for duplicated data within the last 30 minuets or so. Data is getting added at about 10 entries per minuet so I only need search about 300 records. ...
1
vote
3answers
1k views

How can you find the most recently modified folder in a directory using Ruby?

How can you find the most recently modified folder (NOT A FILE) in a directory using Ruby?
9
votes
3answers
3k views

How can I make named_scope in Rails return one value instead of an array?

I want to write a named scope to get a record from its id. For example, I have a model called Event, and I want to simulate Event.find(id) with use of named_scope for future flexibility. I used ...
1
vote
2answers
256 views

Rails: find_by, conserving leading whitespaces

when I do the following def somefunction @texts = A.find_all_by_someid(someid) respond_to do |format| format.xml { render :xml => @texts } end end it gets the string ...
2
votes
2answers
3k views

Rails created_at find condition

I'm attempting to sum daily purchase amounts for a given user. @dates is an array of 31 dates. I need the find condition to compare a date from the array to the created_at date of the purchases. What ...
9
votes
4answers
8k views

Ruby Array find_first object?

Am I missing something in the Array documentation? I have an array which contains up to one object satisfying a certain criterion. I'd like to efficiently find that object. The best idea I have ...
2
votes
2answers
205 views

Active Record: ordering finds and also returning nulls

I want to find a ordered list of runners by their results. models class Race < ActiveRecord::Base has_many :runners, :dependent => :destroy end class Runner < ActiveRecord::Base ...
0
votes
1answer
145 views

Trying to return various models with Ruby Activescaffold find on models with inheritance

class Promotion def self.get_todays_promotions # Promotion is a parent model, having child models e.g. # DiscountPromotion, VoucherPromotion, etc. # they all use a single table called ...
0
votes
3answers
96 views

Complex date find and inject

I am building a financial reporting app with Ruby on Rails. In the app I have monthly financial statement objects (with 'revenue' as an attribute). For any single financial statement, I want show (1) ...
0
votes
1answer
733 views

rails routes params find for a form

I am having a bit of trouble with my rails application. It short, its a social networking app where users have a profile, have submissions, and can comment on submissions. My routes are as follows: ...
0
votes
2answers
384 views

How can I make sure Ruby's Find module will always return absolute paths?

If I run the Find module with a relative directory as a parameter, the files returned by it will be relative ones. Can I do anything to make sure I always have absolute paths ? require "find" ...
1
vote
6answers
206 views

removing extensions in subdirectories

I need to remove the extension ".tex": ./1-aoeeu/1.tex ./2-thst/2.tex ./3-oeu/3.tex ./4-uoueou/4.tex ./5-aaa/5.tex ./6-oeua/6.tex ./7-oue/7.tex Please, do it with some tools below: Sed and find ...
1
vote
3answers
680 views

Traverse xml structure to determine if a certain text node exists

Alright I have an xml document that looks something like this: <xml> <list> <partner> <name>Some Name</name> ...