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

1
vote
1answer
78 views

Setting up third-party server to interact with Game Center

I'm thinking of adding a feature to my iOS game to allow players to create their own game levels, share them with other players, rate them, etc. There'd be a public repository of user-created levels, ...
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 ...
0
votes
0answers
60 views

Security issue with Slim.rb ? - Ruby / Sinatra

I am trying to secure an online 'slim' editor/tester. The user can enter slim syntax into a textarea that is using CodeMirror On submit the contents of the textarea are sent to Sinatra and treated ...
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? ...
0
votes
1answer
42 views

convert ruby api to a rest api web app [closed]

I have with me a ruby app that basically is an API server- calls can be made to that server's IP address and port- to access this app. Now, I wish to convert this into a regular ruby web app- which ...
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 ...
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 ...
0
votes
2answers
53 views

Why does the JSON returned from my Sinatra App give a syntax error?

I'm developing a Sinatra app, which returns JSON, e.g. get '/clients' do # do stuff response = { "success" => "true", "msg" => "Clients successfully retrieved", ...
0
votes
1answer
48 views

How do I require NumberHelper and make it work?

I'm trying to write a simple Sinatra thingy but I need ActionView::Helpers::NumberHelper from action pack. http://api.rubyonrails.org/classes/ActionView/Helpers/NumberHelper.html The question is, ...
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 ...
0
votes
1answer
37 views

Id format of Sinatra's form inputs

We try to write nested forms in Sinatra. We can pass easly some values as model fields: id="user[name]" But what if we want to submit also related models? Assume we want to add a user and his 3 ...
2
votes
2answers
93 views

Build routes on top of a common base route?

I have a common base path; say: get /base where I need to have basic auth performed and working for all sub calls under that path. Say: get /base/foo and get /base/bar. Looking at ...
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
45 views

How do I execute this command (curl) in rails? That is, what library contains a tool that allows me to pass an API key this way?

Here's the command I need to execute: (using the example API key) curl -v -u 1971800d4d82861d8f2c1651fea4d212:api_token \ -X GET https://www.toggl.com/api/v8/workspaces/777/tasks I am writing a ...
4
votes
2answers
301 views

Cannot access local Sinatra server from another computer on same network

I have a simple Sinatra server that I run through textmate but I can't access from another computer on the same network. I'm running Ruby 1.9.3p327 and Sinatra 1.4.1 on a Mac OS 10.8.3. Firewall is ...
1
vote
1answer
96 views

ruby sinatra remote connection

I'm trying to get hello world working remotely in sinatra: require 'sinatra' get '/' do "hello world" end locally it works fine: curl localhost:4567 hello world but when I try to access it ...
2
votes
3answers
86 views

Before-filter for all POST requests in Sinatra?

Is there a way to create a "before" filter to capture and pre-process all POST requests in Sinatra?
1
vote
1answer
30 views

HAML Folder in Views

I was wondering if anyone knew how to render a .haml template from a folder within the views folder. My directory setup is: -Views (Folder) -Get_Started (Folder) -step_1.haml -index.haml I ...
0
votes
1answer
65 views

Sinatra: concerning filters, halt and body on 404 error

I'm using Sinatra to develop this JSON API. The way I designed it, the error messages are also delivered in JSON in a specific format. The only difference is that they response will have a 4xx status ...
1
vote
1answer
39 views

can't require 'graylog2_exceptions' in sinatra

I have a sinatra app which runs on ruby 1.9.3-p327with gemset exampleGemset (.rvmrc file) when I run bundle exec gem list I get the gem friendlyfashion-graylog2_exceptions (1.3.2) but when I ...
1
vote
1answer
33 views

Unable to make a rake-tasks file and make it work properly

I decided to create a rake tasks for my Sinatra project and not to use the ready ones. #Rakefile require 'rake/testtask' require 'rake/clean' Dir.glob("tasks/*.rake").each { |r| import r } ...
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
1answer
61 views

Sinatra Net::HTTP causes timeouts on a simple request

