Rack provides a minimal interface between webservers supporting Ruby and Ruby frameworks.
2
votes
1answer
85 views
How do you choose your HTTP server in Sinatra?
I am running a Sinatra application locally.
Ever since I installed Thin, my Sinatra app always uses it as the web server. However, I have been having performance issues with Thin serving the large ...
6
votes
1answer
220 views
Sinatra streaming with Puma?
I'm trying to leverage Server-Sent Events in my application. I am using Sinatra and the sinatra-sse gem. This gem wraps the Sinatra stream :keep_alive call.
When running my application on Thin, I ...
0
votes
2answers
83 views
How to run Wordpress Blog on a Sub URI within a Rails App on Heroku
I have a rails application that needs a blog. I have looked at various rails cms and blog engines and none of them meet my needs. I would like to add Wordpress on a sub uri www.example.com/blog. My ...
4
votes
2answers
87 views
Rack error (not compiling on the fly) serving assets in development
Serving assets has started creating this error today:
!! Rack application returned nil body. Probably you wanted it to be an empty string?
!! Unexpected error while processing request: undefined ...
1
vote
0answers
108 views
Can't activate rack-1.4.0
I try run an application on sinatra with Unicorn... This is the stack.
andres@andres-desktop:~/testkreattiewe$ unicorn
I, [2013-03-28T14:31:14.052748 #7080] INFO -- : listening on addr=0.0.0.0:8080 ...
1
vote
1answer
88 views
How to disable X-UA-Compatible in Rails 4?
Rails 4 pre-populates some "best practice" HTTP headers:
$ http -j "http://127.0.0.1:3000"
(...)
HTTP/1.1 204 No Content
(...)
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
...
2
votes
1answer
64 views
config.ru if statement for production
in my config.ru i would like to setup a code block that will run specific code depending on the environment. I tried some code but i am not having any success. Any suggestions?
if ...
0
votes
0answers
34 views
Rails::Rack:LogTailer and Unicorn
I'm switching from Thin to Unicorn. So far everything works and my tests are passing, but I'm not getting the useful log statements in my terminal. I have to tail log/development.log to see what ...
0
votes
0answers
22 views
Why aren't there file headers for uploaded JPG files in my Rails app?
I'm trying to verify that the files being uploaded in my app are JPG's and TIFF's. I have read that you shouldn't trust the content-type in the request params since that can be changed by the user, ...
0
votes
1answer
23 views
Sinatra and “controllers” behaviour
Sinatra from Box does't allow separate action to file? Like this:
index.php
get '/' and other
user.php
get '/user/show/'
post '/user/new/' and other
How to say sinatra use user.php for ...
0
votes
1answer
73 views
How to run Pow.CX alongside MAMP and VirtualHostX
I have come across some some answers on StackOverflow similar to this question, however they pertain to MAMP Pro. My particular setup of consists of the standard MAMP alongside VirtualHostX (VHX).
I ...
0
votes
1answer
93 views
How to access client X.509 certificate from Ruby web service (not Rails)?
How can I access the client X.509 certificate from a Ruby web service? The client is passing a client certificate, and it's fine that the browser is authenticating that for me, but I also want to look ...
2
votes
2answers
173 views
Undefined method `to_i' for Hash
I am trying to make a subdomain router for my Rack app but I ran into a problem. Here is my config.ru code:
require './controllers/subdomain'
require './controllers/www'
set :root, './'
run ...
5
votes
2answers
105 views
Why does Rails generate a config.ru that runs a class, not an object?
Rack specifies
A Rack application is a Ruby object (not a class) that responds to call.
Consequently, a simple config.ru looks like this:
class MyApp
def call(env)
[200, {"Content-Type" ...
1
vote
0answers
53 views
Calling Sinatra from Sinatra produces results different from external request
Following my question here.
So I am trying to do a smart redirect using this:
get "/category/:id/merge" do
#... setting @catalog_id and category
call env.merge("PATH_INFO" => ...
0
votes
1answer
32 views
Rails with RackFilter and assets
I am having an issue using a custom RackFilter setting and being able to correctly locate or leverage the rake:precompile function in production.
My environment is as follows:
jruby 1.7.3
Rails ...
0
votes
1answer
62 views
Does Rack handle requests serially or concurrently?
Suppose I have a single process Rack application, if multiple requests arrive at the same time can the invocations of call(env) occur concurrently? Or is it guaranteed that call(env) will happen ...
1
vote
1answer
89 views
Is there a Rack middleware for using sessions without cookies?
The provided session management middleware that comes with Rack are all based on cookies for identifying the user. Since I'm developing an api, I would rather pass the session-id explicitly as a query ...
0
votes
1answer
149 views
How to get the current Rack environment in Rake?
Is there a way to get information about the current Rack environment in Rake? For example, how can I tell whether Rack is running in development or production mode?
I understand that Rake is not ...
1
vote
2answers
107 views
How to read POST data in rack request?
When I run the curl command
curl -v -H "Content-type: application/json" -X POST -d '{"name":"abc", "id":"12", "subject":"my subject"}' http://localhost:9292
to send a POST request with data to my ...
0
votes
1answer
55 views
Extract Ruby Parameters
Hi i am trying to make a rack controller similar to Rack::URLBuilder but i am having trouble extracting the parameters.
config.ru
run Example::Controller.new ([
"test" => Sinatra::Application
...
1
vote
1answer
58 views
How to handle post request in Rack
To respond with a json response in Rack I can do something like the below. How do I return different responses depending on if the request is a GET request or a PUT request and the data that comes ...
2
votes
1answer
54 views
Sinatra - Overriding Rack Classes
I have a tiny Sinatra project where I need to override Rack::Auth::Basic#valid?. Currently I have placed this override in the main file for my application, but that seems to clutter the source as ...
0
votes
1answer
52 views
how to append/replace alt/title attribute in all image tags?
say I have an action template like this
# home/index.html.erb
<%= img_tag "logo.gif" %>
if I want to add alt/title attribute to it, I can just do
# home/index.html.erb
<%= img_tag ...
4
votes
2answers
117 views
How to create rack application to be used by Rails?
Rails itself is based around multiple independent processes that are stateless inbetween requests. I need to add a stateful centralized service (a game automatcher) to my Rails app.
From what little ...
0
votes
1answer
64 views
Filtering sensitive information with Sinatra and Rack Logger
I maintain a Sinatra app that acts as a JSON API service. The API is consumed by another web app, as well as a mobile app.
What I'd like to do is have the Rack::CommonLogger exclude sensitive ...
0
votes
1answer
44 views
Incompatible character encodings error when I send arabic number to my ruby rack server
I have a simple rack based ruby server that I run using Thin, it looks something like :
#encoding: utf-8
class Auth
def initialize(app)
@app = app
end
def call(env)
@request = ...
0
votes
0answers
30 views
Rack requests files non stop
I create a simple rack application to serve static files on heroku. But I have a problem that when trying to run the application locally with rackup. It seems to requests files continuously, this ...
0
votes
1answer
93 views
Modify Rack App
For one of my ruby applications i need the server to route requests based on the subdomain. There are ways to do this using other gems but i decided to make my own "middleware". This code runs ...
0
votes
1answer
91 views
New to Rails — Webrat methods not working in integration test
I have a Gemfile:
source 'https://rubygems.org'
gem 'rails', '3.2.11'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'thin'
# Bundle edge Rails instead:
# gem ...
0
votes
0answers
72 views
Subdomain App Routing
I'm trying to make a ruby based app for heroku that will use subdomains to route users to the correct application. After searching google i came up with a sloppy way of doing this, but i was wondering ...
0
votes
2answers
63 views
Need help organizing my files and routes in Sinatra (moving old PHP site to Sinatra)
Here is an example of how I would organize a site clothes.com in PHP:
index.php
style/
style.css
men/
index.php
style/
style.css
women/
index.php
style/
style.css
How would you ...
0
votes
2answers
36 views
Restarting only a portion of a rack/Sinatra app
The great thing about PHP is that if you have something like
clothes.com, clothes.com/men.php, clothes.com/women.php
Then if you only edit the men's page, only that particular "app" will be ...
0
votes
0answers
500 views
'rake aborted! cannot load such file — rack' error
Im installing Redmine v2.2.3 on CentOS v5.6. I have ruby v1.9.3p385 installed. When i do rake generate_secret_token or bundle exec rake generate_secret_token i get the error 'rake aborted! cannot load ...
0
votes
0answers
92 views
Rack + Sinatra * Celluloid == No Code Reloading?
In the :development environment of my jRuby+Trinidad application, I use code reloading; both under Sinatra, but also using Rack's code reloader. I find certain changes are missed by one reloader are ...
0
votes
0answers
137 views
Rails/Rack… Rack::ReverseProxy Causing Request Timeout
I'm think I'm in over my head and can't figure out how to debug or where to go from here?!! Any guidance would be greatly appreciated!
Problem:
Development Environment: everything works
Production: ...
0
votes
0answers
27 views
Public files not gzipped by ruby/rack?
Using jRuby 1.7.3 && Rack 1.5.2 (and before those versions) && jRuby-Rack+Trinidad, I only see dynamically generated pageloads getting gzipped and received as compressed, browser side.
...
1
vote
0answers
25 views
Rack::Deflater returning error 330 on all pageloads (except public files)
jRuby 1.7.3, Rack 1.5.2 (with jRuby-Rack && Trinidad)
After upgrading jRuby && Rack && jRuby-Rack, suddenly all my pageloads fail out with Error 330 unless they refer to a ...
2
votes
1answer
255 views
How to enable gzip compression for static Rack sites on Heroku Cedar?
Following the Creating Static Sites in Ruby with Rack article, I get a static site on Heroku with a config.ru that looks like this:
use Rack::Static,
:urls => ["/images", "/js", "/css"],
:root ...
0
votes
1answer
67 views
Subclass Rack::Throttle
i am reading about Rack::Throttle and i want to change the default client identifier from an IP to somethng else. The documentation says it can be done
The rate-limiting counters stored and ...
0
votes
1answer
47 views
Paperclip and Phusion Passenger NoHandlerError
I followed this guide to get drag and drop file uploads through AJAX: http://dannemanne.com/posts/drag-n-drop_upload_that_works_with_ror_and_paperclip
Everything was working fine on my development ...
0
votes
1answer
40 views
how does one manually log out when using devise http authentication?
I'm very new to Ruby, and have inherited an API that (I believe) uses devise to handle http authentication.
I was trying to test a route, and accidentally logged in with incorrect credentials. ...
1
vote
1answer
48 views
Rack + Thin, unlimited connections?
I have my own MVC environment running with Rack and Thin.
By default, thin's connections are restricted to 1024. How to change the maximum amount of available connections? In best case, to unlimited ...
2
votes
1answer
78 views
Using a rackup file to custom configure an application instance
tl;dr How can I get a single Sinatra app to start up very differently on different servers via customizations to config.ru?
Background
I have a single web application written using Sinatra that's ...
0
votes
1answer
148 views
Why does rspec-rails skip the middleware?
I have a Rails app (3.2.12) that I wanted to add locale switching via HTTP Accept-Language header.
What I did to achieve that:
I added rack-contrib to my Gemfile:
gem 'rack-contrib', require: ...
1
vote
1answer
220 views
What are the benefits of using Grape in the Rails app? [closed]
I have a Rails web app and I want to provide API. I have found Grape and it looked nice and it can also be mounted into Rails but I am not sure of benefits of mounting Grape into my Rails app and use ...
2
votes
0answers
101 views
Pow.cx Rails Assets Not Loading (IOError: Closed Stream)
Assets are timing out for my Rails app served locally through Pow. When I visit an asset's url directly (eg. '/assets/home.css') I'm presented with this error:
{"name":"IOError","message":"closed
...
0
votes
1answer
47 views
rack.session.options - when to use which?
Is there a difference between :skip and :defer then apart from :defer tends to be used in older versions? Is there any use case for the various options and when they should be use out there?
Many ...
1
vote
0answers
40 views
Rack Routing - NoMethodError
I'm trying to set up a basic routing system in Rack, however.. I can't understand why the first route ('/') works, and the second ('/help') doesn't. What gets returned in the case of '/help' is a ...
0
votes
1answer
117 views
Ruby on Rails architecture
I am pretty new to ruby on rails. I have setup an Apache server which directs requests to Phusion Passenger, Passenger invokes corresponding controller and gets the job done.
When is rack ...
