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.
1
vote
0answers
38 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 ...
2
votes
1answer
65 views
Cannot access sinatra app through the local network
I have rails application. If I start it with rails s (port 3000), it works perfectly both on my machine and every device on my local network via the ip address (192.168.0.3 in my case).
I have sinatra ...
0
votes
3answers
83 views
How to create a Rails-like before filter in Sinatra?
class Foo
def do_before
...
end
def do_something
...
Is there a way to run do_before method before each other method in the Foo class (like do_something)?
It seems that the Sinatra ...
0
votes
1answer
25 views
How do I configure omniauth use memcached as a backing store with google in classic sinatra app?
I am attempting to debug an issue where doing oauth with Google when there are multiple app servers behind an EC2 ELB is failing. I believe the issue is related to the fact that the oauth backing ...
0
votes
2answers
42 views
Disable HTML within XML escaping with Nokogiri
I'm trying to parse an XML document from the Google Directions API.
This is what I've got so far:
x = Nokogiri::XML(GoogleDirections.new("48170", "48104").xml)
...
3
votes
1answer
72 views
Sinatra Restarting Webrick Server after ctrl-c
require 'sinatra'
require 'rubygems'
class TestServer < Sinatra::Application
set :port, 22340
get '/' do
"Hello World"
end
run! if app_file == $0
end
Very Simple application ...
0
votes
0answers
29 views
Creating a web service with temporary uploads
Let's say I'm building a service where a user uploads a file to a server. The server processes the file and presents the results in the view. So the app doesn't persist the uploaded files, it only ...
0
votes
1answer
50 views
How to notify Websockets from Redis messages with sinatra, sinatra-websocket and redis-rb?
I have this https://gist.github.com/ohcibi/5418898 Gist which is basically just the example from the sinatra-websocket github page and a bit of Redis code pasted in. The part
settings.redis.subscribe ...
2
votes
1answer
41 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 ...
0
votes
2answers
40 views
Array with rand() works locally but not on heroku
The following works locally:
require 'sinatra'
get '/rand' do
["one", "two", "three"][rand(0..2)]
end
However, on heroku, I get a Internal Server Error.
Interestingly, this works:
get ...
0
votes
1answer
45 views
Sinatra cookies resetting between routes
so i'm trying to pass some strings through cookies between routes, but they keep getting reset and they don't get passed along. here is my code:
post '/start_game' do
@game = TicTacToe::Game.new
...
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|
...
0
votes
2answers
60 views
Deploying Sinatra app to Passenger 4.0.0.rc6 by vlad. On production server it keeps requiring :development group in Gemfile
On production server Passenger(4.0.0.rc6 + nginx) keeps requiring the :development group in Gemfile. After manually commenting them out from Gemfile the app runs fine. Otherwise, Passenger would fail ...
0
votes
2answers
33 views
How to get params value based on specific label?
I am parsing JSON and passing it as fields_array to render an erb template. This is a Sinatra app.
I have:
private
def fields_params
# example of parsed JSON, Company Name sometimes is Field6 but ...
0
votes
2answers
97 views
How to make holder.js work together with Sinatra
Holder.js needs a calling syntax of "/holder.js/200x300" which includes a slash. The slash before the size is not recognised by Sinatra routing and can only result in "Sinatra doesn’t know this ...
2
votes
1answer
44 views
How to build a hash in javascript and post it to the server
I'm building a RESTful web application with ruby + sinatra. The data is stored in a MongoDB database and I use MongoMapper to do this.
One of my models has a nested hash key:
{'Key' => ...
1
vote
1answer
52 views
Ruby Sinatra with consumer thread and job queue
I’m trying to create a very simple restful server. When it receives a request, I want to create a new job on a queue that can be handled by another thread while the current thread returns a response ...
-1
votes
1answer
28 views
Why datamapper always round a default decimal to a integer
I use Ruby sinatra with datamapper.
In my model I have a decimal property
property :sim_update_interval, Decimal, :precision=>10, :scale=>2 , :default=>0.9
The problem is:
Everytime I ...
2
votes
1answer
56 views
How to test Mailer on Sinatra post request?
I have Sinatra app which sends email on post request:
post '/test_mailer' do
Pony.mail(
to: 'me@mine.com.au',
from: 'me@mine.com.au',
subject: 'Howdy!',
body: erb(:body) )
end
So ...
0
votes
2answers
96 views
How do I do a method call every x seconds?
Is there a simple library that will allow me to do schedule a very simple task every x seconds specified by the web request coming in?
I am looking for something along the lines of:
...
1
vote
2answers
50 views
sinatra files in public folder being routed?
I have public folder in root of my project. Placed a couple of images, when I try to access them, it says "Sinatra doesn't know this ditty..."
Isn't default public folder supposed to be called ...
1
vote
1answer
117 views
Ruby Sinatra validation returning errors to the view
Rails dev new to sinatra...I'm trying to do some simple validations. When I try:
validates_presence_of :email, message: "Email cannot be blank."
@emails.errors.each do |e|
puts e
end
...
0
votes
0answers
31 views
Issue retrieving friendlists from Facebook through Koala gem
I am working with a project started by someone else which interacts with Facebook through the Koala gem. For some odd reason it will allow me to create friend lists but when I retrieve them I get ...
0
votes
1answer
61 views
How to set sinatra-authentication to use erb instead of haml?
I'm trying to set up the sinatra-authentication gem in a simple sinatra app, and running into an issue where sinatra can't find the correct views. I understand that sinatra-authentication uses haml ...
-1
votes
1answer
29 views
Rendering child nodes without the node label in rabl
I am using rabl to build and API in Sinatra.
The required JSON des not accept labels in some nodes
Using this Rabl template:
object @user
attributes :profile_photo => :profile_photo, :name => ...
0
votes
1answer
89 views
Connecting Search Form in Ruby with Sinatra
I have a search form I'm using with the YP (Yellow Pages) API, coded in Ruby, with Sinatra.
I've managed to connect all the dots getting the search to work on the back-end, but am having trouble ...
0
votes
1answer
64 views
Ember Data Mapping Issues with Sinatra api
I am very new to ember and am currently working on an (very) lightweight ember application backed by a sinatra api. I am having some issues with mapping the JSON provided by my api into the actual ...
0
votes
2answers
56 views
model.destroy() returning errors with sinatra backend
I'm having an issue getting my model.destroy method to work properly in backbone. This is my function
deleteEvent: function(){
var self = this;
var check = confirm("Are you sure you want to ...
2
votes
4answers
80 views
How will be the best way to render array of arrays in erb template?
I have an array [["Company Name", "Field6"], ["Email", "Field5"]]
And from that array I am creating array of fields with values:
[
[{:label=>"Company Name", :value=>"gfdgfd"}],
...
0
votes
0answers
155 views
AngularJS on S3 with REST API
I have an angularjs app that I want to host on amazon s3, is there a way to get it to play nice with a sinatra api hosted on heroku? I need to use ng-resource to make put requests to the heroku app, ...
-1
votes
1answer
70 views
how to get the ip of visitors with ruby?
I'm using ruby with Sinatra.
I want get the public ip of visitors and save it in a database, but a don't know how get tthe ip... Sorry, but I have not found a way to do that.
Guys can help me? Thank ...
0
votes
1answer
45 views
How to pass variables into Mail body template?
I am trying to write simple mailer in Sinatra which sends email with params variables.
require 'sinatra'
require 'mail'
class App < Sinatra::Base
post '/test_mailer' do
company = ...
0
votes
1answer
72 views
Application crashes with TypeError - nil can't be coerced into Float
I'm very new to programming and just tried to put my first project online and am getting an internal server error. I don't quite even know where to start, I'm running Ruby on Sinatra and hosting it on ...
0
votes
2answers
55 views
Sinatra app doesnt redirect to haml files
This is the Sinatra code that I wrote. All gems exist, the ruby files compiles perfectly but when i go to localhost:4567/ the sinatra app doesnt run. It takes me to the 'Sinatra doesnt know this ...
0
votes
1answer
43 views
Rails/Sinatra gem for time alerts
I have a web app which is suppose to allow users to set timers and it will notify them (via push notification) when the time is up. The user can also cancel these timers at any time.
Is there a gem ...
1
vote
2answers
32 views
Sinatra: Match arbitrary number of directory occurrences
I got this route:
get %r{/content.json/([\w]+)/([\w]+)/} do
...
end
and it matches "/content.json/123/abc".
But I would it like to match an arbitrary number of directories, like ...
0
votes
1answer
55 views
Why does the Cucumber test app fail to access Sinatra's settings in 1.4.x but not 1.3.x?
I was trying to upgrade from Sinatra 1.3.x to 1.4.2. The specs run fine, but Cucumber fails with:
undefined local variable or method `settings' for #<RechargeWorld:0x007ffbd606ba60> (NameError)
...
0
votes
0answers
47 views
Sinatra: /POST getting called multiple times
I have a basic Sinatra app that uploads a file to S3 and then preforms some analysis on the file by downloading it from S3, converting to a hash and then putting it into a database.
Currently I have ...
1
vote
1answer
44 views
ActiveRecord Unknown Attribute error (Sinatra)
Where am I going wrong here? I get this error:
unknown attribute: bar_id
I have these two classes:
class Foo < ActiveRecord::Base
belongs_to :bar
end
class Bar < ActiveRecord::Base
...
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
1answer
28 views
Error while trying to create first Sinatra extension
I'm delving into Ruby and Sinatra for the first time, and running through Alan Harris and Konstatin Haase's "Sinatra Up and Running". After sorting out my Ruby versions (using RVM), I haven't had any ...
0
votes
1answer
86 views
Navigation bar in Sinatra with Haml
I have a small Sinatra app using haml. I'd like to have a navigation bar on each page that will contain the menu, search, and directional scrolling arrows. Since this will be on every page I assume ...
1
vote
2answers
58 views
Espresso Enginery
i use framwork Espresso with Enginery generator (Ruby gems). I create new project, and not understand how work this application. I will work with Espresso. Explain me struct Expresso Application, ...
0
votes
1answer
76 views
Getting a sinatra app to serve from a vm
I'm running vmware fusion 5 on osx 10.8, my guest OS is Arch Linux, currently I'm able to ssh into the guest os perfectly fine via ssh 172.16.4.191 however when i try a simple sinatra app
require ...
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 ...
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 ...
1
vote
1answer
70 views
Really simple Sinatra LDAP authentication
I looked at the Sinatra docs and they only seem to reference HTTP auth. I'm looking for a really simple way to control access to routes based on a user being authorised/authenticated via an LDAP ...
0
votes
0answers
30 views
100% cpu after a few requests with rainbows and em-synchrony
I'm testing out an app I wrote using sinatra, sinatra-synchrony (layer above em-synchrony) and sequel (with the em-pg-sequel driver), and I'm finding that after 3 or 4 requests, ruby will max out cpu ...
2
votes
1answer
44 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 ...
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 ...


