I am trying to learn how to write plugins in Rails by learning other people's plugins, turns out it is way harder than I thought.
I found this:
module Facebooker
class AdapterBase
class UnableToLoadAdapter < Exception; end
What does the fourth line: class UnableToLoadAdapter < Exception; end
mean?
What is the best book to learn about more advanced Ruby programming?
Thanks