all the files that come with rails
not that important in the beginning
the classes
three most important: ActionController, ActiveRecord, ActiveView
and their modules like ActiveRecord::Base, ActiveRecord::Callbacks…
soon enough you’ll have a good overview, what to find in which module
and
then use this list to directly find information
methods of classes
that’s where you search for keywords and functionality
if you don’t know where to find them
eg: you want to know something about the ActiveRecord callback
before_save, you search in the methods list for it
later on you’ll know, that it’s a callback and directly use
the class list and jump to ActiveRecord:Callbacks