Shotgun is a Ruby gem, an automatically reloading version of the rackup command that's shipped with Rack.

learn more… | top users | synonyms

0
votes
0answers
100 views

shotgun gem not found

I have installed the shotgun gem but when I try and run it I get -bash: shotgun: command not found I see the gem here: '/usr/local/Cellar/ruby/1.9.3-p194/lib/ruby/gems/1.9.1/gems' as 'shotgun-0.9' ...
7
votes
1answer
1k views

Use different Procfile in development and production

I have a homemade Sinatra application for which I intend to use Heroku to host it. I use foreman and shotgun in development, with the following Procfile: web: shotgun config.ru -s thin -o 0.0.0.0 -p ...
3
votes
1answer
596 views

Set up shotgun to start thin with its debug flag

I am trying to get the debugger gem working with shotgun, and for the debugger to work I need the thin server to be started with "Debugging ON". If I run either: shotgun -p 1378 -s thin -d -o ...
2
votes
1answer
267 views

Why doesn't the sinatra-redirect-with-flash gem work with shotgun?

I want to show flash messages using sinatra-redirect-with-flash gem. Here's my ruby code: require 'sinatra' require 'sinatra/base' require 'sinatra/flash' require 'sinatra/redirect_with_flash' ...
0
votes
1answer
83 views

ssl.wrap_socket slowdown when running inside Maya or 3DS Max

I have been running into slowdown issues when creating a Shotgun object from within 3DS Max and Maya. This slowdown is a known issue. I spent some time today searching backwards through Shotgun's API ...
0
votes
1answer
245 views

Shotgun everytime got new sessions, can't store datain sessions

#reporter.rb require 'sinatra/base' class LoginScreen < Sinatra::Base #configure(:development) { set :session_secret, "something" } enable :sessions get('/login') ...
2
votes
2answers
259 views

Shotgun not using appropriate ruby version (macosx)

I am a bit new to this, so sorry if there are some missing infos initially. I installed ruby 1.8.7 via homebrew initially, so I did with shotgun as well. Then I realized that for a proper ...
1
vote
2answers
358 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
130 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 ...
9
votes
1answer
2k 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 ...
0
votes
2answers
501 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 ...
3
votes
1answer
496 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: $ ...
1
vote
1answer
974 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
2k 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 ...
4
votes
1answer
2k 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 ...