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

learn more… | top users | synonyms

0
votes
1answer
380 views

Using logger from Rack middleware

How do I properly log something from my own middleware which runs in a context of Rails application? Or, more generally, how do I detect that there's some logging middleware on the stack and use it?
5
votes
1answer
170 views

Rails middleware: add middleware to config.ru or to the config.middleware array?

I want to clarify the config.ru file to specify rack middleware as opposed to using the config.middleware array. If a config.ru typically looks like this: require ...
0
votes
0answers
99 views

Sinatra test with sessions and concurrent access

I wanted to write a little tests that concurrently accesses my little sinatra app. The problem here is, that I use sessions (via Rack::Session::Pool). I could not figure out how to let rack-test ...
0
votes
0answers
60 views

When I specify RackEnv=delevelopment in apache configuration for one app it makes for all rack apps the same

When I specify RackEnv=delevelopment in apache configuration for one app it makes for all rack apps the same even if I specify RackEnv=production for other apps? It is very strange bug.
1
vote
1answer
473 views

Heroku production setting Cache-Control differently from local production

I have an app running on heroku at http://chesseng.herokuapp.com/ when I visit the page with chrome and its caching disabled I get a response header for application-fingerprint.css that is something ...
1
vote
2answers
483 views

No such file 'config/database.yml' on Heroku

