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

0
votes
1answer
99 views

Getting Heroku to precompile assets to Amazon aws s3

Almost there with my issue of getting AWS S3 to serve my heroku app its static assets Everything works locally, i run my rake task and then the assets get precompiled to AWS ( though there is never ...
0
votes
2answers
131 views

ENV variables not being read sinatra

So i am trying to serve my static assets from Amazon s3 locally and for Heroku, I was loading a yml file but that doesn't work as Heroku doesn't accept symlinks. So i was given the suggestion to use ...
3
votes
3answers
417 views

Environment variables locally and Heroku

I have a sinatra app in which i have a yml file to set environment variables, i call them using this method module MyConfig def config environment = ENV["RACK_ENV"] || "development" ...
0
votes
1answer
134 views

Serve static assets to AWS s3 with Sinatra

Has anyone had any experience in serving assets to AWS S3 in a Sinatra app. I have installed the gem asset_sync as per the instructions here https://github.com/ejholmes/asset-sync-sinatra When i ...
0
votes
2answers
56 views

NoMethodError: undefined method '-@'

Here is my Sinatra code def self.sort_by_date_or_price(items, sort_by, sort_direction) if sort_by == :price items.sort_by{|x| sort_direction == :asc ? x.item.current_price : ...
0
votes
1answer
110 views

RSpec specs not running?

I'm having trouble running some rspec specs on a Sinatra app. I'm just learning Ruby, so unfortunately I don't know enough to fix the problem I'm having with code from a book (Service Oriented Design ...
0
votes
1answer
55 views

Extract Ruby Parameters

Hi i am trying to make a rack controller similar to Rack::URLBuilder but i am having trouble extracting the parameters. config.ru run Example::Controller.new ([ "test" => Sinatra::Application ...
1
vote
2answers
58 views

ORM for Ruby that able to generate Model/Migration scripts from existing database

Is there ORM for Ruby that able to generate Model/Migration scripts from existing database? i will use it with sinatra.
1
vote
2answers
120 views

Running sinatra using G-WAN

Is it possible to use Sinatra using G-wan web server? if it possible how to do it?
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
1answer
52 views

Sinatra - Overriding Rack Classes

I have a tiny Sinatra project where I need to override Rack::Auth::Basic#valid?. Currently I have placed this override in the main file for my application, but that seems to clutter the source as ...
1
vote
1answer
157 views

Dashing Dashboard Framework Passing Label & Value to a List Widget

To pass data into the view, the generic "job" is set up as so: SCHEDULER.every '1m', :first_in => 0 do |job| send_event('widget_id', { }) end In the view, it is processed as such: <li ...
0
votes
2answers
50 views

Datamapper - next record in model

I have a Sinatra app using datamapper for its database handling. The app works by displaying a separate page for each ID in a table. The model has an id field, which is a serial value and it's set up ...
0
votes
1answer
90 views

Using Sinatra and jQuery without redirecting on POST

I am trying to use jQuery to submit a form to my Sinatra app, but when POSTing via the AJAX, the Sinatra app is displaying a blank page. I would like it to stay on the same page, and update the ...
0
votes
1answer
55 views

Serving an image from behind a firewall with Ruby/Sinatra

I have a webapp that I've started writing in Sinatra that will need to fetch images and display them in HTML. The images are fetched from an API that sits behind a firewall along with the web server ...
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, ...
0
votes
1answer
64 views

Filtering sensitive information with Sinatra and Rack Logger

I maintain a Sinatra app that acts as a JSON API service. The API is consumed by another web app, as well as a mobile app. What I'd like to do is have the Rack::CommonLogger exclude sensitive ...
2
votes
1answer
232 views

Ruby (Sinatra) JSON.parse do not work with json data

I'm geting json object from knockout.js with ko.toJSON self.cmaterials = ko.observableArray([]); .... ko.computed(function() { $.ajax({ url: "/editcmat1", type: "PUT", ...
1
vote
2answers
140 views

Sinatra & HAML: auto-escape/convert unsafe HTML characters for a whole template?

I've got a little sinatra app I'm using to run a basic website. The content for said site is being provided by a client, and most of it is coming out of PDFs. Since I'd rather not have to manually ...
0
votes
0answers
131 views

Maximum call stack size exceeded in Sinatra/twitter bootstrap project

I'm using twitter bootstrap in my Sinatra project. So far everything has been ok, but now all of the sudden the error appeared: Uncaught RangeError: Maximum call stack size exceeded m.matchesSelector ...
1
vote
1answer
33 views

Application doesn't authenticate in canvas

My facebook application redirects the user a page where they give the application window correctly when they visit the website (http://toolshed.herokuapp.com/), but not when they visit the canvas page ...
1
vote
1answer
75 views

Caching a redirect to a static image in Sinatra

I have a Sinatra route for displaying a status image. While this simple solution works, I run into caching issues: get '/stream/:service/:stream_id.png' do # Building image_url omitted redirect ...
0
votes
2answers
56 views

How do I output a multidimensional hash in ERB files?

I need some help printing the values of my hash. In my "web.rb" file I have: class Main < Sinatra::Base j = {} j['Cordovan Communication'] = {:title => 'UX Lead', :className => ...
3
votes
2answers
844 views

Passenger: internal server error

I installed Apache, Passenger and Sinatra and deployed an app. It gives error when trying to access: An error occurred while starting up the preloader: it did not write a startup response in time. ...
0
votes
1answer
31 views

Error in loading SASS stylesheet

I am experimenting with SASS and am trying to load a simple sytlesheet using scss in my sinatra application. The route handler in main.rb is get('/styles.css'){ scss :styles } In the layout (using ...
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
1answer
212 views

Segfault Error in Sinatra After Upgrading to Ruby 2.0 Beta

I'm reporting this because I haven't found any other reports of code that worked previously, but now generates random Ruby segmentation fault errors after upgrading to the just-released Ruby 2.0.0-p0. ...
1
vote
1answer
52 views

Manually requesting the HAML file

If I want to manually request a particular HAML file in Sinatra, it looks like this works: get '/' do haml_file = File.open('views/index.haml').read haml haml_file end My question is, do you ...
0
votes
1answer
105 views

when is it most appropriate to use a micro framework? (instead of something like rails, django or catalyst) [closed]

I have spent some time familiarizing myself with rails (ruby), django...and other things like zope and pylons/pyramid (python), catalyst (perl) but often find myself wanting to use sinatra (ruby) ...
0
votes
0answers
31 views

How to exit prematurely in HAML?

In the middle of a HAML template, I want to just abort it and not compute anything more. :ruby exit This doesn't work and gives me a "SystemExit" error from Sinatra.
4
votes
1answer
68 views

HAML - a very weird indentation difference - bug?

This HAML %script{:type => "text/javascript"} :plain $(document).ready(function() { bar(); var foo = foo_func("#{}"); }); as expected gives this: <script ...
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 ...
2
votes
2answers
70 views

Why isn't this simple Ruby code working in HAML?

If I run this simple Ruby code regularly, it works fine: class String def add_two self + "2" end end puts "hello".add_two It prints "hello2" as it should. But this fails: :ruby class ...
3
votes
2answers
354 views

Sinatra build REST API documentation

I have been looking all night for a gem to generate an API documentation from my sinatra routes. I should be able to specify with inline comments. I have found ...
0
votes
1answer
66 views

stll no users table after migrating

I'm working along with the book Service Oriented Design with Ruby and Rails. In the first chapter, it creates a service with a Sinatra application using active record. I created the active record ...
0
votes
2answers
324 views

Infinite template loading using Angular JS routeprovider

Fixed It checking for an xhr request fixed the infinite loop get '/about' do erb :about, layout: !request.xhr? end I am using angular js and sinatra to create a page. Angular is handling my ...
1
vote
1answer
51 views

Process image request programmatically and return stream in Sinatra

This idea is currently just on the drawing board, and I was first wondering whether it is possible, then how it could be done. Say that an app in Sinatra has the following app file: #!/usr/bin/env ...
0
votes
0answers
71 views

Subdomain App Routing

I'm trying to make a ruby based app for heroku that will use subdomains to route users to the correct application. After searching google i came up with a sloppy way of doing this, but i was wondering ...
0
votes
2answers
63 views

Need help organizing my files and routes in Sinatra (moving old PHP site to Sinatra)

Here is an example of how I would organize a site clothes.com in PHP: index.php style/ style.css men/ index.php style/ style.css women/ index.php style/ style.css How would you ...
0
votes
2answers
36 views

Restarting only a portion of a rack/Sinatra app

The great thing about PHP is that if you have something like clothes.com, clothes.com/men.php, clothes.com/women.php Then if you only edit the men's page, only that particular "app" will be ...
0
votes
0answers
291 views

CORS trouble between Sinatra and AngularJS

I'm in troubles with a very basic web app. Here are my files: public/index.html <!DOCTYPE html> <html lang="en" data-ng-app> <body> <div ...
4
votes
1answer
96 views

Sinatra: Hot Code Pushes In Production?

When I push new code from my Sinatra application to my production server, I am currently triggering a restart of passenger by touching tmp/restart.txt, which loads the new changes. The problem is ...
2
votes
1answer
196 views

Error installing sinatra-contrib on Windows 7 with Ruby 2.0.0

I am attempting to install the sinatra-contrib gem on Windows 7, and I am getting the error shown below. Any ideas? U:\>gem install sinatra-contrib Temporarily enhancing PATH to include DevKit... ...
0
votes
2answers
113 views

Scraping track data from HTML?

I'd like to be able to scrape data from a track list page at 1001tracklists. A URL example is: http://www.1001tracklists.com/tracklist/25122_lange-intercity-podcast-115-2013-03-06.html Here is an ...
0
votes
1answer
62 views

Calling to_json on an array with different methods on each object

I have a sinatra service returning a json array of objects to my rails app. The objects are all of different types. I'm trying to pass the :methods option to the to_json call, but each object needs ...
0
votes
1answer
49 views

Sinatra, sending an empty page

This is the tail end of my code within a route block. What's happening is that the success_loader never renders and instead Sinatra sends a null response (page is blank) if v.test mydata = ...
0
votes
0answers
91 views

Rack + Sinatra * Celluloid == No Code Reloading?

In the :development environment of my jRuby+Trinidad application, I use code reloading; both under Sinatra, but also using Rack's code reloader. I find certain changes are missed by one reloader are ...
1
vote
1answer
32 views

Can I access Sintra settings outside of the website's application class?

Inside the Website class I can obtain root as settings.root. Outside the class I don't see how to get a handle to the class object. I could insert a instance variable @root = settings.root inside ...
0
votes
1answer
117 views

Automatically compiling persistent css without compass watch

I have a compass sinatra project based off of this example. As noted in this commit in a pull request and this pull request comment, sinatra is able to auto generate compiled css files on demand, as ...

1 3 4 5 6 7 51