0
votes
1answer
26 views

Trigger basic HTTP auth from within middleware

I have created a custom middleware for rails which will intercept all requests and make sure it's coming from an authorized IP, otherwise it should prompt for a basic http auth user/name password. ...
0
votes
0answers
19 views

How to get Helios and Rails to work together (Rack issues)?

I'm trying to get Helios (https://github.com/helios-framework/helios) to work with an existing Ruby on Rails 3.1 application. But there's a conflict regarding rack version; bundle install gives me ...
2
votes
0answers
32 views

SASS in Sinatra: couldn't set custom directory

I've read Sinatra SASS custom directory and Sinatra custom SASS directory . But it doesn't work for me. I write this app: require 'sinatra' require 'sass' require 'slim' configure do set ...
0
votes
0answers
24 views

Devise restrict access to a specific url/rack-app

I'm trying to restrict the access to the "/media/:url" path. I need to do this because of dragonfly (rack app). At the moment the path is accessible for everyone. I've tried it with a constraint in ...
1
vote
1answer
53 views

How to set timeout for a particular URL in rails

I use rack-timeout and it works fine. But I couldn't figure out how to set time for a particular URL. Even if I do like: map '/foo/bar' do Rack::Timeout.timeout = 10 end not only /foo/bar ...
2
votes
3answers
79 views

Trouble mounting multiple Grape APIs in Rails

I have two APIs that I'm trying to mount in my Rails app-- one called 'v1' and another called 'twilio'. Each API will be composed of multiple files, so I want each to have its own folder. Inside my ...
0
votes
0answers
21 views

Rack: /var/app/current: No such file or directory on Elastic beanstalk

Im trying to clone a repository onto the Rails root on an AWS Elastic Beanstalk instance but im experiencing the following error rb. %x(git clone #{a["clone_url"]} ...
0
votes
2answers
21 views

how rails override the middleware method defined by rack?

This question is about rails source code. I notice middleware method definded in railties/lib/rails/commands/server.rb (Rails) def middleware middlewares = [] middlewares << ...
0
votes
0answers
32 views

Does my production application need the config.ru file?

I'm trying to determine why my production application is running poorly. Each ruby process is consuming about 250MB when idle. So I'm running four Passenger processes and it's eating up 1GB of RAM. ...
0
votes
0answers
44 views

JRuby deployment into Tomcat - org.jruby.rack.RackInitializationException

I got my app running and perfectly working in WeBRICK and Trinidad. The thing is that now I need to make a deployment into Tomcat. Im using Jruby and Rails 3, when I create the deployment it fails ...
0
votes
1answer
53 views

Ruby on Rails/Rack Builder “Use” Method Wrong Number of Arguments

I am new to Ruby and Rails. I am playing with Rack, trying to get a basic understanding of this peice of the Rails puzzle, following along with Rob Conery in his Tekpub/Rails 3 tutorial vid. ...
1
vote
0answers
52 views

Removing Set-Cookie headers from response

I'm trying to remove Set-Cookie headers for any kind of HTTP response of my app. As advised in the article below : Rails 3 disabling session cookies I added a "middleware app" to make it. ...
1
vote
1answer
38 views

Rails 3.2.x - log elapsed request time

Rails 3.2.X logging mechanism has improved tremendously. Still, I'm looking for a way to add a prefix of 'elapsed time since request has started' (in milliseconds or a timestamp) before each log ...
0
votes
0answers
17 views

RackEnv not respected when using route helpers from model

Running Rails 3.2.13 on Passenger for Apache. My vhost: <VirtualHost *:80> ServerName server DocumentRoot /srv/http <Directory /> Options Indexes FollowSymLinks MultiViews ...
2
votes
1answer
31 views

Rails 3 Passenger Path Error

Rails 3.2.10 Passenger 3.0.19 Ruby 1.9.3-p392 (using rbenv) Trying to get my Rails app running on my server via Passenger. Getting this error: No such file to load -- ...
0
votes
1answer
46 views

Get client's request type using RACK middleware

I have an api request say "host/something/abc.xml" which doesn't send content_type. Rails still understands that it needs to respond with xml and sends an xml data. If the same client calls with ...
0
votes
0answers
15 views

Rack::Cache not busting cache after changed etag

I have setup Rack::Cache to work with my rails application, heroku, Dalli and memcachd. Everything works as expected however when I update my content in the backend of my site the cache is still ...
0
votes
1answer
37 views

Rails simulate application instance / request

I am following along with the following: http://railscasts.com/episodes/151-rack-middleware I'm trying to test the middleware using rspec. I'm not sure the best approach to this. I am trying to ...
2
votes
1answer
41 views

Loading local gems through Bundler and mounted apps

I'm creating a gem (let's call it mygem) that is essentially a Sinatra server intended to be mounted within Rack based apps. Inside my gem's gemspec file, I have the following: gem.add_dependency ...
2
votes
3answers
113 views

