Skip to content
This repository has been archived by the owner on Feb 5, 2019. It is now read-only.

Ruby 1.8.5 compatibility

RISCfuture edited this page Sep 13, 2010 · 4 revisions

If you would like to make your copy of Autumn compatible with Ruby 1.8.5, please do the following:

In libs/daemon.rb

Find

self.class.class_variable_defined? :@@default

change it to

self.class.class_variables.include? "@@default"