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
Model code class Location < ActiveRecord::Base attr_accessible :day_tokens, :name, :address, :phone has_many :locavailability
I\'m creating a multi-part form in the style that Ryan Bates describes here: http://rail开发者_Go百科scasts.com/episodes/217-multistep-forms
In railscasts project you can see this code: before(:each) do login_as Factory(:user, :admin => true)
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 sig
The open source project railscasts has User model (link to the full file) class User < ActiveRecord::Base
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 how t
i have rails app that contains following models - User, Blog, Post, BlogMembership. class BlogMembership < ActiveRecord::Base
I am using Ryan Bates\' Complex Forms Deep Branch, and trying to replicate that example for a form that has two additional nested levels.
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?