0
votes
1answer
19 views

Is there a way to include everything that's in /assets/javascripts?

As it says on the tin. It seems like javascript_include_tag :all includes /assets/all.js instead of all of them. Is there a way to just include everything there plus all the subfolders?
0
votes
3answers
44 views

Rails join or includes?

I've got a User model/table and a Friend model/table. The users table has a uid column that stores a user's Facebook uid. The friends table stores their Facebook friends (associated by a user_id ...
0
votes
1answer
26 views

How to handle two nested siblings, with to_json next?

The to_json ActiveRecord docs say this for dealing with two nested models, where comments is nested in posts: konata.to_json(:include => { :posts => { ...
0
votes
0answers
27 views

Better way to organize/ iinclude javascript blocks inside haml views?

In many views (haml) im using javascript: block to include certain page-only javascript methods. Like in below example %h1 My title :javascript here my custom js code Is there a smarter way to ...
0
votes
1answer
13 views

Recursive :include in Rails

I have a polymorphic model that can relate to itself: class Comment < ActiveRecord::Base belongs_to :commentable, polymorphic: true has_many :comments, as: :commentable end These ...
0
votes
2answers
25 views

Ruby How to display message if include? statement is true or false

I'm very new to Ruby and am attempting to display one of two messages based on whether certain words are included in an array. My current controller contains the following: @cookie = ["gluten", ...
0
votes
1answer
26 views

Rails console includes differently than model

tl;dr: include MyModule brings MyModule's functions into scope when run in rails console, but not when in a rails model. I don't understand and would like to be able to access these functions in my ...
0
votes
0answers
52 views

JS not working on Rails

I have a file named "admin.js" loading some JS files. They get loaded in HTML but nothing works... im considering that im having jquery error, but i do not know almost anything about it. The fact is ...
1
vote
1answer
105 views

Trying to include Rails helper library in module

I have a module called Sms that I'm defining in lib/sms.rb. Within it, I have a method called Sms.chunk that uses the method word_wrap. This is part of the TextHelper library, so I am including it at ...
0
votes
0answers
75 views

rails through association, includes same table

class Film < ActiveRecord::Base has_many :film_casts has_many :derectors, :through => :film_casts, :source => :cast, :conditions => ['film_casts.type_id = 0'] has_many :performers, ...
0
votes
1answer
80 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
2answers
45 views

how to compare a record inside an array with another record in Ruby or Rails?

I have a method that looks for random answers and puts them into an array: def self.answer_list(user) answers = Array.new for i in 1..25 answer = random(user) if !answer.nil? && ...
0
votes
1answer
37 views

SQL - Rails Deep nested joins

First of all, I'm French, so sorry for my ugly english. I have following models : Shop has_and_belongs_to_many :products Product has_and_belongs_to_many :shops has_many :taggings has_many :tags, ...
2
votes
2answers
239 views

Inserting Headers and Footers in Ruby on Rails web application?

I'm coming from PHP development and I'm trying to learn Ruby on Rails. I'd like to know what is the best practice for inserting headers and footers? Typically in PHP i'd just do include('header.php'); ...
1
vote
2answers
100 views

Access rails includes with has_many

I have a model called "Match" and a model called "Bet" class Match < ActiveRecord::Base ... has_many :bets end And my Model Bet: class Bet < ActiveRecord::Base attr_accessible ...
0
votes
1answer
128 views

Gem will_paginate ignore :include parameter of ActiveRecord find method

I tried to optimize my Rails 2 application, to limit the mySQL query numbers. Here is a simple example, with 3 models : An Article has many pictures, through a join model ArticlePicture. The "main ...
1
vote
1answer
93 views

Use globalize3 (with_translation) with 2 models in a query (include)

Using Globalize3 I am trying to load the following models including translations in a single query: products (with product_translations) properties (with property_translations) When I try the ...
1
vote
0answers
76 views

Import same Compass Sprite across multiple stylesheets with Rails

Sometimes we have both regular and partial .sass files with @include declarations using the very same sprite images. This is easily used in standalone sass because you can @import icons/*.png in the ...
1
vote
1answer
48 views

What improvements can be implemented out, with collection and includes in ruby on rails?

I have a very complex query at a beginner level which I am not able to solve out. It takes my page load to around 6 7 seconds on local machine. The Query is something like for user ...
0
votes
1answer
38 views

included module methods cant be called in class methods

I have a module RegexHelper which contain methoids to verify if a string is only numeric: module RegexHelper def is_numeric?(str) !!str.match(/^[0-9]+$/) end end And I include this module ...
1
vote
1answer
70 views

rspec - stub included methods

I need to stub a helper method that's included inside a controller. Yes it's bad practice but for now that's what what i have to live with. class ApplicationController < ActionController::Base ...
1
vote
1answer
210 views

Detecting similar strings in Ruby.

In my db, there are entries eg. Тормозной диск, Диски тормозные LPR etc. in art_groups_arr array. I would like to find all the entries similar to Тормозной диск, such as Диски тормозные LPR This ...
0
votes
1answer
70 views

How to “nest” the inclusion of modules when using the Ruby on Rails ActiveSupport::Concern feature?

I am using Ruby 1.9.2 and the Ruby on Rails v3.2.2 gem. I would like to "nest" the inclusion of modules given I am using the RoR ActiveSupport::Concern feature, but I have a doubt where I should state ...
2
votes
1answer
83 views

How to properly override a method mixedin by a module?

I am using Ruby 1.9.2 and Ruby on Rails 3.2.2. I have the following situation: class MyClass < ActiveRecord::Base include MyModule1 include MyModule2 include ... # Note: This method ...
0
votes
0answers
102 views

Including Javascript only once in Rails

I use require command to include JS files inside a custom made JS plugins. But some plugins will include the same master JS file. I need to check if the master JS file is included then not include it ...
0
votes
1answer
410 views

ruby on rails check if value exist in array always returns true

I am trying to check if a set pset(aka problem set) exist in an array in order to display the correct page but the following code always returns true... def c allowed_psets = [1] pset_id = ...
1
vote
1answer
195 views

Ruby on Rails ActiveRecord include queries happen while not specifing it

Whenever i try to call this: @ships = Ship.find(:all, :conditions => {:sold => params[:sold]}, :order => "ship.id desc") From this model: class ...
0
votes
1answer
124 views

Understanding the `include` statement behavior for “subsequent” mixin modules

I am trying to understand the include statement behavior when used in multiple Mixins. That is, I have these statements: class Article < ActiveRecord::Base include DoubleIncludedModule include ...
0
votes
2answers
115 views

Rails search through array of arrays

I have an array of arrays like so: [[1, "dog"], [2, "cat"], [2, "bird"], [3, "monkey"]]. I want check if the larger array contains arrays of a given number without regard for the animal element of ...
0
votes
1answer
48 views

Rails Will_paginate: Include parents?

lets say I have the following models: Grandpa, Dad, Child Where Grandpa has_many Dads, and Dad has_many Children. I'm displaying Children using will_paginate. Is there any way to include Grandpas so ...
2
votes
1answer
242 views

Rails Module not 'included' when included by a Rails Model Class (in Production)

Heres my sample rails model class (in app/models/user.rb): class User < ActiveRecord::Base puts "loading user model" include Auth::User # module is in the Auth engine end Heres that module ...
2
votes
2answers
114 views

Associated tables: Join or Include with Rails

I am feeling a bit slow when it comes to rails and the Active Record associations... I have two tables. Table = Rings Table = Variations with foreign_key => "ring_id". class Ring < ...
1
vote
2answers
88 views

Rails modules and routing

I'd like to include TestModule in MyModule: # in test_module.rb module TestModule SOMETHING = [1, 2, 3] end # in my_module.rb module MyModule include TestModule def my_method ...
0
votes
1answer
546 views

javascript_include_tag and stylesheet_link_tag

I would like to know if there is some standard (Rails-version-independent) folder in Rails application where to put javascripts or stylesheets. when I insert javascript_include_tag and ...
1
vote
1answer
402 views

Return model method in JSON hash with an :include

I've got an active record query which is pretty simple def show user = User.find(params[:id]) render :text => user.to_json(:include=>:classes) end However, in my Class model, I have a ...
0
votes
1answer
225 views

Rails require path is correct but still cannot load such file error

Im trying to include a file in my view with: = require Rails.root + 'app/assets/js_manual/counters/members.js' cat /full/path/to/app/assets/js_manual/counters/members.js goes fine i see the ...
0
votes
1answer
2k views

Rails: javascript_include_tag :all purpose?

I have a problem with Rails and Jquery. Im using AJAX to add comments to articles without reloading them. The following code got automatically included in my views/application.html: <%= ...
0
votes
2answers
428 views

Is there such a thing as a 'nested find' in Rails?

I've got the hang of nested includes—they're great for performance—but what I'd really like is a 'nested find'. What's the best way to achieve something like: @matchingProducts = Batch.find(:all, ...
1
vote
1answer
660 views

Include Module into ruby class in a Rails initializer

Inside of an initializer in Rails i am trying to include a module in a rails Model User.send :include, Something This works for the first request but does not for the second/third/etc. due to rails ...
3
votes
1answer
403 views

Can't include SendGrid in my Rails3 project

I'm very new to ruby and rails (3 days and counting), so my problem is probably something stupid. However, it seems to be something stupid that couldn't be resolved by searching for answers online. :( ...
1
vote
1answer
522 views

Complex Query in Rails using Model.where(…).includes(…)

I am trying to query through four layers (yikes!) of associations. Associations are as follows: (edit: added associations details, I had them in the source but didn't include them here) Provider ...
3
votes
1answer
130 views

Ruby on Rails - using :include in Model of different schema

I am working with Ruby on Rails models. I have two models belonging to two different schemas. Two models have parent child relationship. e.g class Group < ActiveRecord::Base has_one :customer ...
1
vote
1answer
1k views

Shortening up respond_with( :include => xxx)

I'm looking for a way to shorten up the :include => :child inside a respond_with which generates json. Here is an example, not sure if it is even possible, but I would like to find out. In the ...
0
votes
1answer
167 views

rails how to add in :include for a multiple index key association

I have started off by following this guide here Rails - Multiple Index Key Association I have tried to add in :include to speed up the association but im getitng this error: ...
0
votes
1answer
287 views

Include plugin in module in Rails

This is a definite newb question: I have a module defined in my lib/ directory that I call from a sweeper and as a rake task. Inside the module I want to reference my spawn plugin. Just including ...
0
votes
1answer
259 views

Rails has_many overridden by an included module

I have a model that looks like this, the #friends method overrides the association-generated method #friends: class User < ActiveRecord::Base has_many :friends def friends puts 'hi' end ...
1
vote
2answers
195 views

How to use the `:include:` directive using RDoc?

I am using Ruby on Rails 3.0.7 and I am writing some documentation for my application using RDoc. Since I have not found on the Web some good documentation with examples, what I would like to know is ...
0
votes
1answer
93 views

Performance on rails 2 :include

I'm having a lot of trouble with a page where I need to display some graphs about the data in the class "Post". Here are the models involved. class Primary has_many :secondary has_many :posts, ...
0
votes
1answer
166 views

Testing controller - record not found when using find with includes

I'm testing a controller action that uses includes in the find statement. It raises RecordNotFound when the test runs. Am I missing something? How should I be handling tests on such things? ...
2
votes
1answer
1k views

Rails 3: How to add a module to a model?

I've got a User model in my Rails 3 app which is getting huge. I want to extract a bunch of functions which are related to subscription billing and place them in a module. This is the first time I've ...

1 2