Rack provides a minimal interface between webservers supporting Ruby and Ruby frameworks.

learn more… | top users | synonyms

0
votes
0answers
116 views

Share Session/Hash with Rack application

I'm very new with Rack and I'm playing around with it, I would love to share some session or hash table among all my rack apps, Let's say I have the following config.ru require "rack" require ...
0
votes
1answer
447 views

Getting rack error Rack::Lint::LintError: Status must be >=100 seen as integer

I'm trying to build my rack based ruby app, and I'm still new here, I'm using ruby 1.9.2 -p180 in my config.ru file I have: require "rack" require "./my_app.rb" require "./auth.rb" use Auth run ...
2
votes
1answer
195 views

Rails Rack::Cache and Middleware redirect based on header for mobile devices

How can I write a Rack Middleware to redirect a user to a different subdomain based on the User Agent string? I need this to run before Rack::Cache in my rails app, and I also would like this ...
3
votes
1answer
114 views

How to access specific instances of the Rack middlewares?

In my Rails 3.2 application I have to call a method on a middleware instance of a certain class type. I tried to use Rails.application.middleware but that doesn't work because it only wraps the ...
0
votes
1answer
301 views

CORS DELETE fails with 403 status code

I have developed a CORS REST server and some pages with some JS code that invoke its urls. I decided to refactor the JS pages, and my DELETE ajax request to server now doesn't work anymore. Part of ...
2
votes
1answer
104 views

How to measure memory usage of a Rack or Sinatra app?

How do you measure memory usage of a Rack or Sinatra app? I understand that probably depends a lot on how it is deployed. But how do you get a basic idea of how much memory it uses?
0
votes
0answers
34 views

Anyway to use Rack run inside a class?

I'm having a bit of a problem and can't figure out how to get this to work: require 'erb' class Cherry class << self def app &block end end class Application ...
0
votes
1answer
139 views

Instance_eval block not supplied?

Does anybody know what's causing this error? I'm trying to make a basic rack application. App.rb => class Cherry class << self def app &block ...
0
votes
1answer
54 views

Rack 'method not found'

I can't seem to see what's up with this piece of code: class Cherry class << self def call env self::Application.call end end end class Cherry class ...
0
votes
1answer
199 views

Rack-based app and ActiveRecord

I couldn't find the answer on the web, so here I am ! If you use the activerecord gem in a rack-based app (Sinatra, Merb, Camping …), will you automatically have access to the rake command, like rake ...
1
vote
0answers
193 views

Error H13 heroku

When I upload a file , and send this file to s3 ( 5 MB of csv file ) on heroku I got error H13 ( Connection Cloesed without response). I added a line ( environment.rb and application.rb ) lines: if ...
6
votes
1answer
1k views

How can you block or filter IP addresses on Heroku?

Is there a way to implement IP filtering or IP access rules much like I would with nginx/apache to restrict or block certain IPs on Heroku? Note: I know this can be done from within my application ...
3
votes
1answer
49 views

How can I route a url to a CGI script in Rack?

I have an app that has a htdocs folder with static files and a couple of CGI scripts on the httpd/cgi-bin folder. How can I use Rack with config.ru to serve this application? My current config.ru: ...
6
votes
1answer
577 views

How to run multiple tiny Ruby (Rack) apps on one server?

I want to run several (>2) tiny Rack-based apps on my VPS server, which already has one large Rails app running. Rails app uses traditional pair "Unicorn + nginx" and it requires the most of RAM ...
0
votes
1answer
359 views

“foreman start” results in “Could not find bundler (>= 0) amongst…” error

I copied an example Procfile from heroku's docs, and am trying to use foreman to run a Sinatra app locally. Whenever I try foreman start, I get this: ~/Repos/website ➜ foreman start 14:04:43 web.1 ...
0
votes
1answer
189 views

How to implement business logic in Faye? Rails

I have Rack Faye application on Thin server and i have some logic on every faye client handshake/subscribe/disconnect. This logic requires data storage in DB, some calculations and publishing ...
10
votes
2answers
559 views

Calling a Sinatra app instance method from TestCase

I have an util method into a Sinatra application and I would like to tested from my TestCase. The problem is that I don't know how to invoke it, if I just use app.util_method I have the error ...
2
votes
1answer
459 views

