Sinatra is a Domain Specific Language (DSL) for quickly creating web applications in Ruby with minimal effort. It is an alternative to other Ruby web application frameworks such as Ruby on Rails, Merb, Nitro, Camping, and Rango.

learn more… | top users | synonyms

3
votes
0answers
94 views

how to halt from inside stream block in sinatra?

I am trying to respond with a HTTP error code from my streaming block, but the web server throws an exception. what is the proper way to do it in this context? ...
3
votes
0answers
105 views

Installing binaries on Heroku, specifically FontCustom

I'm building a web app on Heroku which will allow users to select n number of SVG icons, and package those icons into a font file for them. The core of the app is a project called FontCustom. Using a ...
2
votes
0answers
36 views

how to connect to Twilio API with ruby

Sorry this is a very basic question so it should be easy to answer! Using ruby and sinatra, I am trying to connect, via the api, to get details of my calls. The prescribed way to do this by twilio ...
2
votes
0answers
33 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
0answers
61 views

Service to compile SASS online: is it safe to allow users manually import Compass extensions?

I'm creating another HTML/CSS fiddle web app. It is based on Sinatra and supports SASS with Compass extensions. Here's how it works. 1) Require Compass and extensions: require 'compass' require ...
2
votes
0answers
28 views

ruby oracle-enhanced stuck connection after sleep

Thank you for your attention. We got a bit stuck with stuck connections with after some idle period and would appreciate any help or things to try. We're using v1.4.1 of ...
2
votes
0answers
57 views

Guard-Less won't respect output parameter

I just started my first Sinatra app, and I'm trying to get Guard-Less up and running. I already fixed an rb-readline issue which was preventing changes to the .less file from updating my CSS, but I'm ...
2
votes
0answers
87 views

send_file for a tempfile in Sinatra

