0
votes
1answer
16 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 ...
3
votes
1answer
89 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 ...
1
vote
1answer
87 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
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
1answer
207 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: ...
1
vote
1answer
74 views

Rename session cookies in Rails

since I'd like the session cookie to reflect the url and not the app name, I'd like to rename the cookies.. The current session cookie name is called _APPNAME_session is there a way to rename it to ...
4
votes
1answer
234 views

Using `Rack::Session::Pool` over `Rack::Session::Cookie`

What are the different use cases of Rack::Session::Pool and Rack::Session::Cookie? As far as I understand (correct me if I'm wrong): Cookie stores all the session key:value pairs directly within ...
0
votes
1answer
69 views

Stop Rack session setting a cookie for all pages

In my Sinatra app I am using rack sessions use Rack::Session::Cookie, :secret => ENV['SECRET'] It seems to be setting a cookie for every page load, even if I am not setting anything in a ...
1
vote
2answers
356 views

How to properly start a session using cookies, store it and access it in a Sinatra app using Rack sessions

I have a Sinatra app running on Heroku. I've had a really tough time properly setting up the cookies for my users. I've been looking at examples and documentation for a couple days now and just can't ...
1
vote
0answers
121 views

Transfer cookie between domains / browsers in Rails

In order to "share" the same session between multiple domains, I'd like two sessions to have the same database/memcache key. For instance, I want foo.com and bar.com to be essentially the same. ...
9
votes
1answer
546 views

Cookie data size exceeds 4K - But its 'only' 1100 bytes encrypted

I have a Sinatra app using Rack::Session::Cookie use Rack::Session::Cookie, :key => 'my.key', :path => '/', :expire_after => 3600, # In ...
1
vote
2answers
661 views

Rack/Sinatra session breaking when deployed on heroku - E13

I have a basic Sinatra app deployed to Heroku. I have 'enable :sessions' in the app and nothing else do do with sessions except setting/accessing the sessions data. The app works well, but if I have a ...
2
votes
2answers
742 views

How to get JSON data via Javascript with cookies authentication?

I'm building an application with Ruby on Rails. The application is a Javascript application that get data by JSON calls from the api application. It also provide the cross domain authentication for ...
7
votes
2answers
1k 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
1answer
2k views

Using Cookies with Rack::Test

I'm trying to write RSpec tests for my Sinatra application using Rack::Test. I can't understand how I can use cookies. For example if my application set cookies (not via :session) how can I check ...
4
votes
1answer
5k views

Rack Session Cookie and Sinatra - setting and accessing data

I was using Rack Session Pool, however my users would get kicked off one webserver thread onto another making the session data expire. I started toying around with just enable :sessions in Sinatra, ...
0
votes
1answer
788 views

Using Rack middleware for cross-domain sessions in same app

I have a white-labelled Rails app that allows me to create a variety of different new websites, each with their own TLD, but all powered by the same app. It's an ecommerce app so all orders are ...
7
votes
2answers
4k 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 ...
0
votes
1answer
144 views

setting cookies

Okay, so I'm trying to set cookies using Ruby. I'm in a Rack environment. response[name]=value will add an HTTP header into the HTTP headers hash rack has. I know that it works. But the following ...
1
vote
1answer
595 views

How do I pass a cookie to a Sinatra app using curl?

I'm using the code from the example titled "A Slightly Bigger Example" from this tutorial http://rubylearning.com/blog/2009/09/30/cookie-based-sessions-in-sinatra/ to figure out how to send a cookie ...
2
votes
1answer
730 views

Rack::Test not able to find web app cookie

While testing a Sinatra app with Cucumber, Rack::Test was not able to find the cookie that my app created, even though I could clearly see that it was in the Rack::Test::CookieJar object by dumping it ...