Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
4answers
21k views

How do you scope ActiveRecord associations in Rails 3?

I have a Rails 3 project. With Rails 3 came Arel and the ability to reuse one scope to build another. I am wondering if there is a way to use scopes when defining a relationship (e.g. a "has_many"). ...
14
votes
2answers
11k views

Rails named_scopes with joins

I'm trying to create a named_scope that uses a join, but although the generated SQL looks right, the result are garbage. For example: class Clip < ActiveRecord::Base named_scope :visible, ...
12
votes
2answers
274 views

Confused using “using” Statement C#

According to MSDN Library using Statement (C# Reference) Defines a scope, outside of which an object or objects will be disposed. But I got this code posted here by some user and I got confused ...
11
votes
1answer
1k views

How to extract common named_scopes from ActiveRecord models

I have named_scope which is reused in multiple ActiveRecord models. For example: named_scope :limit, lambda {|limit| {:limit => limit}} What is the best practice to extract this code to be ...
10
votes
4answers
3k views

will_paginate with named_scopes

I'm using will_paginate for pagination, which has been working well so far, except for this one thing. If I try to paginate a scope, for instance class User < ActiveRecord::Base named_scope ...
7
votes
3answers
362 views

Rails 3 complex associations using nested_has_many_through

I have been trying to develop a movie based rails application which has support for multiple regions (Hollywood, Bollywood etc). I call the multiple regions as languages in the application. Each ...
7
votes
2answers
1k views

Ruby on Rails: Nested named scopes

Is there any way to nest named scopes inside of each other from different models? Example: class Company has_many :employees named_scope :with_employees, :include => :employees end class ...
6
votes
3answers
1k views

Additive Chaining with named_scope

Is there a way to combine scopes in an additive fashion? If I have the scopes User.big_haired and User.plays_guitar I can call User.big_haired.plays_guitar and get all the users who have big ...
6
votes
3answers
4k views

Encapsulating SQL in a named_scope

I was wondering if there was a way to use "find_by_sql" within a named_scope. I'd like to treat custom sql as named_scope so I can chain it to my existing named_scopes. It would also be good for ...
5
votes
1answer
76 views

What is Object::private and Object::public in Ruby?

What are these methods and how bad is it to override them? irb(main):001:0> Object::respond_to?('private', true) => true irb(main):002:0> Object::respond_to?('public', true) => true ...
5
votes
2answers
266 views

Returning array of objects via named_scope — has_many…belongs_to association; UNION ALL query

I'm looking for an answer that will return an array of user objects via (preferably) a named_scope or via a class method on the User model that does some manipulation. So without further ado... I ...
5
votes
1answer
340 views

Why does Rails generate duplicate SQL conditions when using scopes with associations?

I have setup a model structure which allows different models to associate with a File model through a has_many ... :through ... association which is also polymorphic so that a File can belong to many ...
4
votes
1answer
305 views

Can I create an *un*named scope in Rails?

I know you can create named scopes in Rails, which allow you to specify conditions which can then be built on later: named_scope :active, :conditions => {:active => true} ... ...
4
votes
2answers
489 views

How do I make named_scope work properly with a joined table?

Here's my situation. I have two tables: pledges and pledge_transactions. When a user makes a pledge, he has only a row in the pledges table. Later when it comes time to fulfill the pledge, each ...
3
votes
2answers
102 views

How do I write a named scope to filter by all of an array passed in, and not just by matching one element (using IN)

I have two models, Project and Category, which have a many-to-many relationship between them. The Project model is very simple: class Project < ActiveRecord::Base has_and_belongs_to_many ...
3
votes
3answers
400 views

Why does this Rails named scope return empty (uninitialized?) objects?

In a Rails app, I have a model, Machine, that contains the following named scope: named_scope :needs_updates, lambda { { :select => self.column_names.collect{|c| ...
3
votes
2answers
1k views

Mixing acts_as_tree (ancestry gem), acts_as_list and default model scoping

I'm using the ancestry gem to structure some groups in a tree. At the same time I'm using acts_as_list to keep groups at the same tree level in a sorted list. Given the following model: class Group ...
3
votes
1answer
2k views

Rails Workflow Gem - Metaprogramming events into named_scopes?

I'm using http://github.com/geekq/workflow to provide a state machine. I'm using ActiveRecord to save state, which means I have a "workflow_state" attribute in the model. I think I want a named_scope ...
3
votes
2answers
690 views

named_scope to order posts by last comment date

Posts has_many Comments I'm using searchlogic which will order by named scopes. So, I'd like a named scope that orders by each post's most recent comment. named_scope :ascend_by_comment, :order ...
3
votes
1answer
949 views

ActiveRecord named_scope, .scopes

The background to this problem is quite complex and convoluted, and as I am looking for a simple answer, I will leave it by the wayside in explaining my problem, and instead provide this hypothetical ...
3
votes
1answer
594 views

Rails: Can joins be merged when chaining scopes?

In a class A I have two scopes, s1 and s2 which both join over a table T using the exact same join columns: named_scope :s1 :joins => "JOIN T on T.id = A.t_id", ...some conditions named_scope :s2 ...
3
votes
1answer
594 views

Variable field name in named_scope?

In a Rails model I am trying to acheive a named_scope that filters on a start_date and end_date. This is easy. But I am going to have to do it on lots of different fields on many occasions. Is this ...
3
votes
5answers
2k views

Is there a way to combine named scopes into a new named scope?

I have class Foo < ActiveRecord::Base named_scope :a, lambda { |a| :conditions => { :a => a } } named_scope :b, lambda { |b| :conditions => { :b => b } } end I'd like class Foo ...
2
votes
1answer
78 views

Rails has_many with finder_sql and name_scope in combination return nil

For example lets say you have: class Model < AR::Base has_many :somethings, :finder_sql => "SELECT * FROM somethings" end class Something < AR::Base ...
2
votes
3answers
417 views

Rails gem rails3-jquery-autocomplete how to scope by user

I'm using the Rails gem rails3-jquery-autocomplete to add categories to posts. I would like to restrict the search to include only categories that belong to the current user or post's author in the ...
2
votes
1answer
130 views

Alternative to default_scope in ActiveRecord

I'm facing a problem with changing the functionality of an app and having to re-write about 700 method calls that now need to be scoped. I've been looking into how default_scope works, and like most ...
2
votes
1answer
170 views

Converting method to scope in Rails 3

I'd like to convert this method to a scope in rails so I could call something like Batch.all_completed and it would return all batches that met the criteria in the method: def all_completed? ...
2
votes
3answers
372 views

Rails 2.3.8 named_scope chaining

I have the following nested if statement hairball, I'm wondering if there is a more efficient way of writing this code (less lines of code that doesn't require so many conditionals) Each of the ...
2
votes
3answers
116 views

Rails3 - many_to_many relationships and scope chaining

Let's say I have a many_to_many relation ship between Articles and Tags class ArticleTag < ActiveRecord::Base belongs_to :article belongs_to :tag end class Tag < ActiveRecord::Base ...
2
votes
3answers
165 views

Iterating over a has_many collection within a named_scope

Here are my models: class Message < ActiveRecord::Base has_many :comments attr_accessible :read #bool def unread_comments? comments.each { |comment| return true unless comment.read?} ...
2
votes
1answer
198 views

What is scope/named_scope in rails?

I've recently started an internship. My employer uses ruby on rails, and I frequently encounter new syntax that I need to look up to understand. I've googled around for a good explanation of ...
2
votes
1answer
386 views

Rails: Is that possible to define named scope in a module?

Say there are 3 models: A, B, and C. Each of these models has the x attribute. Is that possible to define a named scope in a module and include this module in A, B, and C ? I tried to do so and got ...
2
votes
1answer
534 views

Sorting a Rails database table by a column in an associated model

I'm trying to implement Ryan Bates' sortable table columns code (Railscast #228) but I'd like to be able to sort on an associated column. In particular, I have the following models and associations: ...
2
votes
1answer
1k views

Rails 3: How to merge queries or scopes for complex query?

I'm building an events app that is very simple, it has a title and start_date and end_date. I would like to filter my query by mixing some of the values, like: if the start_date has passed but the ...
2
votes
2answers
83 views

Is there a build in functionality in .Net to create thread bound variables?

Is there a way to do this (psedo code): GetCurrentThread().Items.Add(new RefObject); then later on retrive it RefObject[] refObjs = GetCurrentThread().Items; and enumerate the objects. ...
2
votes
3answers
275 views

Empty Scope with Ruby on Rails

Following Problem: I need something like an empty scope. Which means that this scope is emtpy, but responds to all methods a scope usually responds to. I'm currently using a little dirty hack. I ...
2
votes
1answer
235 views

What is a difference between named_scope and named_scope + lambda

What is a difference between named_scope and named_scope + lambda Ruby on Rails code statements? named_scope :with_avatar, :conditions => ['avatar IS NOT NULL'] and named_scope :date_from, ...
2
votes
3answers
142 views

Rails: Using named_scope which triggers a MySQL “in”

PROBLEM: I want to run a query which would trigger something like select * from users where code in (1,2,4); using a named_scope. WHAT I TRIED: This is for a single code: named_scope ...
2
votes
1answer
273 views

Searchlogic and :has_many, :through =>

I'm using Searchlogic to search on many fields in a database. One of those fields is a :has_may, :through => relationship, and I can't get it to work. Here are the relevant parts of the models: ...
2
votes
1answer
187 views

Chaining Named Scopes not working as intended

I have 2 simple named scopes defined as such: class Numbers < ActiveRecord::Base named_scope :even, :conditions => {:title => ['2','4','6']} named_scope :odd, :conditions => {:title ...
2
votes
2answers
700 views

Using named_scope with counts of child models

I have a simple parent object having many children. I'm trying to figure out how to use a named scope for bringing back just parents with specific numbers of children. Is this possible? class Foo ...
2
votes
1answer
59 views

rails named_scope as an extension to AR::Base

class SomeModel < ActiveRecord::Base named_scope :recent, lambda { { :conditions => ['created_at > ?', 1.week.ago] } } end I want to extend the AR::Base class to have this named_scope for ...
2
votes
1answer
385 views

Using named_scopes on the join model of a has_many :through

I've been beating my head against the wall on something that on the surface should be very simple. Lets say I have the following simplified models: user.rb has_many :memberships has_many :groups, ...
2
votes
3answers
1k views

ruby on rails named scope implementation

From the book Agile Web Development With Rails class Order < ActiveRecord::Base named_scope :last_n_days, lambda { |days| {:conditions => ['updated < ?' , days] } } named_scope ...
2
votes
1answer
563 views

How to: Searchlogic and Tags

I have installed searchlogic and added will_paginate etc. I currently have a product model that has tagging enabled using the acts_as_taggable_on plugin. I want to search the tags using searchlogic. ...
2
votes
1answer
137 views

Ruby on Rails: Is it possible to :include the other leg of a circular join table?

I'm working on an application that models friendships between users. class User has_many :friendships has_many :friends, :through => :friendships, :conditions => ...
2
votes
1answer
730 views

How to make a complex named scope play nice with associations and other named scopes [rails]

I have the following named scope on class RentableItem < ActiveRecord::Base named_scope :available_at, lambda{ |starts_at, ends_at| { :select => "t.*", :from => "(SELECT ...
2
votes
2answers
205 views

Keeping named_scope Extensions DRY

In Rails, you can add a block after a named_scope for additional, context-sensitive methods like so: class User < ActiveRecord::Base named_scope :inactive, :conditions => {:active => ...
2
votes
2answers
2k views

Named_scope in rails unique records?

Is it possible to have named_scope return records unique for a certain column? e.g named_scope :unique_styles, :order =>"title desc", :limit => 3 That will give me three styles but what if I want ...
2
votes
1answer
127 views

Named scope not cooperating with timezone?

A really dodgy problem I've got. Here's my model: class Entry < ActiveRecord::Base default_scope :order => 'published_at DESC' named_scope :published, :conditions => ["published_at < ...

1 2 3 4 5