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

learn more… | top users | synonyms

1
vote
1answer
75 views

Do Sinatra (rack) applications have “TempData” like ASP.NET MVC has?

In asp.net mvc there is a method called TempData used for holding temporary data. Is there anything similar to it in Sinatra? UPDATE: it became TempData.
0
votes
1answer
155 views

Testing rack-timeout in sinatra and ruby

This is something that I thought would be straightforward but I'm having issues around testing the rack-timeout gem. I have a sinatra base class with an endpoint which does some logic. module ...
0
votes
1answer
44 views

Log file does not get written until server shutdown / does not write with Logger

I am developing a simple web service with Sinatra/Thin on Windows In my app, I have the following to enable logging to a file: Dir.mkdir('log') unless File.exists?('log') use Rack::CommonLogger, ...
0
votes
0answers
18 views

Is there a HTTPClient that consumes Rack's env or Rack::Request?

Ideally, it would work like this def call(env) request = HTTPClient.new(env) response = request.execute [response.status, response.headers, response.body] end and transparently handles ...
2
votes
1answer
234 views

Using a secret for cookies stored with Rack::Session::Pool

The source from Rack::Session::Cookie contains the following warning about not setting a secret to check for cookie integrity: No secret option provided to Rack::Session::Cookie. This poses a ...
0
votes
0answers
58 views

Callbacks for Faye Ruby not working

I have a ruby project with a page with Faye Chat powered by its js implementation. Then to know what users are currently online i use rackup application. On our test server and on my local PC ...
0
votes
2answers
104 views

How to rackup a config file from outside the root directory?

When I run rackup from within my app directory, it works fine: walkraft@li234-166:~/discourse$ rackup config.ru Flushing redis (development mode) ...
1
vote
1answer
68 views

How can I pass data to websocket-rack from a class in my sinatra app?

I've got a working configuration of websocket-rack in a sinatra app that is intended for a physical installation with multiple screens. There is functionality working where messages are getting passed ...
1
vote
1answer
60 views

Getting get params within post request using params hash

There is a code in Sinatra application post '/login' do return_url = params[:return_url] # it's nil #........ end The url of a page might contain return_url parameter - ...
2
votes
1answer
63 views

How can you set up scoped redirects for Sinatra apps

I have a series of sinatra applications that are set up such that each is responsible for one thing. Let's say I have two apps like this: class Foo < Sinatra::Base get '/' do 'FOO!' ...
2
votes
1answer
134 views

Ruby rack middleware to filter all the exceptions raised in the stack

Hi I just had a question on how to appropriately manage exception handling with ruby rack. I am currently building a lightweight API with Sinatra/Rack and every route could through an exception (e.g. ...
1
vote
1answer
64 views

Getting Rack mounted path in Sinatra application

Suppose I have the following config.ru file require './status.rb' map "/status" do run Sinatra::Application end and the status.rb is a simple require 'sinatra' get '/' do 'Some status ...
-1
votes
2answers
505 views

Cannot load such file — rails (LoadError)

I have a Sinatra application. After adding gem 'kaminari', I start getting the error of /var/lib/gems/1.9.1/gems/backports-2.7.1/lib/backports/tools.rb:318:in `require': cannot load such file -- ...
-3
votes
1answer
45 views

Many instance variables or hash with many keys? [closed]

In Sinatra application I have a code gef '/123' do @var1 = # some calculations @var2 = # some calculations #..... many of them haml(:"view123") end and all of the instance variables are ...
-1
votes
1answer
84 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 ...
2
votes
1answer
41 views

Within a rack application, how can I tell which web server is running?

Within a rack application, how can I tell which web server is running as the Rack Handler? For instance, from within config.ru, I want to switch on whether I am running WEBrick: unless ...
1
vote
1answer
120 views

How do you set up Rack::URLMap to work with RSpec in Sinatra?

I'm relatively new to Sinatra, and I want to figure out a way to integrate RSpec with my Sinatra setup. config.ru require 'sinatra' require 'mongoid' require 'uri' require './lib/twilio_wrapper' ...
1
vote
0answers
119 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
94 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: ...
2
votes
1answer
254 views

Rackup: cannot load such file 'sinatra'

I already installed sinatra gem and in irb, if I type, require 'sinatra' It returns true. But when I do rackup -d config.ru It tells me nil Exception `LoadError' at ...
1
vote
1answer
190 views

Sinatra/Rack `ERROR URI::InvalidURIError: bad URI(is not URI?)` on redirect

I've just started my first Sinatra project, a simple TV-show management web app, and wanted to have beautiful URLs. So when a user types in the search box and submits, I don't want to have a ...
0
votes
0answers
39 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
127 views

Creating a table in postgres heroku

i'm a ruby new bie.I'm trying to create a simple API using rack that takes a json data and writes that to the postgres heroku database table. i created a database on postgres heroku, but didn't find ...
0
votes
0answers
40 views

Serialize rack state in a most safe way

Here is the snippet to get my rack server going: require 'rack' require './sfw.rb' class Server def initialize @global = {test: 1} end def call(env) server = SFW.new ...
0
votes
1answer
405 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 ...
2
votes
0answers
72 views

Extension calls from an extension trigger rack warning

I've made a chrome browser extension that makes some simple get/post requests via JS to my sinatra server. Every time a POST comes in, I see: attack prevented by Rack::Protection::HttpOrigin in the ...
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
38 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?
0
votes
1answer
51 views

Sinatra only recognizing first GET param

I have a simple Sinatra app. When I do: curl localhost:4567/api/shows?limit=1&page=2 I only see this in the Sinatra log: {"limit"=>"1"} What am I doing wrong?
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
40 views

Renee/Rack: using cookie based sessions in the Renee franework

Can someone explain me, how cookie based sessions with Renee work? It should be kind of similar to Sinatra or other Rack based frameworks. There is a reference page for Sessions, but it does not ...
0
votes
0answers
125 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). ...
0
votes
1answer
123 views