I have a small simple Net::HTTP POST request to do to my Sinatra app: def collect(website) uri = URI("http://localhost:9393/save/#{website}") res = Net::HTTP.post_form(uri, 'q' => 'ruby', ...
1
vote
1answer
68 views

Heroku- Set environment variable during scheduled task

I'm trying to create a scheduled task on heroku that will set an environment variable for the application. How would I set this environment variable? Is there a way to invoke heroku config:add from ...
2
votes
1answer
45 views

Sinatra via rackup does not like inline templates

When calling sinatra itself, $ ruby tubemp.rb works. But via rackup it does not. The application, somehow cannot find the inline templates. #config.ru require 'rubygems' require 'sinatra' set ...
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
3answers
54 views

How to test controller actions that require a current session?

I'm adding more controllers to the admin section of the Padrino but I can't workout how to stub the current user or a session with Factory Girl or Mocha. What is a good way for testing controller ...
0
votes
0answers
79 views

sinatra & unicorn: working_directory with symlink not reloading cwd

I used this solution to get our rails & unicorn deployments to reload: unicorn working_directory with symlink But it doesn't solve the problem for our sinatra deployment (for whatever reason). ...
0
votes
3answers
71 views

Check if text input is empty if so dont convert to float

I am writing a small ruby app using sinatra and have a text input for input that I then convert to a flat using the .to_f method. However if the input is empty the .to_f still converts the empty ...
0
votes
2answers
50 views

Cant save form data using datamapper with sinatra

I am currently building a small app with Sinatra and have run up against an issue saving form data to the mysql database. Firstly I can confirm that the connection to the database is working as I am ...
0
votes
0answers
24 views

LoadError when write sinatra helpers using bundler

follow Sinatra write extension document, I write a ./lib/sinatra/test_helper.rb file containing my TestHelper, but using rackup start I got this error: ...
1
vote
1answer
56 views

Ruby: Resque queues instantly

I have the following code. Its job to is to send an email based on data given through the browser (using Sinatra). It sends an email to the address given after 20 seconds. When I run the program, It ...
0
votes
2answers
76 views

Haml partial with Sinatra

I am referencing a HAML partial within Sinatra: = haml :'_review', :locals => {:someLocal => someLocal} Seems like I am doing this wrong as I am including the underscore in the partial name. ...
0
votes
1answer
91 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
171 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 ...
0
votes
1answer
101 views

Ruby GeoJSON to KML

I have a Sinatra app that i'm posting GeoJSON (polygon) to.. I'm looking for a gem/ script to convert the JSON into a KML, before I att. to an e-mail (using mail gem). The closest thing I could find ...
0
votes
1answer
78 views

How do I perform a $geoIntersects query with Mongoid?

I'm using Sinatra and mongoid driver, now I'm trying to perform this query in mongoid, actually I have a geospatial (Polygon) field called 'geometry': db.states.find({ geometry: { ...
0
votes
1answer
337 views

Ember.js Controller & View Binding (The ember.js way…)

I apologize for the length of this question but I lack the insight to make it short. I am trying to learn Ember.js & I am having a little trouble understanding the relationship between a ...
0
votes
1answer
35 views

Sinatra / HAML - how can I use html_safe functionality?

I am getting this error. This is the line causing the problem; I'm trying to display html entities. %p= html_escape("&#10004") I understand html_safe is not available in Sinatra. What can I ...
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" => ...
0
votes
1answer
41 views

Setting Sinatra template options works locally, broken on Heroku

My Sinatra web site uses an admittedly ghetto way of switching between two languages, which works perfectly on my local machine, but not on Heroku. My app.rb is as follows: require 'sinatra' get ...
0
votes
1answer
81 views

JSON.parse, Sinatra and Webrick

Trying to figure out why this get '/json_test' do j = '{"key1": "val1"}' JSON.parse(j) end causes this error Internal Server Error can't convert Array into String using the pry gem I ...
0
votes
0answers
256 views

“No such file or directory - config.ru” with Passenger + Sinatra + Apache

I can't seem to pinpoint where the issue is, but I can't seem to get my app deployed to a sub URI. My gut says it's between my vhost config and my symlink, but this is my first time working with ...
1
vote
1answer
81 views

Heroku: Not Found & Process Exited

I'm not sure how I can debug this. Running this ruby/sinatra/thin app locally I have no issues whatsoever. On Heroku however the app doesn't seem to load, says "Not Found.". I'm not sure how to make ...
3
votes
1answer
111 views

css.erb file in Sinatra

Is it possible to have a css.erb file in Sinatra for serving images from AWS for example. I am pulling my static assets from AWS and can pull in an image in my view for example <%= image_tag( ...
0
votes
1answer
41 views

Sinatra cookie for client application

I have got a server for which I use sinatra and rack and a simple client application (Java/JavaScript, running on Tomcat) which should consume the services my server offers. My browser displays the ...
1
vote
1answer
92 views

Ruby DataMapper: model associations review, model updates after finalize, and associating slightly autonomous records

I am brand new to Ruby and even newer to DataMapper, or any ORM for that matter. I come from a Perl background and am not really an OOP type of developer. So I'm wandering in unknown territory here. ...
0
votes
1answer
85 views

Are my assets being served from AWS S3

Maybe a really daft question and please dont mark me down for this, but I finally got Heroku to compile its static assets in my S3 bucket with asset_sync. Now how do i know that the assets are in ...
0
votes
1answer
56 views

Issue with Data Mapper And Sinatra in Ruby 1.9.3

I am sure this is a simple issue but since I have looked so long I cannot see it. So I am running ruby 1.9.3 with Sinatra, sqlite3, datamapper, dm-sqlite-adapter. When I try to run Sinatra, I get ...

1 2 3 4 5 51