Tagged Questions
1
vote
1answer
123 views
Why doesn't Ruby include built-in class reloading? [closed]
It seems like a common problem in Ruby applications in typical long-running process environments such as the rails server, that class-reloading to ease development pain is a difficult, but important ...
4
votes
2answers
329 views
2011 Web Scripting Languages and Dynamic Reloading
This has been bugging me for awhile now.
In a deployed PHP web application one can upload a changed php script and have the updated file picked up by the web server without having to restart.
The ...
7
votes
4answers
5k views
Reloading Sinatra app on every request on Windows
I've set up Rack::Reload according to this thread
# config.ru
require 'rubygems'
require 'sinatra'
set :environment, :development
require 'app'
run Sinatra::Application
# app.rb
class ...