I am trying to customize a gem called "gem_name" from github. I forked the project and cloned it to a directory.
I changed s.name in the "spec = Gem::Specification.new do |s|" block in the rake file to a custom gem name "gem_name_myname".
I also changed a line in the rails/init.rb file called "require gem_name" to require "gem_name_mygemname".
Then I installed the gem locally with rake install.
IN my app I changed the config.gem call to refer to "gem_name_mygem".
But when I start the app, it throws the error saying
no-such-file to load "gem_name_mygem"
What's the best way to customize a gem? What am I doing wrong?