The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
27 views

Rails: Named scope works on Class but not instance of Class

Given the following code: user_decorator.rb Refinery::User.class_eval do has_many :employees, :class_name => 'Refinery::Employee' scope :active_employees, lambda { ...
0
votes
0answers
12 views

Using has_scope in a base controller

I wonder how I could use has_scope in a base controller so that all subclass inherit the scopes. Something like class BaseController < ApplicationController has_scope :page, :only => ...
0
votes
0answers
30 views

Calculated Percentage Totals Always Zero in SQL Reporting Services

I'm having an issue with SQL 2008 Reporting Services when trying to calculate a row totals percentage value when compared to the total of all rows. When I try to calculate the percentage it always ...
0
votes
0answers
13 views

Strange behavior of scoped

I have folowing model class Zone < ActiveRecord::Base belongs_to :region scope :by_region, ->(region_id) { where(region_id: region_id) } def self.traverse_scope scoped.each do |zone| ...
0
votes
2answers
36 views

Rails: select in an intricate relationship

I am rather new to rails, so I ask for your patience. I have a bit of an intricate relationship between three (ActiveRecord) models: class Producer has_many :clients end class Client ...
0
votes
0answers
10 views

autosave on child retrieved with scope

I am using Rails 3.0.11 in a system where Person has many phone_numbers and in each of the phone_number object there is a identifier for the type of phone number it is, for example phone_number.type ...
1
vote
2answers
33 views

Which scope must be used if we want the instance collected by the GC to be disposed properly?

Must IsParentScope be used if one wants an instance collected by GC to be Disposed properly ? If not which Scope should be used instead?
0
votes
1answer
29 views

Rails Complex Query Suggesting Next Object

I have a complex scope on my model giving the user active deals that meet their parameters. scope :deal_query, lambda { |m, p| where("meal = ? and active = ? and people LIKE '%?%' and inactive_days ...
0
votes
1answer
16 views

Access named scope dinamically

If I have 3 named scopes like class Foo scope :test1, ... scope :test2, ... scope :test3, ... And a function def x(variable) end where variable is a string("test1","test2" or "test3") How ...
0
votes
0answers
24 views

Add a uniqueness constraint to a model's named_scope

I have this configuration: model Box < ActiveRecord::Base has_many :toys has_many :inventories, :through => :toys scope :for_inventory, lambda{ |inv| ...
0
votes
2answers
125 views

How to have multiple conditions in a named scope?

I have a User model. I can check whether a User is an admin by doing a_user.try(:admin?). I'd like to define a named scope that gets all Users updated within the last X minutes who are not admins. So ...
0
votes
1answer
71 views

SQLAlchemy equivalent of named scopes in ActiveRecord

Is there an equivalent of AR's named scopes? Named scopes are basically filters, that can be wrapped in a method, and then chained. Here's an example from ...
1
vote
1answer
93 views

Rails scope to return records where ALL associations match criteria

I'm having a problem writing a scope to return records where ALL has_many associations match a criteria. I have these models: class Product has_many :listings end class Listing belongs_to ...
4
votes
2answers
58 views

Rails ActiveRecord Scope that is the “opposite” of another scope, or is users that “lack” a property

I have a model for user.rb, in which I define a scope for admins, which is users that have the role of admin through a permissions table. has_many :permissions has_many :roles, :through => ...
0
votes
2answers
52 views

Name scope for finding emails from table field

In the user table I have a name field, where some records are names, and some are emails. I know, bad approach. That aside. I'd like to write a named scope that returns only email records. I've ...
0
votes
0answers
7 views

Inheritable named scope in ActiveRecord::Base

I have a named scope which I would like to apply to multiple ActiveRecord::Base classes. Is this possible (without copying the code into each class definition)?
-1
votes
2answers
66 views

rails scope model without relation

I have such model class Ads::Posting < ActiveRecord:Base has_one :child, class_name: 'Ads::Posting', foreign_key: :posting_id belongs_to :parent, class_name: 'Ads::Posting', foreign_key: ...
0
votes
1answer
78 views

Avoid scope hitting database if association already loaded

I have 2 models like so: class Country < ActiveRecord::Base has_many :cities end class City < ActiveRecord::Base belongs_to :country scope :big, where("population > 1000000") end ...
0
votes
1answer
68 views

Scope staticly reference another model resulting table not found

I use in-memory database for testing. The schema is reloaded in every test. Recently my rspec complains that a table is not found. The reason is that a scope is referencing another model at load ...
-2
votes
1answer
67 views

Link_to a named scope with attribute [closed]

After an afternoon spending in web search. I have to ask you. In my app I have a list of games which have one or more platforms associated. I want to propose to the user some filter based on the ...
2
votes
2answers
99 views

ActiveRecord named scope on two relationships to one model

I am using a polymorphic association of two different models to a tagging model. Great, easy. But, one of these two models also belongs to the other model. class Facility < ActiveRecord::Base ...
0
votes
1answer
59 views

Rails :scope across databases

I have three models, Alarms, Sites, Networks. They are connected by belongs_to relationships, but they live in diferent databases class Alarm < ActiveRecord::Base establish_connection :remote ...
2
votes
1answer
73 views

Is “taken” a keyword in ruby?

Straight to the question. I have a query like this: @issue_books = current_user.issue_books @already_issues = @issue_books.taken(params[:id]) where taken is a named_scope defined as below: scope ...
0
votes
1answer
77 views

Intialize instance variable through named scope

Is it possbile to initialize an instance variable through a named scope? I want to remember my search criteria after the initial search. See the following: class Foo < ActiveRecord::Base ...
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 ...
0
votes
2answers
371 views

multiple has_many through relationships

I'm setting up a collaborative writing platform. A user can have sets of items where any item can be in any set and belong to any user. This leads to a few problems though. These are my model ...
6
votes
2answers
1k views

undefined method `default_scoped?' while accessing scope

I am getting this error while accessing scopes. Here is AR model class StatisticVariable < ActiveRecord::Base attr_accessible :code, :name has_many :statistic_values scope :logins, ...
0
votes
1answer
190 views

Rails Testing a named_scope with a date range

SCENARIO I have a named_scope on a model called 'last_week'. All it does is it fetches the records from last week. I want to test this and my approach is to test that the results coming back are ...
0
votes
0answers
50 views

How do I turn this ActiveRecord query into a named scope?

I'm trying to implement a trending feature on my app. I have a table called Search that has a keyword column. Every time a user uses the search function, the keyword is stored in the table as a row. ...
0
votes
1answer
56 views

Rails - combining scopes from different tables

I have a couple of scopes on different (and somewhat linked) models class Alarm has_one :site #use mac_address field in Alarm and Site as key / foreign key scope :any_network, lambda{ ...
0
votes
1answer
110 views

Add named_scopes dynamically in rails application

Just like dynamic finder methods in rails, is there any way to have dynamic finder methods for associated models? Consider the following models class User attr_accessible :name, :phone_no ...
1
vote
2answers
154 views

Chain meta_search results

How can I chain metasearchs' search method ? @result = User.search(params[:search]).search(params[:filters]) We can call chain method on ActiveRecord like User.active.male.where( age: 14..20) ...
0
votes
2answers
285 views

what is the difference between named_scope and method?

named_scope or scope how difference with class method. named_scope :active, :conditions => {:status => 'Active'} def self.active self.find(:all, :conditions => {:status => 'Active'} ...
1
vote
1answer
101 views

Rails active record filtering or named scoping difficulties

I have the following set of classes and relations defined and I want to be able to build a collection of all events which contain at least one story a specific user has been tagged in. I.e. in my ...
1
vote
2answers
146 views

Active record association with named_scope repeat condition

I have relation like user has many articles and articles belong to user. So, to find the articles(which are active) of user i had added named_scope in articles model named_scope :active_articles, ...
1
vote
1answer
881 views

Rails 3: Correct syntax for named_scope with method call and model associations

I have four models in my application, defined as follows class User < ActiveRecord::Base has_many :comments has_many :geographies has_many :communities, through: :geographies class ...
0
votes
1answer
699 views

Rails 3 rails3-jquery-autocomplete search by several fields

I am using rails3-jquery-autocomplete plugin. I would like to search by several attributes, for instance title and app_number. What I tried: in model: class Eclaim < ActiveRecord::Base ...
0
votes
1answer
138 views

Rails 3 - Create a scope that takes advantage of a method

In my model I would like to create a scope that takes advantage of a method that is also in my model. I have the following model method: def is_paired ! pairing_id.nil? end I would like to ...
0
votes
1answer
67 views

Rails find_by with OR

I have a named scope set up in my rails application that is used to locate a record either by its ID (directly from the index view) or a UUID (from an email - basically only so that users can't enter ...
1
vote
3answers
72 views

Ruby on Rails - How to Query on model/condition on controlller?

I'm using rails 3.2.3 and have a questions about queries. I've read that it is favorable using arel instead of named scopes. Basically in my app, when a user logs in, I want him to see the products ...
1
vote
2answers
280 views

Rails ActiveRecord: How to select all users with a given permission?

I've got a model called Users, some of whom are considered Authors. This is accomplished through a table called Roles, which lists a number of different roles: "Author" is one. A many-to-many ...
2
votes
1answer
210 views

NInject services needed in multiple named scopes

I made a post on the Ninject forum but haven't received any answers... wondering if anyone has any suggestions? http://groups.google.com/group/ninject/browse_thread/thread/9ac79d5541f015cb Hello ...
1
vote
2answers
501 views

delayed_job doesn't work with Rails ActiveRecord scope

I have delayed_job 3.0.2 installed, and it works with method calls on objects. However, if I call a scope on a class, for example, Listing.delay.all then I get error stack level too deep. This ...
1
vote
1answer
330 views

Rails scope overriding select

I have a model with a has_many relationship, and a scope to determine whether or not it has any children, such as: scope :with_nomination, :include => [:nomination], :conditions => ...
0
votes
1answer
377 views

Custom Model Method, setting scope for automatic sending of mail

There are several stages to this, and as I am relatively new to rails I am unsure if I am approaching this in the best way. Users follow Firms, Firms applications open and close on certain days. If a ...
1
vote
0answers
152 views

RSpec's stub_chain returns stub even when it does not include full chain of scopes

I ran into an issue with my RSpec specifications and ActiveRecord scopes today. I have a controller that executes code similar to this @customers = Customer.active.with_counts.order('name asc') ...
1
vote
1answer
273 views

How to combine different scopes in Rails 3?

I have the following named scopes in my rails app: scope :published, :conditions => {:status => 'published'} scope :coming_soon, :conditions => {:status => 'coming_soon'} scope ...
5
votes
2answers
320 views

Is it possible to invert a named scope in Rails3?

In my Rails3 model I have these two named scopes: scope :within_limit, where("wait_days_preliminary <= ? ", ::WAIT_TIME_LIMIT.to_i ) scope :above_limit, where("wait_days_preliminary > ...
0
votes
1answer
108 views

How to deny default scope for ActiveRecord entity

I've created few scopes for my ActiveRecord entity and I want to enforce user using one of it. Is there a way to, say, throw an exception, if no named scope is selected. I.e., I want to dissallow ...
0
votes
1answer
101 views

Need to bring back information on intermediate model with terminal model on Rails has_many through

I have the following models: school.rb class School < ActiveRecord::Base has_many :offers has_many :players, :through => :offers has_many :teammembers, :class_name => 'Offer', ...

1 2 3 4 5 6