This question is about bundler,rubygems & how does it figure out which method I am calling. Its quite long, so please bear with me.
As per my understanding, Bundler is a dependency management tool for managing gems for ruby. It install all the gems & their dependencies listed in the Gemfile.
The question I want to ask can be best illustrated by an example. so here--> In my rails app I am doing this in my controller:-
module SurveyorControllerCustomMethods
def create
super
end
end
class SurveyorController < ApplicationController
include Surveyor::SurveyorControllerMethods
end
Here, I am doing two things:
- Include
SurveyorControllerMethodsfrom Surveyor gem. - As I have used super here, it would call
createmethod fromSurveyorControllerMethodswhich works just fine but I do not understand it.
and the gem is installed at
$ bundle show surveyor
/home/gaurish/.rvm/gems/ruby-1.9.3-p194/gems/surveyor-0.22.0
Which surprisingly is NOT present in ruby's $LOAD_PATH. so question is:
- how does it even work?
- Install a gem using bundler, what happens behind the scenes during install?
- there are some gems ex
jquery-railsfor which we even don't have to include/call them in our code & yet, jQuery JavaScript file is automatically included. I know its not magic, so how does this work?