Rack provides a minimal interface between webservers supporting Ruby and Ruby frameworks.
0
votes
1answer
15 views
Mongoid has_many relationship causes Rack cookie error in Sinatra
Writing an application using Mongoid 3.1 and Sinatra in Ruby 1.9.3. I have a model called Order that has_many Items. Whenever I try to append an Item to an Order.items, I run into problems. I have the ...
1
vote
0answers
9 views
Does request.body require rewind before read with Rails 4 and content-type application/json or is there a new approach?
When I post data to a Rails 4 application with Content-Type: "application/x-www-form-urlencoded" I can get the body of the request with request.body.read
However, when I post data with Content-Type ...
0
votes
0answers
9 views
Custom 404 page when using Rack:Sstatic
I am using Rack to build a static site and my config.rufile looks like this:
use Rack::Static,
:urls => [""],
:root => "public",
:index => "index.html"
run lambda { |env|
[
404,
...
0
votes
0answers
30 views
rack http header field changed in the response
I am using unicorn with sinatra and my server must send back a response to the client application with a specific custom http header, let's say 'my-header'. However the client always receives ...
0
votes
0answers
19 views
Grape API Ruby gem limiting requests
I have built a super simple Grape API which just grabs a value from a database.
Whilst developing, I need to find out how many concurrent connections the API could serve. Currently the application is ...
0
votes
1answer
25 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
15 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
28 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 ...
2
votes
1answer
34 views
Running a simple rack app with SSL on localhost?
I have a simple rack app that is serving up a static file. I need to use SSL locally for development purposes. Any way to do with with rack?
2
votes
2answers
63 views
Sinatra application fails miserably in production/test environments when using session
I'm trying to run my Ruby Sinatra application in test and production. Here is the main class:
class Main < Sinatra::Application
helpers Sinatra::ContentFor
helpers Sinatra::Partials
helpers ...
0
votes
0answers
25 views
resque-web with rack 1.4.5 (unicorn + nginx)
Recently installed resque-web on Debian 6 (with ruby 1.8) using
sudo gem install resque
sudo gem install unicorn
Everything works fine until I restart the server (which is also running Redmine + ...
1
vote
1answer
50 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 ...
0
votes
2answers
27 views
Ruby path makes require impossible
I am a beginner in ruby, and i have a problem using my ruby script, that work on my computer, on a server.
My problem is that i don't become to require 'rack/cors' and require 'grape'
On my computer ...
1
vote
1answer
12 views
Rack::Builder 'to_app' method comprehension
I saw the Railscast #151. In this video, a Rack's snippet is presented. It corresponds to the Rack::Builder module. I'm missing something in the to_app method:
def to_app
app = @map ? ...
1
vote
1answer
46 views
JavaScript: plugging behaviors into objects and easily removing those behaviors
In JavaScript, I want to instantiate an object in a long-running application. The object should allow itself to be augmented with mixins. There are some design restrictions:
A mixin may override ...
2
votes
3answers
64 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
16 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"]} ...
3
votes
1answer
78 views
How to decode a cookie from the header of a websocket connection handshake? (Ruby)
I am running a Sinatra app within an EventMachine.run loop and in my ws.onopen method I wish to check the handshake header's cookie to ensure that the incoming request is coming from a registered user ...
0
votes
2answers
20 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 << ...
1
vote
2answers
58 views
Loading attributes only once in Grape
I'm little new to Ruby, but I have the following coded using Grape API in Ruby. I have @data = YAML.load() called every time it hits GET /api/v1/foo, is there a way in Grape to only load it once and ...
3
votes
2answers
100 views
JRuby: Calling Java Code From A Rack App And Keeping It In Memory
I currently know Java and Ruby, but have never used JRuby. I want to use some RAM- and computation-intensive Java code inside a Rack (sinatra) web application. In particular, this Java code loads ...
1
vote
2answers
37 views
How to serve a 500 page using Sinatra?
Since Sintra is a Rack app, I think it could use Rack way:
get '/' do
result = true
if result
['200', {'Content-Type' => 'application/json'}, [{result:true}.to_ json]]
...
0
votes
0answers
31 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
1answer
69 views
undefined method `each' for String when using https
In my application staging environment there is an error when I try to access a page over https, the webpage is correctly working with http. The error I get is :
undefined method `each' for ...
0
votes
0answers
40 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 ...
-1
votes
1answer
36 views
Ruby on Rails/Rack 1.4.5 return from Call Method / Can't Convert String to Array
I am following Rob Conery in his Tekpub/Rails 3 tutorial video. I think something has changed in between the versions of Rack in video release (1.1) and the one on my machine (1.4.5). I don't know how ...
0
votes
1answer
46 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
1answer
34 views
How to ship a Sinatra application as a gem and deploy it?
I have a sinatra application and packaged that as a gem. Its file-layout looks roughly like this:
├── bin
│  └── tubemp
├── lib
│ └── tubemp.rb
├── Gemfile
└── tubemp.gemspec
I can install and ...
1
vote
0answers
49 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
35 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
15 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
...
1
vote
1answer
39 views
Why rack/test is combining hashes into one when performing POST or PUT operations
In my rspec test, I defined the following array of hashes and performed a POST:
body = {:event => { :invitations_attributes =>
[ {:recipient_id => 40}, {:email => 'a@a.com'}, ...
2
votes
1answer
28 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 -- ...
1
vote
2answers
33 views
Scale rails 3 oauth 2protected API
I need to protect my rails app`s rest API with OAuth 2 protocol. I have tried the Doorkeeper gem but it uses the same server for authentication, I don't think it's good for scaling. How can I config ...
0
votes
1answer
40 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 ...
2
votes
1answer
45 views
Rewrite URL prefix into HTTP header
I'm trying to rewrite URLs as follows using rack-rewrite:
/group1/feed becomes /feed, with header "GROUP_NAME" => "group1"
Currently, I'm using a hacked version of rack-rewrite which allows me to ...
1
vote
1answer
75 views
What goes in config.ru for a non-rails app on heroku?
I have a simple ruby (non-rails) app that uses resque, and won't start up without config.ru on heroku. When I add a config.ru file I get the following error when running rackup locally:
...
0
votes
1answer
42 views
How to set session[:expires] in rack session (Sinatra)
You can set a session expiry for a Sinatra app when you set up the session engine:
use Rack::Session::Cookie, :expire_after => 60*60*3, :secret => 'xxxx'
But I want to enable a longer ...
0
votes
1answer
35 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 ...
1
vote
0answers
31 views
Start Padrino on different host (virtual)
I start WEBrick server through Padrino by this command: padrino start
It listens on localhost, but I would like to use WEBrick virtual hosts to change this behaviour to respond to other hostnames ...
2
votes
1answer
38 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 ...
1
vote
1answer
112 views
Grape API and HTTP Digest Authentication
I am working on creating an API for my ruby application that authenticates users based on HTTP Digest Authentication. I decided to use the Grape API library because it makes creating an API cleaner in ...
3
votes
2answers
136 views
Rails/Rack: “ArgumentError: invalid %-encoding” for POST data
Our ruby on rails site has a URI that one of our partners POSTs XML data to.
Since we don't want to deal with XML, we literally just stuff the raw data into a database column and don't go any further ...
2
votes
3answers
109 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 ...
2
votes
1answer
73 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
205 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
72 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
81 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
102 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 ...


