Skip to content

Commit

Permalink
Ensuring load order is consistent across computers, fixing dependenci…
Browse files Browse the repository at this point in the history
…es issues
  • Loading branch information
LocoDelAssembly committed Oct 30, 2013
1 parent f250805 commit 7f4bdd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/taxonworks.rb
@@ -1,8 +1,8 @@


Dir[Rails.root.to_s + '/app/models/nomenclatural_rank/**/*.rb'].each {|file| require file }
Dir[Rails.root.to_s + '/app/models/nomenclatural_rank/**/*.rb'].sort.each {|file| require file }

Dir[Rails.root.to_s + '/app/models/taxon_name_relationship/**/*.rb'].each {|file| require file }
Dir[Rails.root.to_s + '/app/models/taxon_name_relationship/**/*.rb'].sort.each {|file| require file }



Expand Down

0 comments on commit 7f4bdd2

Please sign in to comment.