Why is nginx serving my rails app very slowly on development environment?

I am developing an RoR application on mac OSX. In order to be able to access my app on http://localhost, and in order to support SSL in my tests, I use nginx as a proxy to my Webrick port 3000 with ...
0
votes
2answers
79 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
1answer
86 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 ...
0
votes
0answers
32 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 ...
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" ...
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 ...
5
votes
2answers
116 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
87 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
493 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
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: ...
1
vote
1answer
215 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
99 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
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 ...
0
votes
0answers
60 views

Does Rails 2.3.x has advanced constraints for routes?

I have a Web App in Rails 2.3 and I want to port this Railscast (http://railscasts.com/episodes/350-rest-api-versioning) but that is using Advanced Constraints ...
1
vote
1answer
118 views

Rails 2.0.1, Pow.cx - config.ru error

I have rails 2.0.1 and the latest version of pow.cx setup and I'm getting an error which I think is related to the config.ru file: NameError: uninitialized constant ActionController::Dispatcher ...
-1
votes
1answer
85 views

Are there Ruby servers that can handle multiple requests in one thread?

coming from Java world where we have NIO (nonblocking IO) I am not able to find a Ruby server that would be able to do the same as Jetty for example - to handle multiple requests with one thread. This ...
1
vote
0answers
120 views

Rack-Cache: “stale, valid, store”

I use in my rails app a page caching solution along with an expire_at statement. My page is good for 1 hour and then needs to be redone. For some reason the first hour when my rails server start its ...
0
votes
2answers
102 views

Application Error when deploying a simple rack application on heroku

i am trying to deploy my app on heroku it contains 5 files 1.config.ru with code require 'rack' require './myapp' run MyApp.new 2.Gemfile with code source "http://rubygems.org" gem 'grape' gem ...
0
votes
1answer
28 views

Build a RubyGem that includes an Rack-application

I am currently building a gem that rely on Rack to serve HTTP-requests. Instead of cluttering my own gem (or repository) with deploy-specific stuff, I just want to be able to add this to a Gemfile: ...
0
votes
0answers
40 views

How do I use a HTML5 file field (with the multiple attribute) with Rack and Rails 2.3.x?

I have the following html <input name="xyz_media[files]" type="file" multiple="multiple"> and when I try to upload multiple files... I only get these params (in a Rails controller): ...
0
votes
1answer
408 views

Rails 3.2, handle corrupted request bodies (MultiJson::DecodeError)

I'm working on a Rails 3.2.11 application (MRI 1.9.3). PArt of it is a webservice that receives POST requests with JSON serialized bodies. Everything works, but I want it to be resilient to bad ...
1
vote
1answer
69 views

Creating RestApi without using rails only using Rack

i have to create a rest api using grape link.in the rest api i don't want to use Rails gem it can be created using simply gem. My first question is this a good approach for making application light ...
1
vote
1answer
39 views

Easiest way to get the start time of a rails response?

I'm trying to compare the start time of a response to various places inside the code. Does rails have any magic that gives you response start time, or would I have to write my own middleware?
1
vote
1answer
70 views

When it comes to middleware, what's the difference between config.ru and application.rb?

Am I correct in understanding that application.rb runs middleware within the whole Rails stack, while putting something in config.ru pre-empts the Rails stack? This means that if I say for example ...
0
votes
0answers
126 views

Rails CSRF Token Changes during session, preventing cross-site POST with CORS

I'm trying to do a cross-site POST. I'm using rack-cors to send the right CORS headers and support OPTIONS requests. In Javascript, I first fetch the CSRF token during login (from another domain). ...
1
vote
2answers
104 views

How do I build a Rack middleware as form validator

Beginning Rack dev here. I have the basic blog app built found at http://guides.rubyonrails.org/getting_started.html I can create a post, make changes....fine. now... I'm learning how to use Rack ...
3
votes
1answer
2k views

Can't activate rack (~> 1.4.0, runtime) already activated rack-1.5.0

I've been looking for an answer to this for over a day now, and searched StackOverflow thoroughly. I understand the conflict that's happening, and I should just uninstall the version of Rack I don't ...
0
votes
1answer
218 views

ActionController::Dispatcher (NameError)

I'm working along with the Rspec book. In chapter 19, they set up a testing environment for a Rails project group :development, :test do gem "rspec-rails", "2.0.0" gem "cucumber-rails", "0.3.2" ...
0
votes
1answer
162 views

Cryptic error when trying to run POW

I am having a rather weird error message when running POW for my rails app. I followed the instructions: - cd ~/.pow - ln -s /Users/mingyeow/Dailymuses-Server-Side And got this: Error starting ...
3
votes
1answer
214 views

Rack Gem::LoadError even though I'm using Bundler

I don't understand how this can happen: $ bundle install [...] $ bundle exec rails server [...] You have already activated rack 1.4.4, but your Gemfile requires rack 1.4.3. Using bundle exec may ...

1 2 3 4 5 8