4
votes
1answer
50 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}
...
…
0
votes
1answer
49 views
named scope vs. find_by_sql (specific example)
Just out of curiosity, does anyone know a better way of building the following collection using named scopes (as opposed to find_by_sql)?
@available = Workflow.find_by_sql(["
SELECT …
0
votes
1answer
131 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 …
0
votes
2answers
47 views
How to test named_scopes and search methods?
When I learned about proxy_options I started using it to test all my named scopes. But then I found myself simply copying the conditions hash straight from the model, so it wasn't really testing the …
0
votes
1answer
40 views
“Section” has_many versioned “Articles” — How can I get the freshest subset?
Hi all!
I have a Model called Section which has many articles (Article). These articles are versioned (a column named version stores their version no.) and I want the freshest to be retrieved.
The …
0
votes
3answers
108 views
Rspec, Model load order, fixtures and named_scope challenge
I have some players and the players have a trade state. Rather than hard code trade states like "active" and "inactive" and then have to go looking for strings, I thought I'd be clever and have a …
1
vote
1answer
30 views
Named scope not cooperating with timezone?
Hi guys,
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 => …
1
vote
1answer
53 views
How do I re-use named scopes?
Hi I have a named_scope in my User model as following.
named_scope :by_gender, lamdba { |gender| { :conditions => { :gender => gender } } }
I want to create other two named scopes which re …
0
votes
1answer
69 views
default_scope with :joins and :select
I tried to define a default_scope in the following way:
default_scope :joins => :product, :select => "catalog_products.*, products.*"
What I'm getting from Rails though is this:
SELECT …
0
votes
3answers
173 views
rails named scope issues
I have two named scopes... both which work separately, but when combined do not work.
named_scope :total, :select => "COUNT(*) as days, AVG(price) as price, SUM(price) AS total", :group => …
0
votes
1answer
66 views
rails convert class methods to named scope
Hi all. Rails newbie here. I'm trying to get some class methods into named_scopes. My application structure is similar to a blog application with user comments. Each comment model has a score …
3
votes
2answers
163 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 …
1
vote
1answer
89 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 …
0
votes
1answer
84 views
Matching available languages to language names
I want to make a language selection dropdown in a site user edit/create page.
For this purpose, I have of course translated the site to more than one language.
Using I18n.available_languages, I can …
0
votes
2answers
30 views
basic modification of default model output with scope
I find myself doing the same things over and over again just to make one small modification to standard model output. I have a series of tables that I store information about products, etc. and all …
