Tagged Questions
0
votes
0answers
8 views
NewRelic reporting when using Rack::Timeout
We're running in an environment (Heroku) in which requests longer than 30 seconds will be interrupted. Therefore our web server (Unicorn) is set to abort after 15 seconds. We have noticed that when a ...
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 ...
0
votes
0answers
35 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 ...
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 ...
2
votes
2answers
69 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 ...
3
votes
2answers
102 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
42 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]]
...
1
vote
1answer
35 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 ...
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
1answer
84 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
213 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 ...
1
vote
0answers
106 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 ...
0
votes
1answer
23 views
Sinatra and “controllers” behaviour
Sinatra from Box does't allow separate action to file? Like this:
index.php
get '/' and other
user.php
get '/user/show/'
post '/user/new/' and other
How to say sinatra use user.php for ...
0
votes
1answer
89 views
How to access client X.509 certificate from Ruby web service (not Rails)?
How can I access the client X.509 certificate from a Ruby web service? The client is passing a client certificate, and it's fine that the browser is authenticating that for me, but I also want to look ...
2
votes
2answers
168 views
Undefined method `to_i' for Hash
I am trying to make a subdomain router for my Rack app but I ran into a problem. Here is my config.ru code:
require './controllers/subdomain'
require './controllers/www'
set :root, './'
run ...
1
vote
0answers
53 views
Calling Sinatra from Sinatra produces results different from external request
Following my question here.
So I am trying to do a smart redirect using this:
get "/category/:id/merge" do
#... setting @catalog_id and category
call env.merge("PATH_INFO" => ...
0
votes
1answer
55 views
Extract Ruby Parameters
Hi i am trying to make a rack controller similar to Rack::URLBuilder but i am having trouble extracting the parameters.
config.ru
run Example::Controller.new ([
"test" => Sinatra::Application
...
2
votes
1answer
52 views
Sinatra - Overriding Rack Classes
I have a tiny Sinatra project where I need to override Rack::Auth::Basic#valid?. Currently I have placed this override in the main file for my application, but that seems to clutter the source as ...
0
votes
1answer
64 views
Filtering sensitive information with Sinatra and Rack Logger
I maintain a Sinatra app that acts as a JSON API service. The API is consumed by another web app, as well as a mobile app.
What I'd like to do is have the Rack::CommonLogger exclude sensitive ...
0
votes
0answers
70 views
Subdomain App Routing
I'm trying to make a ruby based app for heroku that will use subdomains to route users to the correct application. After searching google i came up with a sloppy way of doing this, but i was wondering ...
0
votes
2answers
63 views
Need help organizing my files and routes in Sinatra (moving old PHP site to Sinatra)
Here is an example of how I would organize a site clothes.com in PHP:
index.php
style/
style.css
men/
index.php
style/
style.css
women/
index.php
style/
style.css
How would you ...
0
votes
2answers
36 views
Restarting only a portion of a rack/Sinatra app
The great thing about PHP is that if you have something like
clothes.com, clothes.com/men.php, clothes.com/women.php
Then if you only edit the men's page, only that particular "app" will be ...
0
votes
0answers
90 views
Rack + Sinatra * Celluloid == No Code Reloading?
In the :development environment of my jRuby+Trinidad application, I use code reloading; both under Sinatra, but also using Rack's code reloader. I find certain changes are missed by one reloader are ...
2
votes
1answer
77 views
Using a rackup file to custom configure an application instance
tl;dr How can I get a single Sinatra app to start up very differently on different servers via customizations to config.ru?
Background
I have a single web application written using Sinatra that's ...
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
158 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, ...
2
votes
1answer
240 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 ...
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
62 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!'
...
1
vote
1answer
67 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
520 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
vote
1answer
122 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'
...
2
votes
1answer
264 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
195 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 ...
2
votes
0answers
73 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 ...
0
votes
1answer
52 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?
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 ...
1
vote
1answer
207 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
...
1
vote
2answers
172 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
131 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
65 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
...
1
vote
1answer
62 views
Serve HTML files stored on S3 on a Rack app
Say I have some HTML documents stored on S3 likes this:
http://alan.aws-s3-bla-bla.com/posts/1.html
http://alan.aws-s3-bla-bla.com/posts/2.html
http://alan.aws-s3-bla-bla.com/posts/3.html
...
1
vote
2answers
181 views
Adaptive images for ruby based servers
I'd like to deliver images to client based on the size of the user screen, as in If I have High resolution image, and the user want to view it on a mobile I don't want to send the full HD image, ...
0
votes
0answers
55 views
Calling another action and getting the result from it
There are 2 "actions" in Sinatra
get '/default1' do
haml :"default1_view"
end
post '/default1' do
if params[:button_name] = "clear_filter"
#how do I return "get '/default1'" view from here?
...
0
votes
1answer
132 views
Using ajax with Sinatra to update the table
I do know how to use ajax with Sinatra for trivial operations such updating a simple text box or something like that: I simply have to send an ajax request and replace the content I want to on success ...
-2
votes
1answer
67 views
Ajax box Gmail style in Rack app [closed]
I have a Sinatra application. There is an page where I need to make an ajax request. I want it to look like Gmail ajax div looks when I click on "Inbox", "Drafts" or send a email to someone: yellow ...
1
vote
0answers
86 views
How do I set request payload in RSpec for Sinatra?
I'm trying to test my controller but my controller accept request payload for the whole json string which I can't seem to figure out how to set it in RSpec.
Here's my RSpec code
xit "should update ...



