rack
bundler not working with rack application
Here is my code # config.ru require \"rubygems\" require \"bundler\" Bundler.setup Bundler.require FooApp = Proc.new do |env|[详细]
2023-02-25 17:43 分类:问答How to get a named route from a Rack app hosted in Rails 3?
Is it possible to get the value of named route from with in a custom rack app when the app is mounted in rails 3 (in my case a Sinatra app)?[详细]
2023-02-25 16:47 分类:问答Algorithm for optimized sorting of boxen into a 4x4 rack
I\'m looking to solve a problem regarding the optimal sorting of variable sized boxes into the confined space of a 4x4 sized rack. The algorithm should sort those boxes so that there is as little wast[详细]
2023-02-24 04:06 分类:问答is there any downside to using rack server during development
I want to us the new Pow server for r开发者_C百科uby on rails develop coz it seems awesome! http://pow.cx/[详细]
2023-02-23 02:02 分类:问答How do you make Rails route everything under a path to a Rack app?
I\'m trying to capture all requests to /dav and all paths nested under that to a Rack handler: match \"/dav\" =>RackDAV::Handler.new(:root => \'davdocs\')[详细]
2023-02-21 20:11 分类:问答creating a gem that works for rack based frameworks, not just rails
What are the differences between a typical rails gem and a rack-based framework gem? Is it just that most o开发者_运维百科f the logic is in the lib folder and doesn\'t use rails routes,etc vs using[详细]
2023-02-21 18:30 分类:问答open-source mini-heroku? [closed]
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.[详细]
2023-02-20 12:04 分类:问答How to easily delay Query insertion in Rails 3 app
I have one method that needs to handle large number of requests. I\'m using Rack for it. What it does is that it receive parameters and it creates a delayed_job task:[详细]
2023-02-19 19:03 分类:问答Getting Uninitialized Constant when trying to add a route for Rack application in Rails 3
Trying to add a route for Rack class as follows: match \'/sms\' => MsgReceiver the Rack class is: # /lib/msg_receiver.rb[详细]
2023-02-19 17:11 分类:问答How do I limit request size in Rack?
In Rack-based app, what is the best way to refuse requests that are excessively long (considering URL incl. query, headers and body开发者_JAVA技巧)?[详细]
2023-02-19 12:59 分类:问答