Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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:

  1. The app requiering the gem should not have to call

    config.middleware.use ::Rack::MyMiddleware

  2. 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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.