Every week Ryan Bates will host a new Railscasts episode featuring tips and tricks with Ruby on Rails. These screencasts are short and focus on one technique so you can quickly move on to applying it to your own project. The topics target the intermediate Rails developer, but beginners and experts ...
40
votes
14answers
13k views
OmniAuth & Facebook: certificate verify failed
I've followed Railscast #235 to try and set up a minimal Facebook authentication.
I've first set up a Twitter authentication, as done by Ryan himself. That worked flawlessly.
I then moved on to ...
10
votes
4answers
926 views
Rails, OpenID and Authlogic
I've been following ryan baytes screencast #170 and adding ruby-openid, authlogic and authlogic-oid to an existing authlogic authentication system.
However, i keep getting the following stack of ...
4
votes
2answers
543 views
Rails : Using jquery tokeninput (railscast #258) to create new entries
I have successfully been able to implement the addition of new artist entries which was not included in Ryan Bates railscast #258 http://railscasts.com/episodes/258-token-fields
So in other words, a ...
4
votes
3answers
308 views
Can't understand Ruby's magic
In railscasts project you can see this code:
before(:each) do
login_as Factory(:user, :admin => true)
end
The corresponding definition for the function is:
Factory.define :user do |f|
...
4
votes
3answers
264 views
Please explain this Rails method to me like I'm a little kid
I found this in Ryan Bates' railscast site, but not sure how it works.
#models/comment.rb
def req=(request)
self.user_ip = request.remote_ip
self.user_agent = request.env['HTTP_USER_AGENT']
...
3
votes
3answers
758 views
Rails Active Admin resource problem
I recently have watched railscast 284 about active admin and wanted to implement it into my web app, however I am running into an issue when I add a resource. I get the following message every time I ...
3
votes
1answer
587 views
Multi-step form in Rails 3 with Paperclip attachments
I'm creating a multi-part form in the style that Ryan Bates describes here:
http://railscasts.com/episodes/217-multistep-forms
http://asciicasts.com/episodes/217-multistep-forms (text-based version)
...
2
votes
3answers
406 views
How to use Elasticsearch on Heroku
I've just finished watching both Railscasts' episodes on Elasticsearch. I've also went ahead and implemented it into my rails application (3.1) and everything is working great. How I want to deploy my ...
2
votes
2answers
261 views
Rails Beta invitations - Overriding Devise Registration Controller
I use Devise (1.4.8) for my User model and have been trying to implement a simple beta invitation feature (Rails 3.0.7), following Ryan Bates's railscast.
I can't get the [new] method of my devise ...
2
votes
1answer
98 views
Dynamically adding child field on form as described in Railscast 197 does not use :child_index parameter to generate html name attribute
I have an application where I am trying to add records as shown in the Railscast number 197. My objects are more simple, as I only have one level of Parent/child relationships: Patients and events. ...
2
votes
1answer
54 views
How to do complex forms with jQuery instead of RJS
In episode 74 of railscasts ryan shows how to achieve complex forms with RJS: http://railscasts.com/episodes/74-complex-forms-part-2
The trick is to create a partial and link_to the partial using ...
2
votes
1answer
332 views
Using jquery TokenInput without default 'name'
Im trying to use the jquery tokeninput found here: http://loopj.com/jquery-tokeninput/ Following the guide from railcasts: http://railscasts.com/episodes/258-token-fields
By default, it required a ...
2
votes
1answer
145 views
putting has_many :through into play and using it in an actual form
class Allowedevent < ActiveRecord::Base
:belongs_to :room
:belongs_to :event
end
class Room < ActiveRecord::Base
:has_many :allowedevents
:has_many :events => :through => ...
2
votes
2answers
927 views
Ruby map method syntax question [closed]
Possible Duplicate:
What does map(&:name) mean in Ruby?
I was watching railscasts more virtual attributes episode. In that episode, at one point, ryan used a map method syntax which I ...
2
votes
2answers
535 views
heroku & devise user sign up registration controller error
I just switched to Devise/Omniauth combo and everything is working properly on my localhost server. However when I uploaded to heroku the app crashes when the user clicks sign up on the traditional ...
2
votes
2answers
1k views
Ruby on Rails escape_javascript usage with jQuery
I have been looking at this Railscast, specifically these lines of code.
// views/reviews/create.js.erb
$("#new_review").before('<div id="flash_notice"><%= ...
2
votes
2answers
1k views
Problem with Railscast #197 - Nested Model Form Part 2
I'm trying to implement Ryan's Railscast #197 in a system with Questions, Answers, and (multiple choice) Options. http://railscasts.com/episodes/197-nested-model-form-part-2.
I have successfully ...
1
vote
2answers
58 views
rails server not starting - trying to run code from ryan bates railscasts application with rails 3
I am trying to work with ryan bates' sample code that he uses for his railscast on Daemon (episode 129). I have rails 3 installed, and when I downloaded his code, I cannot run the server. To try and ...
1
vote
1answer
51 views
webrat_steps.rb missing
I'm trying to work through http://railscasts.com/episodes/155-beginning-with-cucumber which basically teaches how to use Cucumber within Rails applications.
I installed all missing gems and running ...
1
vote
0answers
65 views
Passing javascript through a function, html_safe, raw and f not working
I was following Railscasts 196 and 197 in order to better learn dynamic nested model forms and I can across this problem.
I am not sure how to pass javascript through the link_to_function, the class ...
1
vote
2answers
47 views
Display Different Text When Logged In in Rails
I have been following the Railscast #270 found Rails Cast #270 about implementing Authentication in Rails 3.1. What I would like to do is have the ability in my templates to have different links ...
1
vote
0answers
93 views
How can I use an application decorator for site wide view logic?
I'm a relative Rails newb so be gentle with me :). After watching the recent Railscasts episode on Draper I thought I'd have a go at refactoring some of my stuff to make use of the decorator pattern. ...
1
vote
0answers
77 views
Javascript code just produces HTML printout, fails to render it
I'm a newbie to RoR and am following this railscast that explains how to remove and add elements within nested forms. In my case, I'm trying to allow users to add/remove "items" from a shopping ...
1
vote
1answer
431 views
Rails 3.1 helper-method to check values of current_user
I've build my own basic blog-tool with Rails 3.1 based upon http://ruby.railstutorial.org/ruby-on-rails-tutorial-book and with the authorization presented in RailsCast 274 ( ...
1
vote
0answers
75 views
Rails 3 - Help! Subdomains - Users Cannot Logout?
I've followed the ascii cast up at http://asciicasts.com/episodes/221-subdomains-in-rails-3
I've set the :domain option to :all in session store:
Rails.application.config.session_store ...
1
vote
1answer
29 views
Rails: How to link a model to an authenticated user
I want to link a model Tasks to a User properly, to make sure that only an authenticated user can access only the Tasks and dependent models that belong_to User and Task
My user model was generated ...
1
vote
1answer
293 views
“Error: \”throw $continue\“ is deprecated, use \”return\“ instead”
I am following railscast to generate complex form
I am receiving this error:-
"Error: \"throw $continue\" is deprecated, use \"return\" instead"
Any idea?
I am receiving this error when I am ...
1
vote
4answers
824 views
Rails 3 Nested Models unknown attribute Error
I have a model "Issue" and a nested Model "Relationship"
In the issue.rb I have mentioned:
has_many :relationships, :dependent => :destroy
accepts_nested_attributes_for :relationships, ...
1
vote
0answers
463 views
Railscast geocoding missing JSON::ParserError constant
Replicating the geocoding example from Railscast #273 at http://railscasts.com/episodes/273-geocoder
under Rails 3.1rc4 using:
multi_json (1.0.3)
nifty-generators (0.4.6)
I get
NameError ...
1
vote
1answer
196 views
Geocoder Gem Reverse Geocoding
I've just finished watching RailsCasts #273 on the Geocoder gem. It looks like a really powerful/flexible gem and I want to integrate it into my app but I'm a little bit confused about reverse ...
1
vote
0answers
63 views
Rails 3: jquery_tokininput railcast #258 - how to add new entries?
Hi I've followed ryan bates railscast on the jquery_tokeninput gem and I've gotten everything working on my app except the ability to create new entries. From the show comments it looks like an issue ...
1
vote
1answer
185 views
has_many returns an array instead of ActiveRecord class
I am following OmniAuth railscasts and trying to implement the same with authlogic + facebook instead of devise + twitter as shown in the railscast.
Maybe my understanding of has_many still isn't ...
1
vote
4answers
89 views
Rails - Help in making a Search method
I have just watched the railscast about a simple search form http://railscasts.com/episodes/37-simple-search-form and I want to do something like that in my app, but I don't want to find just results ...
1
vote
1answer
295 views
Rails Validating on a virtual attribute, setting form error. Railscast #32
I'm basically attempting to implement the solution from Railscast #32, modernized for Rails 3.0.7
http://railscasts.com/episodes/32-time-in-text-field
class Task < ActiveRecord::Base
...
1
vote
2answers
1k views
Nokogiri Segmentation fault?
I am trying to run a simple Ruby script from Railscast and once I run my program I get the following Segmentation fault bug error. I have tried uninstalling and reinstalling Nokogiri and LibXML and ...
1
vote
1answer
154 views
How to create a model through text field with validation?
I followed the tutorial "Create a model through text field" (Railscast #57) which works so far. Though, I noticed that neither the select field nor the input field for the new object get validated.
...
1
vote
2answers
262 views
How to filter list action in Rails using named routes?
Given I have two models: company and location. A company has many locations.
I found Ryan Bates' Named Routes very interesting.
So I added resources for each of my model in routes.rb.
resources ...
1
vote
2answers
599 views
Paypal Express ActiveMerchant integration
I am following Ryan Bates' railcast 146 and it is really helpful. However, Im trying to remove the cart object from the process, and just process an order individually. The problem I am having is ...
1
vote
2answers
2k views
Rails 3 Edit Multiple Records in a Single Form
I've been stuck on this problem for a couple of days now.
I've have some success with Railscasts Episode #198, but that one is for Rails 2. There have been some changes in Rails 3 that make it so the ...
1
vote
1answer
171 views
cancan rules creation problem
i have rails app that contains following models - User, Blog, Post, BlogMembership.
class BlogMembership < ActiveRecord::Base
belongs_to :user
belongs_to :blog
# Membership types:
...
1
vote
1answer
303 views
How can I write an RSpec test for link_to_add_fields helper from Railscast 197
I used the approach details in Railscast espisode #197 on how to add dynamic input fields, but I'm not sure how to write an RSpec test for it. Suggestions?
def link_to_add_fields(name, f, ...
1
vote
0answers
57 views
Ruby on Rails: Thinking-Sphinx Affecting What is Rendering [railscast help]
I'm trying to get thinking-sphinx working for my project. I'm following this railscast to get it working, but it's not working how it should.
In the railscast, Ryan does @articles = Article.search ...
1
vote
1answer
256 views
Authlogic and conditional validation
is there any possibility to perform conditional validation in authlogic's model User, that uses validation inside acts_as_authentic block depending on some conditions? I'm trying to implement ...
0
votes
0answers
10 views
Getting document.observe is not a function when implementing endless page from Railscast 114
Rails and programming beginner here.
I'm trying to implement endless page from Railscast 114 but it isn't loading. Firebug console brings up an error:
document.observe is not a function - ...
0
votes
1answer
68 views
How to dynamically change position of form based on selection
I am building a website that is basically a small Content Management System. (in the sense that the user will be able to dynamicaly change most content of the site)
In my rails app I have two models, ...
0
votes
2answers
40 views
railscast 197 how to: function add_fields
I am following the railscast 197 but Im using rails 3.1.3,jquery and scaffold, no nifty:scaffold,everything works fine but I can't add fields, in that episode Ryan Bates give the code for jquery, but ...
0
votes
3answers
120 views
Undefined method `call' for nil:NilClass
So I'm playing around with Ryan Bates Simple_Form railscast, and I get the following error when I try to submit a form:
NoMethodError in Products#index
Showing ...
0
votes
1answer
24 views
Rails 3.1 authentication over json failing
I've been through railscast 270 and implemented a basic sign up form for users (in this app called players). The forms work fine, but when I try and authenticate over json, I get errors. Any ideas on ...
0
votes
1answer
54 views
rails virtual attributes won't read from form_for submission
I am trying to implement a rails tagging model as outlined in Ryan Bate's railscast #167. http://railscasts.com/episodes/167-more-on-virtual-attributes
This is a great system to use. However, I ...
0
votes
1answer
27 views
Divs instead of Tables in Rails generator
Is it possible to customize or find a gem that changes the behaviors of auto generating Tables in the views when I use rails scaffold and change it with Divs instead? Like cleaner templates, I'm using ...