Short Ruby on Rails screencasts containing tips, tricks and tutorials.

learn more… | top users | synonyms

0
votes
2answers
41 views

Ruby on Rails, Showing the hashmap array?

I was wondering is there a way to show the hash map array? I'm not sure if its the right terminology? But I wanted to see the columns from the database to see if I'm calling the correct hash keys. ...
0
votes
1answer
30 views

Rails - “include CarrierWave::RMagick” results in: undefined method `model_name' for NilClass:Class

I'm building a simple app with standard User model that has_one Profile model. I would like the profiles table to have a column for an image attribute. Therefore, I followed RailsCast #253 titled ...
0
votes
0answers
31 views

Tokeninput in Rails4

I think that the classical solution stopped working in Rails 4. Ryan Bates did something like this (and many have followed): Models: class Book < ActiveRecord::Base attr_accessible :name, ...
0
votes
0answers
31 views

Twitter Login using devise + Omniauth . It works. Other conceptual Issues

I've followed Ryan Bates railscast 'http://railscasts.com/episodes/235-devise-and-omniauth-revised' , and got it to work perfectly. However, there are certain things I do not understand. 1) When I ...
2
votes
2answers
55 views

Adding Prefix Match to pg_search

I am following this Railscasts episode. If I search "Kerber" it does return the right article. But if I search "Ke" it does not returns the same article. There's a way to fix this? class Item ...
0
votes
0answers
10 views

Rails 3 + Devise secret_token error

I've just followed the instructions from RailsCasts#209 but I' ve got the following error-message: ArgumentError A secret is required to generate an integrity hash for cookie session ...
0
votes
1answer
35 views

jquery append or replace based on call from rails?

I've been following several railscasts and currently have a product list with endless page using will_paginate. I want to implement railscast #240 to add a live search into the results, but there ...
0
votes
0answers
34 views

rails model is not shown and no exception is thrown

I followed this railscast to implement search on my app, but when the search is submited, the page is rendered blank. This is my show.html.erb <div class"row"> <div ...
0
votes
1answer
65 views

ActiveSupport::TimeZone list of strings for offset

I've followed Ryan Bate's railscast #106 http://railscasts.com/episodes/106-time-zones-revised which adds a time_zone string to the User model. The string is from the dropdown: = f.time_zone_select ...
1
vote
3answers
74 views

undefined method `admin?' for nil:NilClass

I followed railscast #250 Authentication from Scratch & got everthing wworking fine. Now I'm trying to only display edit & destroy links on my index page to admin user's. I've set up mu User ...
1
vote
1answer
43 views

coffescript is giving error in my project which before works fine

I am looking this video http://railscasts.com/episodes/258-token-fields-revised This is my coffescript code jQuery -> $('#employee_material_asset_tokens').tokenInput '/assets.json' theme: ...
0
votes
1answer
34 views

Railscast Formtastic

I just watched http://railscasts.com/episodes/184-formtastic-part-1 and after implementing my code, the form and everything else worked perfectly, except that when i create the form and go to the show ...
0
votes
1answer
50 views

Can't get rails search form to work with simple_form and sunspot

I have a simple rails app that uses the simple_form gem for forms and I am trying to set up a search form using sunspot. I have followed the instructions in Ryan Bates' railscast on setting up sunspot ...
0
votes
1answer
309 views

multiple image uploads in a nested form with carrierwave

I'm following railscasts episode 381 in an attempt to allow multiple image uploads to my app with the carrierwave gem & jQuery File upload. My app is for a college project & is set up with a ...
0
votes
2answers
143 views

Adding dynamic fields to nested form through AJAX

I've been watching and reproducing these railscasts on my app: 196-nested-model-form-part-1 and 197-nested-model-form-part-2. I do not yet have a pro account so i can't watch the revised episode. I'm ...
0
votes
0answers
73 views

Railscasts#197: nested model form — additional fields not saving

So I have been following the tutorial and everything seemed to be going good. However, it seems that only associations that were instanced in the model were getting saved. Additional forms added using ...
0
votes
1answer
85 views

