Reputation: 19
I am checking the structure of the initial steps of a tutorial, to build a blog and while going through the code block by block, got to the point in which I want to read the code of ActionController::Base, but I am not able to find it, maybe some help?
Thank you.
Upvotes: 1
Views: 1472
Reputation: 181
you can read the Rails Source Code
https://github.com/rails/rails/blob/master/actionpack/lib/action_controller/base.rb
or the API docs
https://apidock.com/rails/ActionController/Base
Upvotes: 1
Reputation: 2020
Here it is. You won't find much there, though. Base
module is quite thin. It consists almost entirely out of list of modules to include
.
Upvotes: 2