Passenger/nginx not loading Sinatra app

I'm trying to run a few Sinatra apps under sub-uri's, but it seems that Passenger isn't picking them up as Rack applications. From the nginx-error log: 403 error, directory index of ...
2
votes
1answer
96 views

How can I measure how much memory each thread is using in a puma deployment?

In a threadsafe rails app running on puma, how can I measure how much memory each thread uses?
1
vote
3answers
320 views

Unicorn + Rack Lint Error - content header

I keep getting the follow server error when running unicorn on my local machine: E, [2012-08-17T10:25:11.961002 #95265] ERROR -- : app error: Content-Length header was 780958, but should be 781014 ...
0
votes
1answer
95 views

How do I access Thin::Connection from inside rack middleware?

I would like to run set_comm_inactivity_timeout(0) on my EM Connection from inside Rack Middleware. This will allow me to have one timeout for my upgraded web sockets and another for the rails app. ...
0
votes
1answer
61 views

Using declarative-authorization's “without_access_control”with Cucumber's @javascript

I have the following in my features/support/env.rb file: require 'declarative_authorization/maintenance' World(Authorization::TestHelper) I have this in a feature file: When I view the list of ...
0
votes
1answer
254 views

Multiple instances of Sinatra::Base applications with different configurations

I developed a Rack application based on Sinatra::Base. Now I would like to use many instances of it, each with a slightly different configuration, in a single Rack application. My rackup should look ...
1
vote
0answers
73 views

Has anyone gotten Padrino to work with Sprockets and Compass?

I'm on Padrino 0.10.7 and I haven't been able to get Sprockets to recognize Compass in the load path.
2
votes
2answers
364 views

Changing HTTP status message using Sinatra

I'm writing a simple Sinatra app, and given a user posts a request with an specific data, I want to return an error '453' (custom error code) with a message CLIENT_ERROR, or something similar. The ...
1
vote
1answer
137 views

Connection compressed with DEFLATE, hosted on Heroku but rack middleware doesn't report using Rack::Deflater

Chrome claims that the connection to my site is compressed with DEFLATE. The issue is that I am not using Rack::Deflater (I don't see it when I run rake middleware). My staging site has pretty much ...
1
vote
1answer
188 views

How to do HTTP authentication with Goliath/Heroku?

I'm using Goliath as my app server, and I am trying to convert "Ruby – Secure staging environment of your public app from users and bots" so it applies to my Goliath application. I am trying to use ...
1
vote
1answer
159 views

Rails: “Waiting” HTML screen while PDF is being generated

I have a Rails app that can generate PDFs using Prawn. Some of them can be fairly large (tens or hundreds of pages) and take some noticeable time to generate. What I would like to do is display some ...
2
votes
1answer
400 views

Serve files using Rack TryStatic directly?

I'm using Middleman to create a static site. Middleman generates static html files into ./build directory. Here's the config I'm currently using: require 'rubygems' require 'middleman' require ...
1
vote
2answers
373 views

Re-direct URL to Add Trailing Slash in Sinatra

Have my app up on Heroku. Using rack-canonical-host to handle re-directs from myapp.heroku.com to the canonical domain. My domain registrar handles re-directs from the root domain. I'm using ...
1
vote
1answer
142 views

showing added weird string when nginx fetches memcached rack result

I'm having a bit of a problem with memcaching the pages generate with my rack app. I'm storing the page generated by my rack app in memcache with the following bit of (ruby) code: require 'dalli' ...
0
votes
0answers
46 views

How to get notified about Ruby (Rack) errors in Rails 3

On a Rails 3.2 production site I have ExceptionNotifier installed, which sends me mails when something goes wrong. But I have noticed that when the site genererates a "Ruby (Rack) application could ...
0
votes
1answer
104 views

Serving a rails 3 app in another rails 3 app using rack

I used rackup in a rails 3 application rackup config.ru This started to serve the rails app from port 9292 [2012-08-01 23:00:05] INFO WEBrick 1.3.1 [2012-08-01 23:00:05] INFO ruby 1.9.3 ...
1
vote
1answer
121 views

Less not compiling automatically with pow

I'm building an application with Padrino, and I've decided to use less for the stylesheet, mostly to use twitter bootstrap. I am having some trouble getting less to automatically compile my less ...
1
vote
1answer
471 views

rack-mini-profiler is showing profiling static files

I'm using rack-mini-profiler after watching it's railscast (http://railscasts.com/episodes/368-miniprofiler). I added it to my Gemfile: gem 'rack-mini-profiler' Installed it using bundler and ...
0
votes
0answers
32 views

Use rack to run a get request from within the same Rails app?

I am trying to find a way to email the result of a request to our app to a user at a specific time early in the morning. I would like to do it from within the app, and the data returned depends on ...
0
votes
1answer
120 views

OAuth2 RACK - based for both Sinatra and Rails Applications?

Is it possible to implement OAuth2 security code once in Rack and use it on both of a Sinatra & Rails Apps simultaneously?? I am relatively new to ruby development, however it seems to me that ...
2
votes
1answer
415 views

Best way to handle file uploads from Backbone.js to Rails-based API through a proxy?

We have a Backbone.js app that supports file uploads using plupload. The uploads are sent through a proxy (rack-reverse-proxy at the moment, but switching to straight nginx shortly) to a separate ...
0
votes
1answer
279 views

rackup server with ability to stop and restart

i'm planning to add some tasks to my capistrano recipes file to give ability for admins to remote start/stop/restart private_pub server. But if for start i can use something like desc "Start ...
6
votes
1answer
1k views

Use different Procfile in development and production

I have a homemade Sinatra application for which I intend to use Heroku to host it. I use foreman and shotgun in development, with the following Procfile: web: shotgun config.ru -s thin -o 0.0.0.0 -p ...
0
votes
0answers
105 views

async_sinatra and async-rack - Halt causes two returns?

I've got a Sinatra application using the async_sinatra gem. In order to use the logging middleware, I'm also using the async-rack gem. Using HTTP basic authentication, everything works as expected, ...
0
votes
0answers
93 views

Running cgi exectuables using Rack Legacy

I'm having a little trouble with a project I've got on atm, I need to get a CGI application to run alongside my Rack server, and communicate with my Rack server. Now I've found this : ...
0
votes
1answer
515 views

rack-rewrite with Rails 3.2.3 on Heroku

I'm trying to set up rack-rewrite for a Rails 3.2.3 on Heroku cedar stack and everywhere I look it says to add something like: config.middleware.insert_before(Rack::Lock, Rack::Rewrite) do # ...
1
vote
1answer
84 views

skip radio buttons when posting the form

I have a rails from inside that I have some radio buttons which I don't want to post in my Edit action. <form accept-charset="UTF-8" action="/feedbacks/3" id="edit_feedback_3" method="post"> ...
2
votes
1answer
211 views

Jruby-Rack - Could not find Rails engine root path

This is the error that I am getting when deploying my Ruby on Rails web application (with Jetty): 2012-07-17 13:11:25,595,INFO,service.nav.server - An exception happened during JRuby-Rack startup ...
0
votes
2answers
184 views

Rack middleware how to redirect to a view in my Rails application

In my Rails 3.1 app I created a Rack Middleware to verify access. If access is not approved user is to be redirected to a page. Specifically it will be a page I already have in my views. Suppose I am ...
2
votes
3answers
909 views

How to turn a config.ru file into a single Rack application?

I have a config.ru file that is starting to have duplicate code. map '/route1' do run SampleApp.new end map '/route2' do run SampleApp.new end I would like to turn this config.ru file into its ...
0
votes
1answer
82 views

Determining the HTTP port from within a Rack request

I am developing a Sinatra web app and there I want to canonicalize and absolutize a number of URLs. For this, I am using a Rack::Request object: before do @cached_request = Rack::Request.new(env) ...
1
vote
1answer
342 views

Rails 3: How to declare Rack middleware in application.rb

Many examples such as these two: How to use rack middleware with Rails3? http://asciicasts.com/episodes/151-rack-middleware define middleware in a class and then add config.middleware.use ...
1
vote
0answers
32 views

Can I make thin not bind to the port until the app is booted?

I'd like thin to not bind to the port until my app is done booting / loading into memory. Is there a way to do this? Any possible hacks I could explore? Do other rack servers behave differently?

1 5 6 7 8 9 19