I'm trying to use Sinatra's built-in send_file command (http://www.sinatrarb.com/intro.html#Sending%20Files) but it doesn't seem to be working for tempfiles. I basically do the following to zip an ...
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 ...
2
votes
0answers
116 views

Datamapper + Carrierwave store method not being called, only cache

I have a really simple sinatra app which uses datamapper and carrierwave. I've reduced the uploader to its minimum: class PhotoUploader < CarrierWave::Uploader::Base include ...
2
votes
0answers
65 views

Unable to change Sessions in Sinatra App

I am currently working with a Sinatra app, and struggling to re-set my session variable. This is not your typical "my session disappeared" issue - the problem is I can't alter or change the sessions I ...
2
votes
0answers
70 views

Facebook Sinatra app won't login

I am trying to develop a Facebook Application using the Ruby Heroku pack provided. I have experimented with this before but just created a new app to develop. I am having an issue where I am unable to ...
2
votes
0answers
314 views

Implementing hypermedia-driven API with Grape (or Sinatra)

I'm trying to implement a hypermedia-driven API using Grape mounted directly on top of Rack. Grape supports presenters ("entities") which seem to be the proper place for providing all related ...
2
votes
0answers
266 views

sinatra, omniauth, launchpad.net strategy unable to get request token

I'm attempting to pull a request token via https://launchpad.net using sinatra, and a custom omniauth strategy require 'omniauth-oauth' ...
2
votes
0answers
392 views

Heroku's Facebook Canvas app tutorial: oath error

I'm copy and pasting the code from Heroku's tutorial about building a canvas app to host on Heroku seen here. https://devcenter.heroku.com/articles/facebook-ruby However, I'm getting this error ...
1
vote
0answers
21 views

Detect when user leaves an event stream

I'm trying to make a chatroom from scratch using Sinatra. I need to detect when a user leaves the page. At first, I was thinking about using a Javascript onbeforeunload function, but then users could ...
1
vote
0answers
45 views

Error in post2/implementation.cpp: 1156 with passenger 4.0.2 and Ruby 2.0.0

I had deployed a Sinatra App using passenger gem version 3.0.19 on Ruby 1.9.2-p290 and it was working fine. When I upgraded my Ruby to 2.0.0 and passenger to 4.0.2, I am getting this line in ...
1
vote
0answers
22 views

wami-recorder and Sinatra

I need my users to record a voice clip. I'm using wami-recorder to take care of the voice recording on the client side. I am using the default javascript functions: ...
1
vote
0answers
56 views

Thin post request not working

I have a Thin server that runs a Sinatra app. In one file, I send a POST request, but it never arrives to its route. The same code works if I run it with bundle exec ruby myapp.rb but when it's run by ...
1
vote
0answers
40 views

Stylus css within Slim template with Sinatra

I'm using Sinatra, and I'm trying to use Slim for the HTML and Stylus for the the CSS. I'm unsure of what the correct way to do this is. What I've got at the moment works (locally, I've not tried ...
1
vote
0answers
34 views

Mongoid error in heroku: Database should be a Mongo::DB, not a nil class

I have a Sinatra app on heroku and it keeps crashing due to this error: app/vendor/bundle/ruby/1.9.1/gems/mongoid-1.2.14/lib/mongoid/config.rb:52 in 'master': Database should be a Mongo::DB, not a ...
1
vote
0answers
17 views

API versioning: who should do the version-based dispatching?

I'm developing an API using ruby and Sinatra for an already existing Rails App. I've separated the applications (no mounting logic), and these are therefore being deployed separately. On production ...
1
vote
0answers
37 views

Caching generated images with Sinatra, MiniMagick & nginx

I'm building a placeholder image site - similar enough to http://placekitten.com/ I've got a quick & dirty version working with a directory of big images, and a Sinatra route that randomises the ...
1
vote
0answers
31 views

Is there a better way to do it? ( Mongoid + TaggableWithContext )

is a few days I'm trying to learn how to use MongoID and I found myself faced with a problem: there is a better way to do this? Group.find_by(name: params[:group]).subgroups.tags.each do |l| ...
1
vote
0answers
17 views

Resque Optimisation on Heroku

I'm using Resque for heavy data processing on Heroku. Using NewRelic, I see that my tasks use somthing like 15% of CPU share and 50mo RAM per instance. I could process 5 jobs using only one dyno. ...
1
vote
0answers
59 views

Implementing Remember Me in Padrino 0.11 with new admin interface

I'm trying to implement a 'Remember Me' feature in the new Padrino 0.11 Admin interface, but having a little bit of trouble due to the differences between it and Rails. Basically, I'm following along ...
1
vote
0answers
42 views

Catching client connection disconnect in redis subscription

I'm trying to build a notifications system with Redis and Sinatra streams. However I can't seem to catch when connection closes down, so the blocking Redis subscription block seems to never close ...
1
vote
0answers
54 views

Why undefined method `email' for nil:NilClass in Sinatra/Padrino?

I'm following this tutorial http://www.padrinorb.com/guides/blog-tutorial and get a undefined method email for nil:NilClass error after assigning a user to all existing posts. Am I missing something? ...
1
vote
0answers
104 views

How can my Sinatra API manage user logins in client apps?

I'm building an API using Sinatra, which should be able to manage the user login sessions for any of the client apps that send requests to it. So far (for the login functionality) what I've got is a ...
1
vote
0answers
83 views

Strange errors when run ruby script in “Daemon.run” and no errors in case “bundle exec ruby”

I write sinatra based application with Daemons gem, app oAuth oh facebook and change cover of some page. So when i call daemon directly from "bundle exec ruby daemon.rb" no error in output, but when 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 ...
1
vote
0answers
38 views

ActiveSupport::Dependencies.autoload_paths: How to eager load?

I'm using ActiveSupport in a sinatra project, and following the advice of some peers I've been using ActiveSupport::Dependencies.autoload_paths to ease the loading of my classes in development. Now ...
1
vote
0answers
78 views

How do I test if Rack::Cache is functioning with Sinatra app on Heroku with memcache?

I'm making a web app where many users will be viewing a Google map, with updates on the map pulled in through ajax requests to the server. I want the response that is sent to the users to be cached, ...
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" => ...
1
vote
0answers
144 views

Stub multipart requests with webmock/rspec

I have been trying for a while to stub multipart requests using webmock and have not found a satisfying solution. Ideally, I would like to stub the request as follow: stub_request(:post, ...
1
vote
0answers
77 views

Encryption of sensitive data - DataMapper + Sinatra

All the time I read about web services that defend user data by encrypting everything. In case of theft of the database, everything is safe (provided we assume all the usual stuff of cryptography). ...
1
vote
0answers
145 views

Rails 3.2 Sinatra mounted app JSON Parse errors

I have a sinatra app mounted inside a rails 3.2.12 app which accepts JSON posts. The problem is that I get an error when one of the strings contains an asterisk(*) or a harsh(#) symbol. These are ...
1
vote
0answers
61 views

Unicode characters in HAML/Sinatra/Passenger errors

If I put this into my HAML, :ruby foo = "2".asdf %p ss I get, as expected, this error from Sinatra: NoMethodError at / undefined method `asdf' for "2":String But when I have a UNICODE ...
1
vote
0answers
146 views

Sinatra with Kaminari: cannot load such file — kaminari/sinatra

I want to realize pagination in Sinatra with kaminari. My Gemfile looks like this: source "https://rubygems.org" gem "sinatra" gem "activerecord", :require => "active_record" gem "mysql2" gem ...
1
vote
0answers
33 views

JS halts Sinatra redirect

I'm writing a blog app in Sinatra. Now I have two pages: '/' for listing all my posts '/write' for writing a new post I have an input 'textarea' and a submit button on '/write'. After writing a ...
1
vote
0answers
69 views

Google API for Blogger 3.0 error

I am trying to run sample code in Ruby to fetch blog posts list using Google's APIs for Blogger 3.0. This is the code: require 'rubygems' require 'google/api_client' require 'sinatra' require ...
1
vote
0answers
101 views

Ruby/Sinatra Hangs on HTTP Request

New to Ruby Fresh install ubuntu, ruby, rvm, gems, sinatra, nginx, passenger Attempting to run simple hello world app. I can get the app to run using thin, ie rackup config.ru. Unable to get ...
1
vote
0answers
39 views

Ruby(rails/sinatra) + EJB jar packaged to EAR on Torquebox

I'm trying to wrap my head around torquebox deployment options. I have old application with well-separated core business logic (in jar archive: cdi, ebj and all that stuff). I'd like to write frontend ...
1
vote
0answers
74 views

Sequel model doesn't find connection defined in a Sinatra app file

I'm building a simple Sinatra application to show some items stored in a database. I happened to find the gem sinatra-sequel that was supposed to make things easier. To mantain the modularity I'm ...
1
vote
0answers
56 views

Creating pages with Nesta on Heroku

I am looking to roll a simple CMS with Ruby and preferably Sinatra. www.nestacms.com looks like a terrific candidate. Some key objectives: Allow business users to add/edit/remove pages (not via ...
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
0answers
276 views

invalid grant when trying to authorize a server to server type application in ruby for accessing Google Calendar

I'm trying to create an app for myself that just directly connects to my calendar... but I never want to be involved with re-authenticating. I just want to code the authentication once and be done ...
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 ...
1
vote
0answers
122 views

Simple sinatra app with sqlite3 works when using WEBrick but not when using apache and passenger

I'm getting a "500 Internal Server Error" message when my app tries to write to my sqlite3 database. Everything works fine when I'm using WEBbrick, but I get the above error when I'm using Apache and ...
1
vote
0answers
115 views

Sinatra (or maybe not) issue on redirect; parameters passing to subsequent request

Something wrong is happening. I have a get endpoint which takes some parameters, does something and then redirects to '/'. Response generated by Sinatra before invoke looks good (right 'location' ...

1 2 3 4 5 11