My app is a Ruby rack app. When my Heroku app starts it breaks because /app/config.ru:8:in `read': No such file or directory - config/database.yml (Errno::ENOENT) Why does this happen? I ...
1
vote
0answers
60 views

There is no log when using Rack::FiberPool in Rails

I'm using Rack FiberPool with Rails. When I run in development mode there is no log show on the console (neither static assets nor active record log). The log contains useful information for ...
1
vote
3answers
106 views

What's the base URL for my app?

In Camping/Rack, how can I get the base URL for my app? I want to know so I can put it in an email it sends. It might be (in development) or http://localhost:9292 or http://localhost:80/game ...
0
votes
0answers
223 views

heroku rack:cache .. vs Amazon S3 + Amazon Cloudfront

Using this reference about Heroku Cedar, https://devcenter.heroku.com/articles/rack-cache-memcached-rails31#rackcache-storage They recommend using a combination of rack:cache (as entity store) and ...
1
vote
1answer
156 views

Ajax Calls Losing Session - Ruby on Rails/Radiant CMS Site

I'm making some fairly extensive changes to a Radiant CMS/Ruby on Rails application - upgrading to Radiant 1.* along with a lot of gem changes - and in the process, we've begun having problems with ...
1
vote
1answer
606 views

Undefined method failure_app for nil:NilClass

I am trying to use devise from a Rails app to grant access to a Sinatra application within the Rack middleware. My config/routes.rb has: authenticate "admin" do mount Admins::Dashboard, :at => ...
0
votes
0answers
210 views

Streaming on Ruby Thin server

I tried the following ruby code... self.response.headers["Cache-Control"] ||= "no-cache" self.response.headers["Transfer-Encoding"] = "chunked" self.response.headers['Last-Modified'] = ...
1
vote
0answers
155 views

Rack::Cache with redis not working properly

I am trying to setup my Rack::Cache to work with dragonfly. I want to have a shared redis cache on a separate server so that the cache can be shared across web servers. The problem is that no matter ...
0
votes
0answers
163 views

Enumerable GET and POST params with jQuery (curl example given)

I've the following request that works perfectly with curl, but I can't make it work with jQuery's jQuery.ajax family of functions: curl -v -s -X GET -d 'matching[][name]=ottensen' ...
3
votes
1answer
193 views

Serving XHTML with Sinatra

I'm creating a Sinatra web application which I would like to serve mime type application/xhtml+xml for all web pages served. I am using Builder as template engine. Note that the application will also ...
0
votes
1answer
127 views

With a session store on the server, what does session secret do?

I understand if one saves sessions to cookies, you need to encrypt them with a secret else malicious clients could modify their session at will. This design is still bad for many reasons popularly ...
0
votes
1answer
140 views

What does Heroku mean by app[web.1]?

What does Heroku mean by app[web.1] and by <main>:48? I have a crash that happens only on Heroku and not on my computer, I'm trying to identify the precise line causing the crash. These are the ...
1
vote
1answer
268 views

How to specify memcache server to Rack::Session::Memcache?

I'm trying to configure my Rack app to use Memcache for sessions with Rack::Session::Memcache How do I give it the options (such as server, username and password)? Presently I have use ...
0
votes
1answer
81 views

Which gem do I need to use Rack::Session::Memcache?

I want my rack app to use Rack::Session::Memcache as a session store for my rack app. Alas, the documentation http://rack.rubyforge.org/doc/Rack/Session/Memcache.html doesn't specify which gem it ...
1
vote
0answers
155 views

Rails3 phonegap jsonp method override PUT,POST

I am trying to create a phone gap app using the rails 3 rest api. Because of the cross domain i have to use JSONP which only allows GET. But is rails you can put _method=POST in the form action to ...
0
votes
1answer
29 views

How to find which version of ruby is rhohub using?

I am hosting a rhoconnect app in my rhohub account. My rhomobile app requires rhoconnect 3.2 with ruby 1.9. How to find which version of ruby is rhohub using? I am trying to improve the response time ...
0
votes
0answers
76 views

Rack work without middleware

require "net/http" require "stringio" class Worker def call(env) request = Rack::Request.new(env) case request.request_method when "POST" ...
0
votes
1answer
43 views

Weird redirect when authenticating and api_key through devise on rails3 with rspec and rack/test

I'm using rack/test and rspec on Rails 3 to authenticate a users api key through devise. Any request I make returns a status of 302 and a response of: "You are being redirected.". Can't seem to figure ...
0
votes
2answers
417 views

Trigger Rack middleware on specific Rails routes

Is it possible to trigger Rack middleware only on specific Rails routes? For example, let's say I wanted to run a rate limiter middleware only on the api namespace. namespace :api do resources ...
0
votes
2answers
72 views

Application Renders different accessed via pow?

When viewing my app being served via Pow (i.e. at http://my_app.dev/) it renders as follows: When viewing my app via webrick or thin (i.e. rails server webrick or rails server thin at ...
0
votes
1answer
735 views

rails bluehost error Ruby (Rack) application could not be started

I've worked through many issues deploying a simple rails app and thought all was good when i saw the rails welcome screen... then I saw lots of errors when I selected the "about your applications ...
0
votes
2answers
209 views

How to shutdown a Rack app?

I want to shutdown a Sinatra app by sending it a HTTP request like: get '/shutdown' # need some code here to stop the app end How can this be down?
1
vote
1answer
77 views

Manual request dispatch in Rails

I need create request on rails application in application itself. Something like this (pseudo-code) def some_method() clone_request = request.clone request.url = "some/url/" result_html ...
0
votes
1answer
136 views

Forward request using Rack & Faraday

I want to write a Rack app that forwards requests to a different domain. The Faraday gem might work well for this. Something like this would be nice: My config.ru file: ... my_app = lambda do |env| ...
2
votes
2answers
269 views

Accessing environment variables in Javascript on Heroku?

I have a ruby/rack app on Heroku serving a site. The site uses Javascript and I want to access an Heroku environment variable in the Javascript file (an API key). I've tried: process.env.API_KEY // ...
0
votes
1answer
44 views

How can I specify a Rack version on Heroku?

I'm experiencing an error with a Rails application as described in https://github.com/rack/rack/issues/386. The fix is to use the latest version of Rack available on Rack's master branch. I can modify ...
0
votes
1answer
129 views

Error on a Sinatra's middleware

In my Sinatra app, I've created the following middleware to ensure the incoming request contains the parameter "token" in the query string class CheckMandatoryParams def initialize(app) @app = ...
3
votes
1answer
231 views

sinatra, rack auth basic and lookup from file

using rack::auth::basic in a sinatra application, there is a way that i can lookup users and password from simple yaml file (doesn't matter if password is kept in clear)? example yaml ...
0
votes
1answer
147 views

Padrino/Sinatra Rack-Test POST does not fill in params

I'm trying to use Rack-Test to issue a post request to my padrino app: post '/sms', "name" => "Bryan" My route looks like this: post :index do puts params.inspect puts rack_input.inspect ...
1
vote
1answer
105 views

Mount multiple Rack apps without adding a prefix to the url

How do I mount/run multiple rack apps without using map or Rack::UrlMap? Using these will dispatch the apps fine, but will also prefix the route used for dispatch to the beginning of the matcher, so: ...
0
votes
0answers
74 views

Include local gem in Rack app

I'm creating a rack app gem. I include my gem locallly in my gem file but I can't include it in my config.ru file. novo.gemspec # -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) ...
4
votes
3answers
170 views

how to learn more about Rack?

I am favoring Sinatra above Rails, and I like to start building some useful gems based on rack so I can integrate with Sinatra and other Rack-based frameworks. I started by checking out Warden open ...
1
vote
0answers
161 views

How does Rails know what the content type of an uploaded file is?

When a file is uploaded through the form in a Rails application, then in the controller I get an instance of ActionDispatch::Http::UploadedFile, which has #content_type already magically set. How does ...
0
votes
0answers
64 views

Passenger Memory Stats - Some sites are using a lot of memory

I have many rails sites on my VPS. VPS costs depending on the size of RAP assigned to it. And if the memory usage goes over the limit, it reboots automatically. I checked the memory usage with ...
0
votes
0answers
123 views

How to convert POST to GET requests for Facebook Canvas Apps with Rails 2.3?

I've been looking for how to change Facebook's POST requests to a GET, so I could keep using my current routes even when my app is being accessed as a Facebook Canvas App. The only workaround I could ...
3
votes
1answer
371 views

How to make rack session cookies httponly?

I am using Ruby and Sinatra to develop an application. I use enable :sessions in order to use the session variable provided by rack. How can I make all of the session cookies be HTTPOnly? Is it ...
3
votes
1answer
239 views

How to send response but continue execution in Sinatra?

I'm making a small sinatra app. It makes a couple of Redis calls, returns the data, and then makes a final Redis call to save "statistics." So far if I want to terminate the request early (based on ...
1
vote
1answer
224 views

rewrite non www to www except subdomain rails 3 and rack

I need to be able to rewrite non www to www but NOT in the case when there is a (non www) subdomain present. so example.com to-> www.example.com but sub.example.com remains sub.example.com I'm in ...
11
votes
2answers
2k views

Any way to serve gzip assets from heroku?

I'm wondering if there is any way to get the Rails webserver (thin) to serve the *.gz files the asset pipeline creates. As I understand, those have a higher compression level than that of ...
5
votes
1answer
149 views

Injecting dependencies in Sinatra app

I'm writing a Sinatra app that calls some external services. I want obviously my tests to avoid calling the real services so suppose at the moment I have this class MyApp < Sinatra::Base get ...
0
votes
0answers
115 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
434 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
191 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
112 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
298 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 ...

1 4 5 6 7 8 19