Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
589 views

Sinatra and session variables which are not being set

For some reason, session variables are not being set in my app. I am using Sinatra 1.2.1. Here is a piece of code: module GitWiki class App < Sinatra::Base configure do enable ...
3
votes
1answer
306 views

Shotgun problem with Sinatra - undefined methoddefault

I've been trying to run part of a Peepcode tutorial 'Meet Sinatra' with Shotgun (allows you to skip rebooting your web server for every change you make). The error threw up the following message: $ ...
3
votes
1answer
1k views

Running fork(2) from Windows with Cygwin. Possible?

I am trying to use a Ruby gem called shotgun that requires fork(2) command which I discovered is aa Linux command, and might be available in Cygwin. Is it possible to make it available through Windows ...
1
vote
1answer
33 views

How do I get ruby debugger to work in sinatra with shotgun?

Is there a way of running shotgun to allow for ruby debugger statements to run? the -d flag seems to be just for debugging output.
1
vote
1answer
72 views

shotgun for django?

I like shotgun server. but is there any similar package available for Django development ? shotgun reloads the server every time the code is changed , thus making the development process easier .. I ...
1
vote
1answer
773 views

Errors with shotgun gem and msvcrt-ruby18.dll when running my Sinatra app

Greetings, Every time I make a change to a Sinatra app I'm working on and try to refresh the browser (located at http://localhost:4567/) the browser will refresh and, the console window seems to ...
1
vote
1answer
1k views

shotgun gem explodes when starting a Sinatra app on windows

Sinatra app: require "rubygems" require "sinatra" get '/' do "Hello world. It's #{Time.now} at the server!" end windows XP with latest version of mongrel, sinatra, shotgun. ruby 1.8.6 ...
0
votes
2answers
252 views

Ruby Singleton and Shotgun

Im starting with Ruby and our team leader sends us to learn Sinatra, reloading the application changes is been done by Shotgun, my problem now is that i have a Singleton entity which i would love to ...
0
votes
0answers
420 views

Rack map to Rails 3 app raises “uninitialized constant ActiveSupport::Dependencies”

I'm trying to pull in a series of ruby apps into one rack app and when I request my Rails app (/users, LSSUsers::Application.instance), I get an uninitialized constant ActiveSupport::Dependencies when ...