I have been looking around for official documentation about how to package a rack middleware gem for both rails 2.x and 3.x but I cannot find any official documentation about this.
All I could do until now was to try following guides like this one. Although everyone seems to have a structure more like this one:
/lib/gem_name <= gem files go here
/lib/gem_name.rb <= point of entry of the gem
here is what we are looking for while building that gem:
The app requiering the gem should not have to call
config.middleware.use ::Rack::MyMiddleware
It should work for rails 2.x and rails 3.x
Any documentation or examples of applications doing this would be great too. For the moment the closest thing to what we are trying to achieve is this gem