Rack provides a minimal interface between webservers supporting Ruby and Ruby frameworks.
16
votes
1answer
2k views
14
votes
1answer
515 views
Rack concurrency - rack.multithread, async.callback, or both?
I'm attempting to fully understand the options for concurrent request handling in Rack. I've used async_sinatra to build a long-polling app, and am now experimenting with bare-metal Rack using throw ...
14
votes
4answers
5k views
Any success with Sinatra working together with EventMachine WebSockets?
I have been using Sinatra for sometime now and I would like to add some realtime features to my web-app by pushing the data via websockets.
I have successfully used the gem 'em-websocket' on its own, ...
11
votes
4answers
2k views
Streaming data from Sinatra/Rack application
I am trying to stream textual data (XML/JSON) from a Ruby (1.9.1p378) Sinatra (1.0) Rack (1.2.1) application. The suggested solutions (e.g. ...
9
votes
3answers
7k views
Use Rack::CommonLogger in Sinatra
I have a small web-server that I wrote with Sinatra. I want to be able to log messages to a log file. I've read through http://www.sinatrarb.com/api/index.html and www.sinatrarb.com/intro.html, and ...
9
votes
1answer
1k views
Rack::Session:Cookie error using Sinatra, Thin, Rails, and Rack::Cascade
I have a combined Sinatra/Rails app that shares a session using Rack::Session::Cookie. The app works fine when started with Rack::Handler::Thin.run app, but if the rackup file is start with thin ...
9
votes
3answers
1k views
Having trouble debugging Sinatra app in production
I'm deploying a Sinatra app using passenger. The deployed app is working, but not entirely: some paths work fine, others simply render a blank page. I can't seem to find any major differences between ...
8
votes
2answers
3k views
rvm rack ruby error already initialized constant WFKV_
I'm getting this error in my terminal when I use any ruby, rake or rails related commands.
Commands are being executed and work fine, but before that I receive his error. Any suggestions? Thanks for ...
7
votes
2answers
4k views
How to serve static files via Rack?
I am currently developing a Rack-based application and want to redirect all file requests(e.g. filename.filetype) to a specified folder.
Rack::Static only supports file requests for a special ...
7
votes
9answers
13k views
Bypassing rack version error using Rails 2.3.5
I'm currently on Dreamhost attempting to run a Rails 2.3.5 app.
Here is the situation, Dreamhost's servers have Rails 2.2.2 installed. Of course, I can't update a shared host's rails version, so I ...
7
votes
1answer
1k views
What's the difference between Rack and Passenger?
I'm trying to deploy a Sinatra app to Dreamhost and it says the following:
Since DH supports Passenger, which in
turn supports Rack-based ruby
applications, DH does indeed support
Sinatra.
...
6
votes
0answers
141 views
Avoiding redundant Bundler dependency declarations for Rack
Imagine a Rack application that, on startup, creates instances of some other Ruby applications and maps routes to those applications. This application has a Rack dependency of 1.2.2.
Now imagine ...
6
votes
3answers
695 views
Mount Sinatra app inside a rails app and sharing layout
I would like to mount a sinatra application in my rails app.
But I would like this one to share the same layout.
The iframe could work but do you have any other idea ?
Thanks
6
votes
2answers
831 views
mongoid query caching
Rails' ActiveRecord has a feature called Query Caching (ActiveRecord::QueryCache) which saves the result of SQL query for the life-span of a request. While I'm not very familiar with the internals of ...
6
votes
3answers
538 views
Is there an easy way to have pow serve https?
pow is great, but many things in my app assume https, and it would be a pain to go through them all and add "if not dev environment". Is it possible to have pow serve https?
6
votes
2answers
2k views
Logging in Sinatra
I'm having trouble figuring out how to log messages with Sinatra. I'm not looking to log requests, but rather custom messages at certain points in my app. For example, when fetching a URL I would like ...
6
votes
2answers
401 views
Making Rails tests aware of Rack middleware outside Rails's internal chain
Context: an application uses a piece of Rack middleware that must be setup in config.ru, rather than Rails's internal Middleware chain. This is for reasons not relevant to this question.
Question: ...
6
votes
2answers
272 views
Combining 2 rails apps to a single codebase
Our company started out with a single product, a rails app backed by some java services, then decided they wanted another product that was initially considerably different than the first, but as time ...
6
votes
5answers
2k views
How to redirect without www using Rails 3 / Rack?
I understand there are a lot of questions that answer this. I'm familiar with .htaccess and nginx.conf methods, but I do not have access to such traditional configuration methods on heroku.
Simone ...
6
votes
1answer
1k views
Ruby Rack - mounting a simple web server that reads index.html as default
I'm trying to get some information from this tutorial: http://m.onkey.org/2008/11/18/ruby-on-rack-2-rack-builder
basically I want to have a file config.ru that tell rack to read the current directory ...
6
votes
3answers
2k views
Problem with require rack/openid in Rails 3 [native require work properly]
I install plugin open_id_authentication and have this error:
/usr/lib/ruby/gems/1.9.1/gems/activesupport-3.0.0.beta/lib/active_support/dependencies.rb:167:in `require': no such file to load -- ...
6
votes
4answers
3k views
Reloading Sinatra app on every request on Windows
I've set up Rack::Reload according to this thread
# config.ru
require 'rubygems'
require 'sinatra'
set :environment, :development
require 'app'
run Sinatra::Application
# app.rb
class ...
6
votes
1answer
4k views
How do I access the Rack environment from within Rails?
I have a Rack application that looks like this:
class Foo
def initialize(app)
@app = app
end
def call(env)
env["hello"] = "world"
@app.call(env)
end
end
After hooking my Rack ...
5
votes
2answers
230 views
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)?
Simply using the route, (login_path) is throwing an ...
5
votes
2answers
616 views
open-source mini-heroku?
I started playing with Sinatra and deploying on Heroku, which I find really enjoyable. I don't need the scalability Heroku provides, but I really like their CLI and the ability to deploy an app with a ...
5
votes
1answer
384 views
How to use cookies in a Rack middleware?
I am using Ruby on Rails 3 and I would like to use the cookies.signed method in a Rack middleware. I need that because I would like to authenticate a user directly in the middleware than of using a ...
5
votes
3answers
161 views
How do I specify that I want Vim to treat .ru files like .rb files
Whenever I use Vim with Ruby files, I get nice coloring and automatic indention on blocks. However, when I am editing a Rack file, I don't get these things. How can I extend my Vim/Ruby configuration ...
5
votes
1answer
1k views
Passing options to rackup via a Sinatra application
I'm new to ruby, learning Sinatra. While creating a Sinatra site by requiring 'sinatra' and setting up the routes directly under is pretty easy and rather well documented, creating an application by ...
5
votes
1answer
2k views
Rails 3, HTTP extensions (WebDAV) and Rack App mounting
1 The following is more to point out to the code devs an issue of rails that can be percieved as a flaw.
2 And also me asking some oppinions from people who know better.
I want to add WebDAV to my ...
5
votes
1answer
1k views
Getting Rails Application Running Under IronRuby Rack
Anyone else playing with ironruby?
I have successfully got the IronRuby.Rails.Example project running on my local machine under IIS 5.1. I am now attempting to get my own demo rails site running in ...
5
votes
3answers
476 views
Is Rails Metal (& Rack) a good way to implement a high traffic web service api?
I am working on a very typical web application. The main component of the user experience is a widget that a site owner would install on their front page. Every time their front page loads, the widget ...
4
votes
1answer
88 views
What is the most simple / lightest-weight WSGI framework?
Which of the WSGI frameworks are super lightweight and minimal? If you are familar with ruby, then I'm looking for something similar to Rails Metal.
WSGI == Rack
Rails == Django
Sinatra == Flask
...
4
votes
3answers
307 views
Rack Error “Rack::Lint::LintError: Response body must respond to each”
I'm going through the tekpub rack tutorial but when I try to run even a basic program in rack i get this error.
ERROR Rack::Lint::LintError: Response body must respond to each
...
4
votes
1answer
191 views
Rails encoding of cookie not compatible with JavaScript decodeURIComponent
jquery.cookie retrieves value by using decodeURIComponent .
https://github.com/carhartl/jquery-cookie/blob/master/jquery.cookie.js#L89
Rails stores cookie by calling
@set_cookies.each { |k, v| ...
4
votes
3answers
741 views
Single Sign-On Server Authentication in Ruby/Rack
I write and host web applications on Windows servers for intranet usage. My server stack uses Sinatra (which uses Rack), Thin, and (in some cases) Apache for reverse-proxying only.
I want to support ...
4
votes
1answer
232 views
best/most elegant way to share objects between a stack of rack mounted apps/middlewares?
What is the best idiom to share an object between rack mounted applications/middlewares?
For example, this config.ru has two Sinatra apps mapped to differents endpoints:
class App1 < ...
4
votes
1answer
640 views
Rack::Test Cookie help
I'm trying to write RSpec for my Sinatra application and I'm using Rack::Test for that. I can't understand how I can use cookies. For example if my application set cookies (not via :session) how can I ...
4
votes
1answer
158 views
Is it possible to pass a flash message from Rails to Sinatra?
I have a project that uses Sinatra for static pages and Rails for the application.
I allow the request to hit one or the other by doing this in config.ru:
run Rack::Cascade.new([
...
4
votes
1answer
391 views
Rack and rack.request.form_vars / rack.request.form_hash
I am doing some middleware that changes the authenticity_token param before it gets to Rails.
I can see that env.inspect gives both rack.request.form_vars and rack.request.form_hash. Both contains ...
4
votes
2answers
469 views
sinatra and http PUT
suppose i want to use curl to put a file to a webservice this way
curl -v --location --upload-file file.txt http://localhost:4567/upload/filename
in sinatra i can do:
#!/usr/bin/env ruby
require ...
4
votes
4answers
697 views
Is there a Rack or Sinatra based environment configuration utility?
Is there anything in the Sinatra / Rack world similar to Rails configuration loading scheme that loads one of the config\enviroments\*.rb files depending on Rails.env
I know I could develop one ...
4
votes
2answers
513 views
how do I share authentication on a rails/rack app with a node.js instance?
I have been trying to figure out how to integrate a node.js app into a rails app and having them share sessions. I've so far only been able to dig up sharing sessions between sinatra and ruby on ...
4
votes
2answers
3k views
Integrating WebSockets with Rails using Rack and Event Machine
I have created an Asynchronous version of Rails 3 that I would like to integrate with a WebSocket implementation.
I am using EventMachine, Ruby 1.9, Fibers and various em-flavoured libraries as ...
4
votes
1answer
2k views
Rack Error with DreamHost, Passenger, and Rails 3.0.0.rc
Background: I have viewed this question as well as this one - sadly, to no avail.
Error Message (Passenger): You have already activated rack 1.1.0, but your Gemfile requires rack 1.2.1. Consider ...
4
votes
5answers
1k views
Where do you put your Rack middleware files and requires?
I'm in the process of refactoring some logic built into a Rails application into middleware, and one annoyance I've run into is a seeming lack of convention for where to put them.
Currently I've ...
4
votes
2answers
1k views
How do I set a cookie with a (ruby) rack middleware component?
I'm writing a rack middleware component for a rails app that will need to conditionally set cookies. I am currently trying to figure out to set cookies. From googling around it seems like this ...
4
votes
2answers
724 views
Testing controller instance variables with Rack::Test and Sinatra
I have a Sinatra app that serves pages as read-only or editable depending on if the user is logged in.
The controller sets a variable @can_edit, that is used by the views to hide/show edit links. How ...
4
votes
3answers
794 views
Ruby bindings for a server-side javascript engine?
I'd like my rack application to be able to interface with a server-side javascript engine.
As of now the only way i know this could be possible, is by running JRuby and Rhino on the JVM, but I'm ...
4
votes
4answers
1k views
Ruby Based Blogging Engine
What Rack enabled blogging engines exist? I want to deploy a free blog to heroku and need more customizabilty than the free hosting of Wordpress.com or Blogerty provide.
Also in another note, has ...
4
votes
2answers
2k views
How do I use a Rack middleware only for certain paths?
I'd like to have MyMiddleware run in my Rack app, but only for certain paths. I was hoping to use Rack::Builder or at least Rack::URLMap, but I can't quite figure out how.
This is what I thought ...