-
2015 in Review
Monthly Summary January Started work on a solo project at work that pretty much gave me lots of experience building something from end to end. Working from home 2/3rds of the time to work out any kinks for a possible move to Florida. Thank yous going out to people who helped fund Emily’s medical mission…
-
Rails 4, phantom ArgumentError: wrong number of arguments (0 for 1) on UserSession.find for AuthLogic
This was a total pain to locate, as the exceptions being raised were pointed to UserSession.find in Authlogic::Session::Persistence. gems in question: activerecord-session_store 0.1.1 authlogic 3.4.6 activerecord 4.2.3 rails 4.2.3 I noticed that the only meaningful difference between the two environments was the following instance variable in Rails.application.config: irb> pp Rails.application.config . . . @logger= #…
-
Pundit: NoMethodError (undefined method `verify_authorized’ for [WhateversController])
![Pundit: NoMethodError (undefined method `verify_authorized’ for [WhateversController])](https://thomaspowell.com/wp-content/uploads/2015/07/8729962194_b4cc81b2ee_z.jpg)
Sometimes, having done things several times before can make you miss the OBVIOUS. After adding after_action :verify_authorized to my ApplicationController to verify that Pundit was being used for authorization, I got the following error in rspec: 2) Jobs GET /jobs works! (now write some real specs) Failure/Error: get jobs_path NoMethodError: undefined method `verify_authorized’ for #…
