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

learn more… | top users | synonyms

4
votes
1answer
233 views

Using `Rack::Session::Pool` over `Rack::Session::Cookie`

What are the different use cases of Rack::Session::Pool and Rack::Session::Cookie? As far as I understand (correct me if I'm wrong): Cookie stores all the session key:value pairs directly within ...
0
votes
0answers
154 views

Why does Phusion Passenger required a config.ru file?

I've setup Passenger + Apache + rvm on a Media Temple (dv) in the past with success. I didn't need to create a config.ru file at any time. On a new machine I'm trying to setup whenever I tried Rails ...
2
votes
1answer
153 views

Ruby's `File.exist?` ThreadError

I am encountering errors when I am using Ruby's File.exist? method in middleware. I have no idea why. This is the background. I am improving some old webapp which hosts around 100GB of photos and ...
7
votes
1answer
257 views

how to force rack:session + sinatra to read “rack.session” from params instead of cookies

I am dealing with oauth 1.0 (twitter and flickr). Website works at port 80 and oauth server works at port 8080 Algorithm: send ajax request to oauth server to check if user have valid access_token ...
0
votes
1answer
206 views

Sinatra with WebBrick and OpenSSL / HTTPS with Rack::Auth::Basic

I have read the tutorials and documentation on creating an OpenSSL certificate, and getting the Webbrick server running with it and Sinatra. This is all working - and thanks to prior posts on this. ...
1
vote
1answer
104 views

how to test sinatra app wrapped inside eventmachine?

I have this app: require 'sinatra/base' require 'thin' class WebService < Sinatra::Base get '/' do 'hello' end end EM.run do EventMachine.add_periodic_timer(1) do puts 'hello' ...
0
votes
1answer
69 views

Stop Rack session setting a cookie for all pages

In my Sinatra app I am using rack sessions use Rack::Session::Cookie, :secret => ENV['SECRET'] It seems to be setting a cookie for every page load, even if I am not setting anything in a ...
0
votes
1answer
116 views

Why Rails applications run Garbage Collector at all?

I was pretty sure, that all Rack application servers (I had some experience with Unicorn and Passenger) were creating single process for every worker when they were created, and its state was ...
0
votes
2answers
56 views

How to determine if Rails is running from CLI, console or as server?

I have a middleware for announcing my application on the local network app using Bonjour, but it's also announcing the service when Rails is invoked from rake or through the console. I'd like to ...
2
votes
1answer
83 views

Why are calls to a “rack” route showing up in my Rails cache log?

My Rails 3.2 app contains a health check route for an upstream load balancer: # routes.rb get 'health' => lambda { |env| [200, {"Content-Type" => 'application/json'}, [ 'Alive.' ] ] } I am ...
0
votes
1answer
46 views

how to set environment type?

I have a Sinatra application that uses sinatra/config_file to parse a YAML configuration file. The file has entries for various environments such as development, test, production. class MyApp < ...
0
votes
1answer
48 views

rack application, params as key

I'm requesting rack application with curl -X POST -d '{"device":{"username":"123456","name":"some name","location":"Hidden"}}' http://localhost:9292/device In the rack application I'm creating ...
0
votes
0answers
26 views

Unable to run Forge Gem/Rack Gem

I tried installing Forge on my MBP, OS 10.8.2. I already have installed Compass, Susy, Sass, and other gems so I'm used to it. However, the install first failed saying it needed Rack installed. So, ...
0
votes
1answer
139 views

How could I use authlogic as authentication middleware for a sinatra app specifically split?

I am using authlogic in my application. I also have split for A/B testing. I want split to use authlogic for authentication instead the BasicAuthentication or no authentication. So I set my ...
2
votes
1answer
120 views

Rails Request override params

I need to override params[:lang] throughout my entire application from en to us-english. From the url it should be en but within my entire application it needs to be us-english, when I then create ...
0
votes
1answer
242 views

When running rackup as a daemon, File.expand_path return / instead of the project folder

I'm not sure if there's something I did wrong here in some config files. When I run rackup -D, doing this: File.expand_path(__FILE__) actually returns /file.rb. And adding File.dirname somehow ...
0
votes
1answer
195 views

Rack::Deflater and gzip in rails app

I added use Rack::Deflater to config.ru in an attempt to serve gzipped css and js. but when I load the page I still see that css and js are served and not the css.gz should I see css.gz or js.gz? or ...
3
votes
2answers
111 views

Why Use Rack-Flash in Sinatra?

Forgive me if this is a noob question with an obvious answer, but what's the point of using rack-flash in Sinatra? It feels like rack-flash functionality could easily be written yourself and a gem ...
0
votes
1answer
86 views

how can I redefine the ruby and rails request.ip and request.remote_ip methods?

I've a rails app and I'm trying to overload the request.remote_ip and request.ip in order to use the cloudflare header (HTTP_CF_CONNECTING_IP) if it's present... I've tried these, but none of them ...
0
votes
1answer
48 views

EACCES error when creating a folder

I'm a Linux and Ruby noob, so please bear with me. I'm writing a small Ruby app using Sinatra, and deploy it using Capistrano to a Linux server. I was able to successfully run the app no problem ...
0
votes
0answers
76 views

Global variable scoped to each request

Is it possible to have a global variable in Rails that is scoped to each request? Meaning, the variable doesn't persist across Rack requests. I need this because I want to be able to raise events ...
0
votes
0answers
50 views

S3 Connect, get latest photo without a refresh of the entire page

Currently: I have a script that checks a directory on my machine for new files, that file is uploaded to a bucket. Hopes and dreams: the latest uploaded photo showing up without a refresh of the ...
1
vote
0answers
201 views

rake:assets precompile fails on undefined method `bytesize' for true:TrueClass

I'm using ruby 1.9 and when I run "rake assets:precompile" in my rails app, it fails and returned this: rake aborted! undefined method 'bytesize' for true:TrueClass ...
1
vote
0answers
102 views

Rails - set POST request limit (file upload)

I am building a file uploader for Rails, using CarrierWave. I am pretty happy about it's API, except that I don't seem to be able to cut file uploads that exceed a limit on the fly. I found this ...
0
votes
1answer
154 views

How to use pry to access a Rack middleware instance?

I'm new to using Pry, and try as I might, I can't find the right commands to access a rack middleware instance that's being run with a Sinatra app. I've set binding.pry in the part of the app where I ...
1
vote
2answers
307 views

Installing passenger nginx

I installed the passenger gem, but it didn't work with my old nginx. So I am trying to install nginx from the passenger script. I do $ sudo ./bin/passenger-install-nginx-module, which gives * ...
0
votes
1answer
68 views

Sinatra gives me “not found” all the time instead of my page

Pretty simple Sinatra code get '/Accept/:value' do "Hello world" end not_found do "not found" end when I go to ...
0
votes
1answer
292 views

Unable to use Warden in Sinatra App: env['warden'] returns nil

I'm writing a Sinatra Rack App and I want to use Warden for authentication. I'm using heroku's toolbelt so I use foreman to run my app. I've found some code that's presumably supposed to get this ...
4
votes
2answers
184 views

PJAX / Back-Button destroys Datatables

In our Rails 3.2 App with rack-pjax enabled appears the following Problem: You click on a link, a page with datatable in it loads trough pjax. Everything is fine. You click on antoher link the page ...
1
vote
1answer
51 views

getting rack mapped directory inside app

Say I have a config.ru like: map '/foo' do run MyApp end and a Sinatra app like: class MyApp < Sinatra::Base use Rack::Session::File, key: 'rack.session', domain: 'my.domain.com', path: ...
0
votes
2answers
142 views

Rack: How do you store the URL as a variable?

I am writing a simple static Rack app. Check out the config.ru code below: use Rack::Static, :urls => ["/elements", "/img", "/pages", "/users", "/css", "/js"], :root => "archive" map ...
1
vote
1answer
143 views

Protect all routes with Rack::Auth::Basic

I have a simple admin app that I'd like protected by basic HTTP auth. Here's what I have in my config.ru. This doesn't work. What am I missing? use Rack::Auth::Basic do |user, pass| pass == ...
1
vote
1answer
107 views

How can I make a ruby gem's binary file act as rackup?

I have a gem. It can optionally be run as a command line app myapp_cli, or as an app with a local web ui myapp_web. When working on my app, I can run bundle exec myapp_cli for the command line UI, or ...
1
vote
2answers
473 views

How to setup URLs for static site with Ruby Rack on Heroku

My site is here. It used to be a Django-powered blog. However I no longer update it so I just wanted to make it a static HTML site. I wget'ed it and moved it to Heroku with Ruby Rack. However every ...
0
votes
1answer
121 views

Rack: Multiple session cookies for a single rack application

How can one interact with multiple sessions cookies (for different path or domains) in a single rack application? For example, considering the following application using 3 locations: ...
3
votes
1answer
124 views

Sinatra haml page is called twice

get '/test' do session[:my_session_id] = generate_random_id() puts 'begin haml debug' haml :"static/haml_page", :locals=>{:session_id => session[:my_session_id]} end I see ...
0
votes
0answers
69 views

Using https in Sinarta (Rack) application

I develop a Sinatra app which lets users to login through some external web sites. One of those sites requires having 2 https pages on my Sinatra web site: Accept and Reject: ...
1
vote
1answer
125 views

Bypass Rack::Cache for requests coming from a CDN

I have a Rails 3.2 app, deployed to heroku. I use caching with Rack::Cache and Amazon CloudFront. For Requests that are served via CloudFront (assets, mostly), the caching layer with Rack::Cache is ...
2
votes
2answers
103 views

Serving non-public binary files from a Rack application

I am making a simple rack application that grant access to secured files after an authentication. As the data in the files is sensitive, they are located in a non-public folder of the application. ...
1
vote
1answer
279 views

Passing an exclude option to Rack::SSL

Following the guidance here, updated for Rails 3.2.x, I expected to be able to configure Rack::SSL to use the SSL filters only if an https:// prefix is included: config.force_ssl = true ...
4
votes
1answer
124 views

how do I stop sinatra from re-writing my header names?

Sinatra is camel-casing all the header names, causing issues with 'P3P'. Code: require 'rubygems' require 'sinatra' configure :production do # Configure stuff here you'll want to # only be run ...
0
votes
1answer
78 views

How do I debug Omniauth and Rack applications?

I'm trying to authenticate over eBay using Rack + omniauth (in fact - omniauth-ebay). I have a correct configuration (instead of "111", "222"... there are real values): #config.rb use ...
2
votes
2answers
160 views

Unable to stop Webrick launched by “rackup”

I'm developing a Sinatra application and I'm using "rackup" to start Webrick. What should I do to stop it? Now I'm using Ctrl+Z and it seems like it stops. However when I try to start it again it will ...
0
votes
1answer
110 views

wash_out parse failures: SOAP errors instead of HTML errors

So, when you use the wash_out gem in Rails, and a client sends bad XML, the response is like: <html>… <body> <h1>REXML::ParseException</h1> … Instead of a correct ...
3
votes
1answer
498 views

How to properly mount github's gollum wiki inside a Rails App?

I'm trying to provide a gollum based wiki for my app by mounting it as a rack application inside my routes.rb file: require 'gollum/frontend/app' #Gollun config gollum_path = Rails.root ...
0
votes
1answer
46 views

Render SASS files correctly in File.read (inside PDF file)

I generate a pdf and have to include css in the generated file so that the styling is correct in the pdf. To do this I have <%= File.read(Rails.root.join("app", "assets", "stylesheets", ...
0
votes
0answers
114 views

How can I redirect from https to http when using the rack-reverse-proxy gem?

I am using the rack-reverse-proxy gem in my rails 3.2 app (deployed to heroku) to redirect my blog from a subdomain to a subdirectory. I accomplish this with the following code: ...
2
votes
2answers
634 views

How to deploy Ruby Rack app with NGINX

I want to deploy a simple Ruby Rack service with NGINX. I read various things on the internet, none of which were helpful enough. Lets say I have this (in reality it's a bit more complex but still ...
0
votes
2answers
181 views

Why does Jekyll create new directories with index.html files in them when I create a new post?

Am I missing a setting somewhere? When the site is generated, the markdown files in the _posts directory get converted to directories themselves. Each of those directories has an index.html file in it ...
0
votes
1answer
214 views

How to persist mysql connection (mysql2 gem) with Ruby (no RoR)

I have a very simple web service using Rack, without Rails that I will contact MySQL on every valid connection. I want to persist the connection (for example in the constructor), so that on every ...

1 3 4 5 6 7 19