Skip to content

Commit

Permalink
Don't crash with inherited models in subdirectories. (Check for file …
Browse files Browse the repository at this point in the history
…existance before requiring)
  • Loading branch information
CyborgMaster committed Mar 2, 2015
1 parent 46dc084 commit dd28720
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/annotate/annotate_models.rb
Expand Up @@ -386,7 +386,8 @@ def get_model_class(file)
get_loaded_model(model_path) or raise LoadError.new("cannot load a model from #{file}")
rescue LoadError
# this is for non-rails projects, which don't get Rails auto-require magic
if Kernel.require(file)
file_path = File.expand_path(file)
if File.file?(file_path) && Kernel.require(file_path)
retry
elsif model_path.match(/\//)
model_path = model_path.split('/')[1..-1].join('/').to_s
Expand Down

0 comments on commit dd28720

Please sign in to comment.