New version of Rake Pipeline doesn't like my config.ru

I'm working on an Ember.js project (around 0.9.8.x, if it matters) which was built with ember-skeleton. I recently made the mistake of haphazardly running bundle update and my version of rake-pipeline ...
1
vote
2answers
103 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
212 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
167 views

rack-google-analytics

I'm using the gem rack-google-analytics in my rails project but when I run it in production mode I get an error. rack-google-analytics-0.11.0/lib/rack/google-analytics.rb:11:in `initialize': Tracker ...
1
vote
1answer
200 views

“Error bad URI” when trying to get WEBrick to accept HTTPS

So I've got a simple Sinatra site: # app.rb require 'sinatra' get '/' do 'Hello world!' end And I can set up rack to serve it over HTTP: # config.ru ...
0
votes
1answer
152 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 ...
1
vote
2answers
167 views

Sinatra not understanding settings in config.ru?

I'm trying to write a config.ru file for sinatra where I have one set of database credentials for each environment, development and production. I'm doing the following: app.rb: require 'sinatra' ...
0
votes
2answers
126 views

How to mount a Sinatra app in a Padrino app?

Resque/Sidekiq come with a web frontend, which is a Sinatra app. The way to mount this in a Rails app is to add this to routes (http://railscasts.com/episodes/366-sidekiq?view=asciicast): mount ...
1
vote
0answers
63 views

How to make HashWithIndifferentAccess as default for params in Sinatra controllers?

Is it possible to make HashWithIndifferentAccess as default for params in Sinatra controllers like Rails, so that i can use symbols instead of strings in controllers? post '/books' do ...
0
votes
0answers
42 views

How to rewrite local files using Rack:Rewrite

I need to set a rewrite rule using Rack::Rewrite to redirect based on a internal request to a file. On nginx it goes something like this. if (-f $document_root/cache/$host/$uri/index.html) { ...
0
votes
0answers
19 views

How this nginx rewrite would be written in Rake Rewrite?

I'm a bit lost in how to convert the following nginx config to Rake Rewrite ruby format? if (-f $document_root/cache/$host/$uri/index.html) { rewrite (.*) /cache/$host/$1/index.html break; } if ...
3
votes
1answer
208 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
vote
1answer
381 views

Two versions of rack in Gemfile.lock causing error

Rails app runs fine locally but on the remote server I get this error: You have already activated rack 1.4.1, but your Gemfile requires rack 1.4.4. Using bundle exec may solve this. I've bundle ...
0
votes
2answers
84 views

How do I share sessions between 2 Heroku apps?

In the context of What is the difference between a Cookie and Redis Session store? , how can I share session data among Heroku apps (Sinatra frontend with Rack API backend)?
0
votes
1answer
191 views

What is the difference between a Cookie and Redis Session store?

I want to share sessions among 2 applications on different nodes; however, I am confused what the difference is between Cookie and Redis session stores; e.g. a cookie session might look like this: ...
2
votes
1answer
268 views

Mounting a Rack application in Rails not working

I'm trying to mount a rack application in Rails and it's not working. I've recreated the simplest version of my problem I could. I'm using Ruby 1.9.3p327 and Rails 3.2.11. I started by creating a new ...

1 2 3 4 5 19