Skip to content

Commit

Permalink
[#967] fix obscure heisenbugs caused by class reloading after basic t…
Browse files Browse the repository at this point in the history
…ypes are registered
  • Loading branch information
al2o3cr committed Sep 25, 2011
1 parent 76ba85d commit 9593993
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions dryml/lib/dryml.rb
Expand Up @@ -9,6 +9,7 @@
require 'openssl'

ActiveSupport::Dependencies.autoload_paths |= [File.dirname(__FILE__)]
ActiveSupport::Dependencies.autoload_once_paths |= [File.dirname(__FILE__)]

# The Don't Repeat Yourself Markup Language
module Dryml
Expand Down
2 changes: 1 addition & 1 deletion hobo/lib/hobo.rb
Expand Up @@ -6,7 +6,7 @@
require 'hobo/extensions/array'

ActiveSupport::Dependencies.autoload_paths |= [File.dirname(__FILE__)]

ActiveSupport::Dependencies.autoload_once_paths |= [File.dirname(__FILE__)]

module Hobo

Expand Down
1 change: 1 addition & 0 deletions hobo_fields/lib/hobo_fields.rb
@@ -1,6 +1,7 @@
require 'hobo_support'

ActiveSupport::Dependencies.autoload_paths |= [ File.dirname(__FILE__) ]
ActiveSupport::Dependencies.autoload_once_paths |= [ File.dirname(__FILE__) ]

module Hobo
# Empty class to represent the boolean type.
Expand Down

0 comments on commit 9593993

Please sign in to comment.