Ruby on Rails version 3.1.0 is a specific version of Ruby on Rails. It was released on August 30th, 2011. Use this tag for issues related to development in Ruby on Rails version 3.1.
0
votes
1answer
14 views
bundle install not installing gem of production
When I run bundle install it is not installing gem of production group.
Some day ago I have run bundle install --without production. But Now I want to install gem of production also. How can I ...
2
votes
2answers
38 views
How to invoke a method in ruby when method name is dynamic?
In my rails project
when I do like this
@video = Video.find(video_id)
thumb = "video_thumbnail"
@video_thumbnail = @video.video_thumbnail ##woks fine
@video_thumbnail = ...
0
votes
1answer
28 views
can't register my variable in the database
i get an error when i clic on my button sumbit
the error say undefined method `strftime' for nil:NilClass
when i debugge my application i see something strange
tarted POST "/users/2/calendars" for ...
1
vote
1answer
16 views
.rvm/rubies/ruby-1.9.2-p320/lib/ruby/1.9.1/net/http.rb:644:in `initialize': No such file or directory - getaddrinfo (Errno::ENOENT)
I got this error when I tried to run: rake db:migrate, rake schema:load and rails s. The application I git cloned from Bitbucket is unusable and the client is unable to help.
I have reinstalled ruby ...
0
votes
0answers
28 views
Strange behaviour in devise
I am currently working on a Rails project where I am encountering an extremely weird issue with Devise . Initially my client wanted me to have a two step registration i.e. a user fills out a basic ...
0
votes
0answers
46 views
undefined method `strftime'
hy
After i have created the event of the user, i try to see it but i get an error
error undefined method `strftime' for nil:NilClass
I don't understand why i get this error because until apply ...
0
votes
1answer
24 views
Displaying dynamic data using charts and graphs in ruby on rails
I want to display dynamic data via charts,graphs which is retrieved from database. There are various gems available like highcharts, google graphs, gruff library, etc. Can anyone please site an ...
0
votes
0answers
20 views
Redirect scoped resources block in Rails routes?
Want to redirect from these existing routes:
scope ':category_id', shallow_path: ':category_id' do
resources :posts
end
to:
scope 'prefix' do
scope ':category_id', shallow_path: ':category_id' ...
0
votes
1answer
23 views
Twitter Integration using Ruby on Rails
I have a Ruby on Rails application (Ruby-1.9, Rails-3.2)which integrates with twitter to display the latest tweets containing a particular "keyword" dynamically. But it throws an error as NameError ...
0
votes
4answers
24 views
undefined method `Calendar' for 2:Fixnum
I am trying to put a calendar on my user page. I added route to routes.rb file. But I can not understand why it doesn't work.
route.rb
resources :users do
resources :calendars
end
The error ...
0
votes
5answers
55 views
How to add confirm message with link_to Ruby on rails
I wanted to add confirmation message on link_to function with Ruby.
= link_to 'Reset message', :action=>'reset' ,:confirm=>'Are you sure?'
Any ideas why it's not working?
2
votes
2answers
39 views
How do I get the contents of temp file through a form
index.html.erb
= form_for :file_upload, :html => {:multipart => true} do |f|
= f.label :uploaded_file, 'Upload your file.'
= f.file_field :uploaded_file
= f.submit "Load new ...
2
votes
1answer
28 views
Rails: Active Admin Association Image column
I am new to ruby on rails and have just installed active admin and was trying to customize the
views.
I have a product and image table. Each image belongs to one product.
Now I want to display a ...
0
votes
1answer
55 views
Best way to implement DRY in this example
What is the best way to create a reusable read method in this example. I have two chunks of code that do two things in common, read file and check for a certain regex pattern. I want to separate these ...
0
votes
0answers
40 views
Bootstrap js expand doesn't work in iOS, but does on desktop
Using Bootstrap, I have an expand/collapse interaction that works fine on desktop, but fails in iOS on my iPhone. I know the js is firing because another Bootstrap component on the same page works ...
3
votes
2answers
65 views
ruby sort an array alphabetically,unique and loop though 5 times
I am retrieving elements from an array:
- member_results.each do |member|
= member
It returns something like this:
["John", "Jason", "Andy", "Zee", "Sandy", "Randy", "Grisham"]
I need to ...
0
votes
0answers
20 views
How to get Helios and Rails to work together (Rack issues)?
I'm trying to get Helios (https://github.com/helios-framework/helios) to work with an existing Ruby on Rails 3.1 application. But there's a conflict regarding rack version; bundle install gives me ...
0
votes
2answers
32 views
how to create dynamic routes and helpers in rails3
i have a task to create mapping of different urls at run time .
In the application i have a GUI interface which displays list of routes from routes.rb file.
User has the ability to change that url to ...
0
votes
0answers
17 views
Integrating ROR community engine to my existing app
Am trying to integrate Community Engine to my application.But it is showing dependency error.I tried to correct all the dependencies,but it is not integrating.
C:\Sites\Example>bundle install ...
0
votes
0answers
20 views
Provide an API integrating into the Rails asset pipeline
Want to create a gem which provides some assets for the rails asset_pipeline
My gem is at https://github.com/deepak/socialite_js
The required DSL is:
socialite_javascript_tag provides a method on ...
0
votes
0answers
13 views
Rails3 -> memcache -> observers/cacher.rb -> ? -> profit
I can't believe I'm forced to post a "how to cache Rails SQL hits" question, but there's way too much tangential verbiage on the interthing on this topic for me to just learn it by searching.
Start ...
0
votes
3answers
54 views
Inline Javascript not working properly on rerendering a partial in ruby on rails 3.1
In my project we have inline javascript in a partial which is using some instance variables. When we are rerendering that partial after successful ajax call that script is not running.
Can you please ...
0
votes
0answers
9 views
Sunspot/Solr raketasks not loading in Rails 3 Mountable Engine
I'm trying to add the sunspot_rails gem to my Rails Mountable Engine, so I can use Solr to do full text searches. Like it states in the README file I've added this to my Gemfile:
gem "sunspot_rails"
...
0
votes
1answer
21 views
Rails 3: method delegations with nil relationships
Given the following (vastly simplified) objects:
class Player < ActiveRecord::Base
has_many :characters
end
class Character < ActiveRecord::Base
belongs_to :player
delegate :name, :to ...
1
vote
0answers
75 views
Rspec Error in end of Section 10.1.3 of Michael Hartl's Rials tutorial
I am on Section 10.1.3 of the tutorial http://ruby.railstutorial.org/chapters/user-microposts#sec-user_micropost_associations. I am using rails 3.1.1 and ruby 1.9.2
When I run the spec test
bundle ...
0
votes
0answers
42 views
How to query MongoDB in optimized way?
I have a Doubt in mongoid includes.
I have the models like below
class Person
include Mongoid::Document
field :name, type: String
field :age, type: Integer
has_many :phones
embeds_many ...
0
votes
2answers
42 views
problems rounding. I want to round the value with 2 digits
This is my loop in the house view show template:
- @region.cities.each do |city|
%li
= link_to city.name, country_region_city_path(@country, @region, city)
%li
= ...
0
votes
1answer
38 views
Rails has_many not populated on create
I've run a migration to introduce a new has_many and has many :through association. A "standard" has _many "layers" through "layers_assoc". The new feature works fine on existing standards, but ...
0
votes
2answers
24 views
Implement the gecoder gem in nested resource loop?
I implemented the geocoder gem based on the tutorial on http://railscasts.com/episodes/273-geocoder
This is a part of the house show view template
- @house.location.nearbys(20, {:order => ...
0
votes
1answer
17 views
Adding :scale to a column in a table already filled with data(non scaled) and Updating existing values-Rails 3
i have a migration file
class CreateProductDetails < ActiveRecord::Migration
def change
create_table :product_details do |t|
t.integer :quantity , :default => 1
...
0
votes
1answer
18 views
Rails 3: assets pipeline + many layouts
I have a huge project with rails 3.1 (without assets pipeline). This project has a lot of different layouts, for example:
application
home
console
And etc. Each layout has a huge list of js and ...
0
votes
1answer
33 views
Mysql queries inside controller class
I have a Usetable contains username and password fields and inserted one value to that table
username:admin
password:text
In view file contains text boxes for username and password and a login button ...
0
votes
3answers
25 views
Is there any posibility to control model callback for only one controller method call?
i need to use model callback when only selected action in controller
class TestController
def end_exam(); end
def resume_exam(); end
def continue_exam(); end
def review_exam(); end
end
class ...
-1
votes
1answer
55 views
Sort group of records based on different columns
I have a four columns in table called recordings such as score, event_id, user_id and I would like to sum the score of recordings based on user id + event id,
and then I would like to show the users ...
0
votes
1answer
44 views
Fields_for with nested attribute, has_many through association
I have 3 models - standards, layers, and layers_assocs. Standards has many layers through layer_assocs and the rest is trivial. The layers_assocs table stores the standards_id, layer_id and a visible ...
0
votes
1answer
20 views
How to avoid conflicting when naming model attributes?
I want to know if there is a best to name model attribute that won't conflict with ActiveRecord::Base instance methods.
For example, we probably won't name attribute as class or toggle, since these ...
0
votes
1answer
50 views
Make music streaming app using Ruby on Rails and WebSockets
I would like to make a Ruby on Rails app that streams music using WebSockets. Does anyone know of a tutorial or guide on how to get started? I need to make the app in Ruby on Rails which I only have a ...
2
votes
0answers
50 views
How do I limit Tire/ElasticSearch results by association?
I have a collection of posts that are within categories and subcategories using a belongs_to association. Additionally, the posts have a belongs_to relationship with my state and city models.
I am ...
0
votes
2answers
35 views
How to get not exists set in collection in Rails
I wanna to be get a set that doesn't exists in collection. like following:
ids = [1,2,3,4,5] # 2,3,4 is not exists
User.where(:id => ids)
I want to get a set [2,3,4]
Without affecting ...
0
votes
1answer
19 views
Rails: call a parent model 's attribute in View?
here i have 2 simple model with one-many relation:
class Category < ActiveRecord::Base
attr_accessible :Name
has_many :items
class Item < ActiveRecord::Base
attr_accessible :Category_id, ...
1
vote
1answer
49 views
Rails file upload with ajax
i have been uploading file with rails with rest-client, but when i change that into ajax,
gives some server error.
FORM code
<%= form_tag({:controller => 'person',:action => ...
1
vote
1answer
34 views
exception_notification settings not being used
I have the following in my development.rb, staging.rb, and production.rb
config.middleware.use ExceptionNotifier,
:email => {
:email_prefix => "[Exception] ",
:sender_address => ...
0
votes
1answer
36 views
Why is Rails not precompiling javascripts and stylesheets inside the vendor directory?
In my project I have third party JavaScripts and Css files inside the vendor/assets/javascripts and vendor/assets/stylesheets directories. In development mode I can refer to the assets within those ...
0
votes
1answer
15 views
Using Rails partial breaks document tree?
For some reason when I use a partial for the content in my Rails app, my HTML document tree breaks and the head elements spill over the body element. I've boiled this down to a very simple example:
...
0
votes
2answers
50 views
How to I remove a subdomain from URL?
I followed the Railscast on adding subdomains to a Rails app, here, and everything is working great with the subdomains. Now I just can't figure out a way to link back to the root domain without a ...
0
votes
1answer
39 views
Hyperlink in ruby on rails not redirecting
I have a tab controller that contains two tabs.while clicking first tab(tab1) it will show a form field.I have a hyperlink in another page. what i want is when clicking the hyperlink it will show the ...
0
votes
1answer
63 views
Rails 3 - Moving from Development to Production - Public Assets 404
I migrated a Rails 2.2.2 application to Rails 3.1.
In development mode: /var/www/project_dir# thin start --ssl
all the assets are found and served beautifully.
When I run in production mode: ...
0
votes
1answer
29 views
Rails wrong static location picking
I am new to rails and implementing a demo app. I have this code in my 'app/view/layout/applicatio.html.erb' file:
<%= stylesheet_link_tag "scaffold" %>
but when I run it and debug in my ...
0
votes
0answers
11 views
Rails 3.1 active model translation
I'm doing the migration from a Rails 3.0.7 to version 3.1.11
on my app I have an ActiveModel class:
class Form::Search
include ActiveModel::Validations
include ActiveModel::Conversion
extend ...
0
votes
2answers
47 views
How do I redirect request if a subdomain does not exist?
I've setup a current project with subdomains based on this Railscast. I have two models, State and City that each have a :subdomain field in their dataset. If a user enters a subdomain that matches ...





