Rack provides a minimal interface between webservers supporting Ruby and Ruby frameworks.
7
votes
1answer
252 views
how to force rack:session + sinatra to read “rack.session” from params instead of cookies
I am dealing with oauth 1.0 (twitter and flickr). Website works at port 80 and oauth server works at port 8080
Algorithm:
send ajax request to oauth server to check if user have valid access_token
...
0
votes
1answer
206 views
Sinatra with WebBrick and OpenSSL / HTTPS with Rack::Auth::Basic
I have read the tutorials and documentation on creating an OpenSSL certificate, and getting the Webbrick server running with it and Sinatra. This is all working - and thanks to prior posts on this. ...
1
vote
1answer
104 views
how to test sinatra app wrapped inside eventmachine?
I have this app:
require 'sinatra/base'
require 'thin'
class WebService < Sinatra::Base
get '/' do
'hello'
end
end
EM.run do
EventMachine.add_periodic_timer(1) do
puts 'hello'
...
0
votes
1answer
68 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 ...
0
votes
1answer
115 views
Why Rails applications run Garbage Collector at all?
I was pretty sure, that all Rack application servers (I had some experience with Unicorn and Passenger) were creating single process for every worker when they were created, and its state was ...
0
votes
2answers
55 views
How to determine if Rails is running from CLI, console or as server?
I have a middleware for announcing my application on the local network app using Bonjour, but it's also announcing the service when Rails is invoked from rake or through the console.
I'd like to ...
2
votes
1answer
83 views
Why are calls to a “rack” route showing up in my Rails cache log?
My Rails 3.2 app contains a health check route for an upstream load balancer:
# routes.rb
get 'health' => lambda { |env| [200, {"Content-Type" => 'application/json'}, [ 'Alive.' ] ] }
I am ...
0
votes
1answer
45 views
how to set environment type?
I have a Sinatra application that uses sinatra/config_file to parse a YAML configuration file. The file has entries for various environments such as development, test, production.
class MyApp < ...
0
votes
1answer
47 views
rack application, params as key
I'm requesting rack application with
curl -X POST -d '{"device":{"username":"123456","name":"some name","location":"Hidden"}}' http://localhost:9292/device
In the rack application I'm creating ...
0
votes
0answers
26 views
Unable to run Forge Gem/Rack Gem
I tried installing Forge on my MBP, OS 10.8.2. I already have installed Compass, Susy, Sass, and other gems so I'm used to it.
However, the install first failed saying it needed Rack installed. So, ...
0
votes
1answer
138 views
How could I use authlogic as authentication middleware for a sinatra app specifically split?
I am using authlogic in my application.
I also have split for A/B testing.
I want split to use authlogic for authentication instead the BasicAuthentication or no authentication.
So I set my ...
2
votes
1answer
118 views
Rails Request override params
I need to override params[:lang] throughout my entire application from en to us-english. From the url it should be en but within my entire application it needs to be us-english, when I then create ...
0
votes
1answer
240 views
When running rackup as a daemon, File.expand_path return / instead of the project folder
I'm not sure if there's something I did wrong here in some config files. When I run rackup -D, doing this:
File.expand_path(__FILE__)
actually returns /file.rb. And adding File.dirname somehow ...
0
votes
1answer
195 views
Rack::Deflater and gzip in rails app
I added use Rack::Deflater to config.ru in an attempt to serve gzipped css and js.
but when I load the page I still see that css and js are served and not the css.gz
should I see css.gz or js.gz? or ...
3
votes
2answers
111 views
Why Use Rack-Flash in Sinatra?
Forgive me if this is a noob question with an obvious answer, but what's the point of using rack-flash in Sinatra?
It feels like rack-flash functionality could easily be written yourself and a gem ...
0
votes
1answer
86 views
how can I redefine the ruby and rails request.ip and request.remote_ip methods?
I've a rails app and I'm trying to overload the request.remote_ip and request.ip in order to use the cloudflare header (HTTP_CF_CONNECTING_IP) if it's present...
I've tried these, but none of them ...
0
votes
1answer
48 views
EACCES error when creating a folder
I'm a Linux and Ruby noob, so please bear with me.
I'm writing a small Ruby app using Sinatra, and deploy it using Capistrano to a Linux server. I was able to successfully run the app no problem ...
0
votes
0answers
76 views
Global variable scoped to each request
Is it possible to have a global variable in Rails that is scoped to each request? Meaning, the variable doesn't persist across Rack requests.
I need this because I want to be able to raise events ...
0
votes
0answers
50 views
S3 Connect, get latest photo without a refresh of the entire page
Currently: I have a script that checks a directory on my machine for new files, that file is uploaded to a bucket. Hopes and dreams: the latest uploaded photo showing up without a refresh of the ...
1
vote
0answers
198 views
rake:assets precompile fails on undefined method `bytesize' for true:TrueClass
I'm using ruby 1.9 and when I run "rake assets:precompile" in my rails app, it fails and returned this:
rake aborted!
undefined method 'bytesize' for true:TrueClass
...
1
vote
0answers
101 views
Rails - set POST request limit (file upload)
I am building a file uploader for Rails, using CarrierWave. I am pretty happy about it's API, except that I don't seem to be able to cut file uploads that exceed a limit on the fly.
I found this ...
0
votes
1answer
153 views
How to use pry to access a Rack middleware instance?
I'm new to using Pry, and try as I might, I can't find the right commands to access a rack middleware instance that's being run with a Sinatra app. I've set binding.pry in the part of the app where I ...
1
vote
2answers
306 views
Installing passenger nginx
I installed the passenger gem, but it didn't work with my old nginx. So I am trying to install nginx from the passenger script.
I do $ sudo ./bin/passenger-install-nginx-module, which gives
* ...
0
votes
1answer
66 views
Sinatra gives me “not found” all the time instead of my page
Pretty simple Sinatra code
get '/Accept/:value' do
"Hello world"
end
not_found do
"not found"
end
when I go to ...
0
votes
1answer
291 views
Unable to use Warden in Sinatra App: env['warden'] returns nil
I'm writing a Sinatra Rack App and I want to use Warden for authentication. I'm using heroku's toolbelt so I use foreman to run my app. I've found some code that's presumably supposed to get this ...
4
votes
2answers
183 views
PJAX / Back-Button destroys Datatables
In our Rails 3.2 App with rack-pjax enabled appears the following Problem:
You click on a link, a page with datatable in it loads trough pjax. Everything is fine.
You click on antoher link the page ...
1
vote
1answer
51 views
getting rack mapped directory inside app
Say I have a config.ru like:
map '/foo' do
run MyApp
end
and a Sinatra app like:
class MyApp < Sinatra::Base
use Rack::Session::File, key: 'rack.session', domain: 'my.domain.com', path: ...
0
votes
2answers
141 views
Rack: How do you store the URL as a variable?
I am writing a simple static Rack app. Check out the config.ru code below:
use Rack::Static,
:urls => ["/elements", "/img", "/pages", "/users", "/css", "/js"],
:root => "archive"
map ...
1
vote
1answer
142 views
Protect all routes with Rack::Auth::Basic
I have a simple admin app that I'd like protected by basic HTTP auth. Here's what I have in my config.ru. This doesn't work. What am I missing?
use Rack::Auth::Basic do |user, pass|
pass == ...
1
vote
1answer
107 views
How can I make a ruby gem's binary file act as rackup?
I have a gem. It can optionally be run as a command line app myapp_cli, or as an app with a local web ui myapp_web.
When working on my app, I can run bundle exec myapp_cli for the command line UI, or
...
1
vote
2answers
467 views
How to setup URLs for static site with Ruby Rack on Heroku
My site is here.
It used to be a Django-powered blog. However I no longer update it so I just wanted to make it a static HTML site. I wget'ed it and moved it to Heroku with Ruby Rack.
However every ...
0
votes
1answer
121 views
Rack: Multiple session cookies for a single rack application
How can one interact with multiple sessions cookies (for different path or domains) in a single rack application?
For example, considering the following application using 3 locations:
...
3
votes
1answer
124 views
Sinatra haml page is called twice
get '/test' do
session[:my_session_id] = generate_random_id()
puts 'begin haml debug'
haml :"static/haml_page", :locals=>{:session_id => session[:my_session_id]}
end
I see ...
0
votes
0answers
68 views
Using https in Sinarta (Rack) application
I develop a Sinatra app which lets users to login through some external web sites. One of those sites requires having 2 https pages on my Sinatra web site: Accept and Reject:
...
1
vote
1answer
125 views
Bypass Rack::Cache for requests coming from a CDN
I have a Rails 3.2 app, deployed to heroku. I use caching with Rack::Cache and Amazon CloudFront.
For Requests that are served via CloudFront (assets, mostly), the caching layer with Rack::Cache is ...
2
votes
2answers
102 views
Serving non-public binary files from a Rack application
I am making a simple rack application that grant access to secured files after an authentication.
As the data in the files is sensitive, they are located in a non-public folder of the application.
...
1
vote
1answer
277 views
Passing an exclude option to Rack::SSL
Following the guidance here, updated for Rails 3.2.x, I expected to be able to configure Rack::SSL to use the SSL filters only if an https:// prefix is included:
config.force_ssl = true
...
4
votes
1answer
122 views
how do I stop sinatra from re-writing my header names?
Sinatra is camel-casing all the header names, causing issues with 'P3P'. Code:
require 'rubygems'
require 'sinatra'
configure :production do
# Configure stuff here you'll want to
# only be run ...
0
votes
1answer
77 views
How do I debug Omniauth and Rack applications?
I'm trying to authenticate over eBay using Rack + omniauth (in fact - omniauth-ebay). I have a correct configuration (instead of "111", "222"... there are real values):
#config.rb
use ...
2
votes
2answers
159 views
Unable to stop Webrick launched by “rackup”
I'm developing a Sinatra application and I'm using "rackup" to start Webrick. What should I do to stop it? Now I'm using Ctrl+Z and it seems like it stops. However when I try to start it again it will ...
0
votes
1answer
110 views
wash_out parse failures: SOAP errors instead of HTML errors
So, when you use the wash_out gem in Rails, and a client sends bad XML, the response is like:
<html>…
<body>
<h1>REXML::ParseException</h1>
…
Instead of a correct ...
3
votes
1answer
495 views
How to properly mount github's gollum wiki inside a Rails App?
I'm trying to provide a gollum based wiki for my app by mounting it as a rack application inside my routes.rb file:
require 'gollum/frontend/app'
#Gollun config
gollum_path = Rails.root
...
0
votes
1answer
46 views
Render SASS files correctly in File.read (inside PDF file)
I generate a pdf and have to include css in the generated file so that the styling is correct in the pdf. To do this I have
<%= File.read(Rails.root.join("app", "assets", "stylesheets", ...
0
votes
0answers
114 views
How can I redirect from https to http when using the rack-reverse-proxy gem?
I am using the rack-reverse-proxy gem in my rails 3.2 app (deployed to heroku) to redirect my blog from a subdomain to a subdirectory. I accomplish this with the following code:
...
2
votes
2answers
624 views
How to deploy Ruby Rack app with NGINX
I want to deploy a simple Ruby Rack service with NGINX. I read various things on the internet, none of which were helpful enough. Lets say I have this (in reality it's a bit more complex but still ...
0
votes
2answers
181 views
Why does Jekyll create new directories with index.html files in them when I create a new post?
Am I missing a setting somewhere? When the site is generated, the markdown files in the _posts directory get converted to directories themselves. Each of those directories has an index.html file in it ...
0
votes
1answer
211 views
How to persist mysql connection (mysql2 gem) with Ruby (no RoR)
I have a very simple web service using Rack, without Rails that I will contact MySQL on every valid connection. I want to persist the connection (for example in the constructor), so that on every ...
1
vote
2answers
325 views
How to run Rack-based application (not Rails) with Unicorn
How can I run a Rack-based application (not Rails) with unicorn? Let's assume I have a "hello world" response simple rack app with the name of server.ru, and config file at the same directory with the ...
0
votes
0answers
85 views
Rails on Passenger - producing multiple Rack PIDs for each worker process
I'm running Rails 3.2.7 (Ruby 1.8) on Passenger / Apache (on Ubuntu) and I have observed an issue that concerns me while trying to track down some serious memory bloat.
I've been running htop on the ...
2
votes
2answers
140 views
How to serve static files? (css)
In Camping, how's it best to serve static files, such as css?
Right now I have
class Style < R '/cards.css'
def get
@headers["Content-Type"] = "text/css"
...
