search for: perryn

Displaying 4 results from an estimated 4 matches for "perryn".

Did you mean: perrin
2007 Apr 12
1
rspec on rails: undefined method ''controller_name''
...8.2 /lib/s pec/runner/command_line.rb:18:in `run'' from C:/rails/InstantRails/ruby/lib/ruby/gems/1.8/gems/rspec-0.8.2 /bin/s pec:4 from C:/rails/InstantRails/ruby/bin/spec:18:in `load'' from C:/rails/InstantRails/ruby/bin/spec:18 -- ----------------------- Perryn Fowler ThoughtWorks -- ----------------------- Perryn Fowler ThoughtWorks -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/rspec-users/attachments/20070412/1a73ff0f/attachment.html
2008 May 15
3
Facebooker support for iframe apps
...out of facebook, their credentials remain in the session and they are left still logged in to the facebook application. If a second user logs into facebook and accesses the application, they will be logged in to it as the first user. I''m not sure what to do about this.. any ideas? cheers Perryn
2008 Nov 26
3
New status_id in Facebook API - FIX
Hi, I''ve had one of my application broken this morning (French time) with this error : NoMethodError (undefined method `status_id='' for #<Facebooker::User::Status:0x2ad52d1c8478 @message={}, @time="0">): It appear that Facebook API had change in the status : a status_id node is new : <user> <uid>785637999</uid>
2009 Mar 05
8
Can I construct the controller myself in a controller spec?
Hi I am experimenting with Constructor based dependency injection for rails controllers. So I have something like this class LoginSessionsController < ApplicationController def initialize(authenticator = TheRealAuthenticator) @authenticator = authenticator end .... end The plan was to override the authenticator used when testing with something like describe