Exporting data to csv in rails (railscasts #362)

There are a lot of questions in SO about csv export in rails, but I didn't find one that addresses my problem. I'm trying to export all instances of a model in my rails app, and I was following Ryan ...
0
votes
0answers
96 views

Jquery: Jcrop not working : Railscasts 182

I am using Railscasts 182 to crop the uploaded image. As per video i implemented this: As i am uploading image in profile page, my profile controller: def edit @profile = current_user.profile if ...
0
votes
1answer
54 views

DangerousAttributeError in OmniAuth create is defined by ActiveRecord

Please see this page, as I have the same problem: DangerousAttributeError in OmniAuth Railscast Tutorial: create is defined by ActiveRecord However being fairly new to rails, I am not quite sure as ...
0
votes
1answer
51 views

has_many as: source relationship producing unexpected SQL (Railcast #364)

I am implementing the Active Record Reputation System as described in Railscast 364. I've got most of it working, including the voting and the totaling (per user and per post). I have a problem when ...
1
vote
0answers
132 views

Display progress bar until picture uploaded, then replace div with picture - Jquery File Upload

I followed the Railscast by Ryan Bates (http://railscasts.com/episodes/381-jquery-file-upload?view=comments) to add multiple file upload with the Jquery File Upload gem and everything works great, but ...
2
votes
2answers
442 views

Setting up Linode (Ubuntu 10.04 32bit) nginx not starting. 98: address already in use

Hello having a little issue with setting up linode via Railscast instructions of Ep. #335 My Configuration for this server is: Ubuntu 10.04 LTS Disk Image 32bit I can get this far: Running both of ...
0
votes
0answers
76 views

Mongodb relation belongs_to and has_one relation with object_id

I am seeing this railscasts http://railscasts.com/episodes/258-token-fields-revised. it works fine for me . Fine code is code for user.rb model: class User attr_reader :employee_tokens ...
0
votes
1answer
199 views

Token limit in Jquery token input

This tokeninput is from http://loopj.com/jquery-tokeninput/ I see the tutorial from http://railscasts.com/episodes/258-token-fields-revised As i am using it in many places i need sometime only one ...
0
votes
1answer
141 views

Rails & Redcarpet: uninitialized constant Redcarpet::Render when used in ApplicationHelper

I'm following along the RailsCasts episode for Syntax Highlighting Revised. I updated my ApplicationHelper to look like so: require 'redcarpet' module ApplicationHelper class HTMLwithPygments < ...
0
votes
2answers
92 views

Coffeescript cannot find div - railscast 114 revised

Trying to follow the guide of railscast 114 with the endless page using will_paginate but I get an error from my coffeescript: home.js.coffee jQuery -> if $('.pagination').length ...
0
votes
0answers
94 views

Rails remote form not working

I am trying to make this work: in show.html.erb <h1>Chat</h1> <ul id="chat"> <%= render @messages %> </ul> <%= form_for Message.new, remote: true do |f| %> ...
0
votes
2answers
173 views

Add Edit and Delete feature in comment polymorphic-association-revised posts

I read this http://railscasts.com/episodes/154-polymorphic-association-revised posts and implement it as it have. But i want to add edit and delete features also in this tuotorial. I have ...
0
votes
1answer
42 views

Rendering Errors Without Changing Link - Ryan Bates - RAILS

For those of you who actually have, or actually are watching RailsCasts, and for those of you who have actually watched these two videos: ...
0
votes
1answer
364 views

Rails 4 Live Streaming

I am following this railscast that it explains how to implement a chat application. I have followed everything step by step, and it seems to be working until the point I started using redis for the ...
2
votes
2answers
435 views

Gettin 500 Internal Server Error in rails on ajax request

I'm trying to create a record from a form. I've used railscast 136 as ground work. When I trying to submit I get a 500 error for missing partial. I've created the controller correlated javascript view ...
0
votes
1answer
52 views

#258 Token Fields (revised) - how it create new authors?

I am trying to follow the episode #258 Token Fields (revised). I don't know how the code create authors, I have a feeling that is related to the code below, but I am not sure. Please can you explain ...
2
votes
1answer
93 views

jQuery does not update nested form in Rails

I'm following Railcasts 197 in order to make a nested form to my application. What I'm trying to do is displaying a "remove" link which hides a row from the form using jQuery. If I click in remove, ...
0
votes
1answer
263 views

How to prevent Sunspot, Solr returning all records when params[:search] = “”

I just started learning to use Sunspot / Solr with Rails. I followed this RailsCast http://railscasts.com/episodes/278-search-with-sunspot When I have no search queries and the search field is ...
1
vote
2answers
509 views

“BUG segmentation fault” while working with private_pub gem

I was trying the code from this screencast http://railscasts.com/episodes/316-private-pub. I grabbed the code from github. However, whenever, I try to send a message from that app, the faye server ...
1
vote
0answers
90 views

unable to run faye server while using private_pub gem

I tried following along with this screencast http://railscasts.com/episodes/316-private-pub which implements basic realtime functionality using private_pub gem. I used rackup private_pub.ru -s thin ...
0
votes
2answers
135 views

Ruby on Rails getting wrong number of arguments (1 for 0)

I'm using similar code to Railscast 213 to display a calendar with records. The do line is causing a "getting wrong number of arguments (1 for 0): <%= calendar @date do |date| %> <%= ...
0
votes
1answer
102 views

Why is my object.children undefined?

I'm running javascript on Ruby on Rails to insert a form dynamically into a page when the user clicks on a link. It's not working, but one particular bug gets my goat: that my form return ...
0
votes
1answer
94 views

Save an integer with time_zone_select

I am following the railscast on time zones found here- http://railscasts.com/episodes/106-time-zones-revised The following is what I am using for the time zone select input. Currently the form saves ...
0
votes
1answer
297 views

Get 403 (forbidden) when used jQuery File Upload to s3 rails app

I want to upload images to s3. For that I am following http://railscasts.com/episodes/383-uploading-to-amazon-s3 I am able to upload single image to s3 but now I am using jquery file upload to ...
0
votes
1answer
385 views

Backbone and Rails 3 Uncaught TypeError: Cannot call method 'on' of undefined

I am developing an application and I am following this rails cast: http://railscasts.com/episodes/323-backbone-on-rails-part-1 Everything seems correct except that I keep receiving an error when I ...
0
votes
1answer
44 views

Multibutton Rails Forms work for New but not for Edit

Following the helpful tutorial in Railscasts #38 http://railscasts.com/episodes/38-multibutton-form I set up a "Preview" button for my "New"/"Create" controller actions. But when I use the same ...
0
votes
1answer
83 views

Nginx redirecting to IP

I recently used the Deploying to VPS Railscasts by Ryan Bates for one of my projects. Everything worked like a charm however there is one small issue which is bugging me regarding the nginx ...
0
votes
1answer
86 views

backbonejs and rails 3.2

I just watched the backbone.js railscasts and Im not getting the error alert when the name is not present but do get an error on the server side. im using rails 3.2.8 and backbone-on-rails 0.9.2.3 ...
2
votes
1answer
166 views

Generate reset password token don't save on model

Hello I trying to create a reset password for my rails app; but when I try to save I get the following error: Validation failed: Password can't be blank, Password is too short (minimum is 6 ...
0
votes
0answers
149 views

Using omniauth-facebook Railscast #360

I'm trying to authenticate my application using the omniauth-facebook as you can see on railscast #360. I have the following problems: I don't know how to work with rails variables enviroment. For ...
1
vote
3answers
496 views

Rbenv stopped working after Capistranos `cap deploy:cold` - fails RailsCast episode 335

I'm following rails Cast episode 335: http://railscasts.com/episodes/335-deploying-to-a-vps using a linode VPN, running: cap deploy:cold * executing `deploy:cold' * executing `deploy:update' ...
0
votes
1answer
91 views

rails mailer generating invalid URL

I am trying to add password reset functionality to my rails app using action mailer. Everything seems to be working fine except that the generated link to reset the password is incorrect. Here are ...
0
votes
1answer
333 views

Excel and Ruby compatibility

I followed this Railscasts link for CSV export from Railsto export my html table (dynamically generated) to xls and it downloads my excel document when I do .xls However, when I open it in iWork ...
0
votes
2answers
86 views

Class Method In Model To Get Data On A Given Date

I'm building a call tracking application, as a way to learn Rails and Twilio. Right now, I am trying to follow Ryan Bates' tutorial to create a graph that shows users the number of phone calls they ...

1 2 3 4