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.
0
votes
0answers
11 views
Sinatra, MySQL and ActiveRecord
how do I set up a simple sinatra app to use MySQL and ActiveRecord? I found some solutions, but none of them worked (maybe they are outdated):
...
0
votes
0answers
8 views
Getting best development performance out of Sinatra/JRuby
What is the best (in terms of performance) web server and application server that can be used to host sinatra based app?
the requirement is able to handle at least 1000 concurrent request on old ...
0
votes
0answers
19 views
Twilio Quickstart Code for SMS Conversations not incrementing
I'm using labcoder's Twilio-Hackpack-for-Heroku-and-Sinatra then am following the Ruby Quickstart on Twilio's site. I've literally copied and pasted the code and it refuses to increment the counter. ...
1
vote
1answer
22 views
How do I reference a tiny_tds connection in ruby/sinatra via database.yml (or other)?
I'm trying to figure out how to pull data from a database without the need to place a connection string at the top of each ruby file.
I'm learning the basics of ruby via a little Sinatra app I'm ...
0
votes
1answer
32 views
cannot load such file — rack/handler/puma
My Setup and the error
I got a error when I start my sinatra application with rackup and puma.
My config.ru file looks like this:
#\ -s puma
require './controller/main.rb'
run Sinatra::Application
...
1
vote
1answer
32 views
Exercise 50 :: http://ruby.learncodethehardway.org/book/ex50.html (error while running hello world using sinatra"
i am trying the ex:50 of learning Ruby the hard way ..which involves creating hello_world application using 'sinatra'
i am getting errors like :
ruby lib/gothonweb.rb
lib/gothonweb.rb:5:in ...
2
votes
0answers
35 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 ...
0
votes
0answers
18 views
Javascript Error on Sinatra with NGINX with Unicorn
I have made a site that runs on NGINX with Unicorn Web Server, and Sinatra. I created the site locally, and everything worked great. However, after uploading, the countdown on the home page is not ...
0
votes
1answer
44 views
Meteor.js apps and API's
I'm trying to work out if Meteor.js is a good fit for an app I would like to build.
The app will be completely web based but will require me to implement a RESTful API that exposes some of its ...
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 ...
1
vote
1answer
40 views
Render in HTML result of ajax call with Ruby / Sinatra
I have a jquery which uses parameters to query the Plivo api.
$(".localsearch").click(function() {
var country_iso = $("#local").val();
var region = $("#region").val();
var ...
0
votes
0answers
34 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 ...
0
votes
1answer
36 views
How to debug a jQuery AJAX call that is made to a Sinatra application?
I am using Ruby, Sinatra and a Postgres. I am working with the Plivo api.
There is a search page (search.erb) where a jQuery script collects data from a search box and then passes it to query the ...
0
votes
1answer
33 views
ember-auth sends OPTIONS requests instead of POST on my development machine
I have a Sinatra-based server which provides RESTful API for the service I'm working on. On my development machine in runs on localhost:9393.
At the same time my client application (built with ...
0
votes
1answer
23 views
Adding a table to datamapper gives me 'uninitialized constant' error
I'm trying to add a table to my app but when I do I get the error shown below. But I don't understand why? All I did was adding the Recommendation class.
class Item
include DataMapper::Resource
...
2
votes
1answer
56 views
Sinatra Request Object
I'm probably missing something painfully obvious here, but I can't seem to find an answer, or work it out myself. In Sinatra, they have a self.get method, which captures blocks, when a block is ...
2
votes
1answer
21 views
Returning gzipped content on a Sinatra app
I have a Sinatra app inside a RoR3 app.
I defined a Sinatra module and added the following redirect in my RoR3 routes
match '/v2', MySinatraModule, :anchor=>false
My Sinatra app is serving all ...
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 ...
-1
votes
0answers
9 views
Separating the Client from Service into a new Rails project
For a prototype I have a service written in Sinatra that has bunch of get metohds like this:
set :public_folder, "../"
get '/order_summary' do
content_type 'application/json'
conn.query("Select ...
0
votes
0answers
31 views
Sinatra + Mongo parallel requests
I'm developing a small script that does some data crunching. If I try to ab -n10 -c1 (benckmark sending requests one after another), the requests take ~750ms. If instead I try -c2 (send requests two ...
1
vote
0answers
19 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 ...
0
votes
0answers
32 views
Rewriting a Sinatra service with Rails REST API
I have a prototype that is written with Sinatra and it has methods like this in it:
get '/generic_summary' do
content_type 'application/json'
conn.query("Select * from ...
0
votes
1answer
36 views
Scheduling rake tasks with Sinatra
I'm trying to use either whenever/rufus-scheduler gems to schedule rake tasks to run in Sinatra. I can't seem it get the tasks to run.
Here is what I've been trying:
class App < Sinatra::Base
...
0
votes
1answer
23 views
Ruby/DataMapper: Problems with multiple many-to-many associations
I have implemented models for User-Group relationship, where one User can be a member and owner of one or more Groups and where one Group can have one or more owners and one or more members.
Now, the ...
0
votes
1answer
67 views
When using Sinatra and Sequel, my update query doesn't get executed
I am attempting to do an inline (i.e. not using a form and not going to another page) update (and, separately but same problem, delete) of a record.
I am using ruby, sinatra and SEQUEL with ...
0
votes
0answers
31 views
ruby sinatra shows page that no longer exists [closed]
I am trying to run sinatra on an Apache server and I have run into some trouble. About a week ago I wrote a simple "Hello World!" app on sinatra just os I could see it working but have now replaced it ...
0
votes
2answers
55 views
Use JSON result in query using Ruby, Sinatra and Posgresql
I am using Ruby and the Plivo api to create a subaccount.
The code is:
AUTH_ID = "my_id"
AUTH_TOKEN = "my_token"
p = RestAPI.new(AUTH_ID, AUTH_TOKEN)
params = {'name' => 'thegreatone'}
response ...
0
votes
2answers
20 views
How to access Sinatra Logger from a model?
Within a request, the Sinatra logger works fine:
get '/' do
logger.info "loading data"
...
However, from within a model, it doesn't work. The model does not have access to the logger:
class ...
-1
votes
0answers
28 views
How to clear local storage when using Sinatra redirect? [closed]
I have a program in Ruby/Sinatra that takes a shortcut string, and redirects the page to a url. For most pages, redirect(url) and redirect to(url) goes to the page as if I copy pasted the url into ...
0
votes
0answers
18 views
How to roll back an ActiveRecord migration using a rake task? (Not using Rails)
A Sinatra project I am working on is using MySQL and ActiveRecord and I need to be able to reverse the migrations every now and again to wipe the test database - eg when tests fail and leave crud.
My ...
0
votes
0answers
36 views
Attempt to return a value seems to not return anything…ever
This is a Sinatra app where I'm attempting to authenticate the client and then proxying that authentication data to another API. The problem is that when I try to return a value from the use block in ...
1
vote
0answers
41 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
2answers
46 views
Ruby with Sequel and Sinatra: form parameter passing
I am new to Ruby and Sinatra. I am attempting to pass parameters from an HTML form and insert them into a PostgreSQL database (on Heroku) with Sequel.
The connection to the database works because I ...
0
votes
1answer
27 views
Need ruby error message as instance variable
I have a custom error class like this:
class EntityCrudError < StandardError
attr_reader :action
attr_reader :modelName
attr_reader :entity
attr_reader :errors
def ...
3
votes
3answers
89 views
Checking multiple params in Ruby
These params come out of html inputs in erb templates (this code is in the main application.rb), and I am checking if they are filled before I add them to n.requestusers, which will become part of a ...
2
votes
1answer
58 views
Confusion about ways to use JSON in ruby sinatra application
I'm making a Ruby Sinatra application that uses mongomapper and most of my responses will be in the JSON form.
Confusion
Now I've come across a number of different things that have to do with JSON.
...
2
votes
2answers
67 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 ...
2
votes
2answers
40 views
Handling 405's in Sinatra
In Sinatra if I create a simple endpoint such as:
post '/users' do
'posted'
end
curl -v -X GET http://localhost:8080/users returns a 404, when I would expect a 405.
I've looked through the ...
1
vote
0answers
20 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
1answer
23 views
Creating new Datamapper resources (database entries) using .each
I want to take Google Custom Search API results and add them to a database using Datamapper.
I've managed to successfully set up and manually add some items to the database, so it seems like that is ...
0
votes
1answer
21 views
Jquery sortable serialized value to sinatra
I'm currently trying to resort a list with the help of Jquery sortable and my sinatra app. Just have one question. The serialize function of sortable generates a string with the new order of the list ...
1
vote
1answer
14 views
MongoMapper getting data from a query
I'm trying to return a User with MongoMapper:
Here's the user
1.9.3-p194 :004 > User.where(:email => 'redacted@gmail.com').all.count
=> 1
1.9.3-p194 :005 > User.where(:email => ...
-2
votes
1answer
48 views
Sinatra/Ruby new to programming - increasing an integer if a radio button is selected
I am very new to this and I am trying to do something pretty simple but I am not sure where to begin. I simply need to increase the "vote" count of a newly posted link from 0 to 10 if a radio button ...
1
vote
2answers
223 views
Bundle update for padrino app: could not find compatible versions for “tilt”
Running bundle update on my padrino app gives me:
Bundler could not find compatible versions for gem "tilt":
In Gemfile:
padrino (= 0.11.1) ruby depends on
tilt (~> 1.3.0) ruby
...
0
votes
0answers
50 views
Making default port 4567 accessible to public in Sinatra
I have a strange requirement for the project, Kind of a hack.
I want to run Sinatra on default 4567 port [not production] and yet accessible to public, This was possible in earlier versions Sinatra. ...
2
votes
1answer
64 views
What is the correct way to setup database with DataMapper and Sinatra on production server?
From the DataMapper document, I think there are at least four functions need to be called to have database setup:
DataMapper.setup(:default, 'sqlite:///path/to/project.db')
DataMapper.finalize
...
0
votes
1answer
22 views
Error when adding foreign key in ActiveRecord Migration
I have the following db/migrate ruby file. When I tried rake db:migrate, it gave error.
class CreateEmployers < ActiveRecord::Migration
def self.up
create_table :employers, ...
1
vote
0answers
53 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 ...
0
votes
0answers
28 views
Using Rspec to test Sinatra application helpers with settings
I have a Sinatra application with a configure block. I'm using a helpers class defined separately; the methods within the helpers class make use of the settings defined in the configure block of the ...
2
votes
1answer
31 views
Use multiple public directories in Sinatra
My sinatra application is contained in a gem. This means that the assets (css/js) live in the gem. This application writes on the fly generated images and serves them; currently writing into and ...



