Rack provides a minimal interface between webservers supporting Ruby and Ruby frameworks.
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
205 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
278 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 ...
0
votes
0answers
63 views
load path issue using 'bootstrap-sass' outside of Rails
I'm trying to use Bootstrap via the bootstrap-sass gem, using rack-server-pages.
I'm getting this error: File to import not found or unreadable: bootstrap.
My config.ru:
require 'rack-server-pages'
...
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
2answers
538 views
Trouble upgrading to rails 2.3.15 with rack 1.1.3
I'm getting the following error when trying to fire up script/console for my rails 2.3.15 app, after upgrading from rails 2.3.5. Does this mean the issue is with bundler 1.2.1 is not compatible with ...
1
vote
0answers
130 views
Installing Rack::Push Notification on Heroku
I am an iOS Developer and i'd like to try Rack::Push Notification (https://github.com/mattt/rack-push-notification) to send push notifications using Heroku.
But when i push the Rack::Push ...
0
votes
0answers
48 views
Submit form data using DELETE Method in a Rack App (in ROR3)
I have created a rack app in ROR3. One of the route point towards the rack app.
When I submit data using method POST/GET, I can see the env['rack.request.form_hash'] & ...
0
votes
1answer
74 views
Call rails app from another app
I have an application that has some model and services. I need those entities from another app from another directory. How can I share them? I don't want to use public API or REST interface via the ...
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 ...
0
votes
1answer
115 views
Updating rake gem to 10.0.3 outputs errors when pushing to Heroku?
In my Rails app, I just updated the rake gem from 0.9.2.2. to 10.0.3, and rack from 1.4.1 to 1.4.3.
Prior to updating the gems, when I did a git push to Heroku my output would just look like this:
...
-1
votes
2answers
67 views
when rails server start , how to Initialize some my own task
eg: I wanna run something automatically when start the server
I get a not so clear view about that, is there something about rake?
...
I do remove the stupid example
-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 ...
3
votes
1answer
384 views
Could not connect to any secondary or primary nodes at heroku
I uploaded a Sinatra app to heroku. Before that, I installed the free MongoHQ addon there. However, I have an error from heroku:
Moped::Errors::ConnectionFailure - Could not connect to any secondary ...
1
vote
1answer
56 views
Using RbConfig instead of Config in a Rack app
Although, it seems to be a popular issue, I didn't find anything relevant. The issue is that I keep having this kind of an error in the console while I'm using the Sinatra app
...
0
votes
1answer
55 views
How can authentication be shared among multiple (sub-)domains?
An unauthenticated user arrives at www.example.com.
The user logs in on: https://api.example.com/login
After successful login, the user is redirected to: https://dashboard.example.com
When going ...
2
votes
2answers
48 views
Return strings separated by line break in Rack application
I have a Sinatra application and a method
get '/page123' do
"string1\nstring2"
end
If I go to '/page123', I'll see only one string of string1 string2 without line break between them.
How do I ...
2
votes
3answers
101 views
“require if” in Ruby
Here is what I have in my rack app
#rb file
require 'pry'
class .....
#GemFile
group :development do
gem "pry"
gem "pry-nav"
end
Of course, in production it causes an error. How do make a ...
0
votes
0answers
75 views
Undefined method each for Rack::Flash::FlashHash
I'm using rack-flash3 gem in my Sinatra app. I have a partial called _flash. I try to do the following there
.row-fluid
.flash-notice
- flash.each do |type, message|
.alert{class: ...
0
votes
0answers
90 views
Search by string in Mongodb
I need to find the items from MongoDb db using Mongoid gem in rack application. Here is what I have:
items = items.any_of(
{item_id: q}, #ok
...
0
votes
1answer
85 views
Standardizing api responses in a modular Sinatra application
I'm developing an api as a modular Sinatra web application and would like to standardize the responses that are returned without having to do so explicitly. I thought this could be achieved by using ...
-1
votes
1answer
62 views
Store hash initialisation to a variable
There is a code in my Sinatra app
- if flash[:error]
.alert.alert-error
%button.close{:type =>" button", "data-dismiss"=>"alert"}x
= flash[:error]
- if ...
7
votes
1answer
707 views
How do I specify Origin Whitelist Options in Sinatra using Rack/Protection
I have a web app, lets say http://web.example.com making a POST request to http://api.example.com. The api server is running the latest version of Sinatra with rack protection enabled. I am getting ...
0
votes
0answers
87 views
Serving audio/mp3 using Rack
I am building an Android App which plays a music file from a server which is programmed in RoR. I tried using Rack as follows:
class RackFile
def initialize(name)
@file = ...
0
votes
1answer
77 views
Wrong number of arguments in lambda
In my sinatra app I have the code of
haml :"page123", locals:
{
items: (my_data.sort ->(item1, item2){ item2[:date] <=> item1[:date]}),
},
layout: need_layout?
...
0
votes
0answers
76 views
Mongoid - having a lot of timeouts
I have a lot of errors of timeout in Mongoid. The error says that it's taking place in connectable.rb#16. I found the source of this ...
1
vote
1answer
142 views
How to set the env['SERVER_NAME'] in rack/test?
In Sinatra tests, env['SERVER_NAME'] defaults to www.example.com. How can I set this to some arbitrary domain?
Capybara has .default_host method, but not using Capybara.
Or, is it possible to change ...
2
votes
1answer
327 views
Debugging Sinatra application
I install pry and try to use it.
gem "pry"
require 'pry'
#..........
binding.pry
But there are 3 issues :
I don't know to go to the next string (not to the next break point) or watch the ...
1
vote
1answer
41 views
Mongoid model with hardcoded data
I have a mongoid model
class MyMongoidModel
include Mongoid::Document
include Mongoid::Timestamps
field :name, :type => String
field :data_id, :type => Integer
...
1
vote
1answer
66 views
Advice on architecting my first real Ruby project [closed]
(Coming from java/perl/php, i fell in love with ruby)
I'm trying to write the following application while discovering the ruby way of designing an application. (Note: I'm not looking for code). I'm ...
3
votes
2answers
87 views
Google OpenID running example of Ruby code?
I went through quite a lot of Rails/Rails examples of Google OpenID authentication, but none of them worked properly. Most of them don't work because they are out of date. Even omniauth doesn't for ...
0
votes
1answer
115 views
How should I handle connection timeouts in Ruby Sequel?
I'm using Sequel to talk to a MySQL database from a Rack webapp. Sometimes, the application sits idle long enough that it exceeds wait_timeout on the server (which we've left at the default 8 hours). ...
2
votes
4answers
192 views
Ruby web pages without any framework from scratch [closed]
I'm trying to learn ruby for web from scratch. I know PHP and I'm new in ruby. I don't want to use any framework at beginning. Trying to create simple 2 - 3 pages for practice. I search a lot but not ...
2
votes
2answers
185 views
Sure you're not looking for /faye?
I am following this tutorial to the letter :
http://net.tutsplus.com/tutorials/ruby/how-to-use-faye-as-a-real-time-push-server-in-rails/
I have installed thin, faye and written the following in the ...
1
vote
0answers
90 views
Profiling Sinatra with rack-perftools_profiler (using net/http)
One of my Sinatra actions performs another request using net/http and computes something based on the response:
api_response = Net::HTTP.get_response(uri)
It works like a charm, but when I try to ...
1
vote
1answer
183 views
Writting 404 Error Page Route with Rack Static Page
How do you map a 404 Error Page in the config.ru file o a Rack Static Page (hosted on heroku)?
So far I have this in my config.ru file
use Rack::Static,
:urls => ["/css", "/images", "/fonts", ...
0
votes
1answer
377 views
Simplest possible rack app -> permission error
Here's the program(1.rb):
require 'rack'
my_rack = lambda { |env| [200, {}, ["Hello. The time is: #{Time.now}"]] }
handler = Rack::Handler::WEBrick
handler.run(my_rack, :PORT => 12_500)
...
1
vote
1answer
123 views
Apache HTTP vs Ruby Rack Speed Comparison for a Webserver
I was planning on hosting some static webpages and I was interested in using Ruby Rack to spice things up. I was wondering if anyone knew the speed comparison and how many requests could be handled ...
0
votes
1answer
115 views
CORS support for Rack/Sinatra error responses?
I'm writing a web service in Sinatra. I use middleware to add simple, dumb CORS support (by simply spamming Access-Control-Allow-Origin=* on all requests). I know there's a gem with more robust ...
0
votes
0answers
61 views
SCSS asset-url not working with RackBaseURI
I am using RackBaseURI to deploy multiple Rails apps on a demo server using a fairly standard Apache setup:
RackBaseURI /app1
<Directory /var/www/app1>
Options -MultiViews
...
1
vote
1answer
269 views
How to remove the “Server” HTTP response header from my Rack app
I am trying to remove the server information from the http response header in my ruby on rails application running on Heroku but I am stuck. Inspecting the response headers gives me:
Server:thin ...
0
votes
1answer
28 views
New routes overriding previously instantiated
I must be missing something from Rack's non-existant docs :) I'm trying to add additional webservice routes to ruhoh, and can get them to work at localhost:9292/test, but the new Rack::Builder object ...
1
vote
1answer
140 views
Disable file digests in Sprockets compile task
I am not using Rails.
I'm using sprockets' built in compiler task SprocketsTask. The source can be found here.
I want to disable the file digests that are appended to each file. So ...
1
vote
2answers
53 views
run thin outside of shell
I am using thin to run my Sinatra app but right now, when I close the shell, the server stops. Is it possible to run it as a process in the background and also see/minitor the logs like I do in shell?
...
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 ...
0
votes
1answer
80 views
Testing Rails/Rack applications using rails console
My simplistic understanding of the Rails stack is that it does the following (in general)
The input is a HTTP message (GET, POST, PUT, DELETE, HEAD), a URL, some (optional) cookies, a (optional) ...
1
vote
1answer
90 views
Is it possible to use Rack::Session middleware with async_sinatra?
Using Rack::Session in conjunction with async_sinatra's aroute methods doesn't seem to be possible. I gather this is because async_sinatra raises :async before the session middleware has a chance to ...
