Skip to content

Commit

Permalink
Merge pull request #172 from johannespetzold/patch-1
Browse files Browse the repository at this point in the history
avoid duplicate require due to symlinks
  • Loading branch information
Daniel Selans committed May 5, 2016
2 parents 005842c + 438c215 commit 0df17f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/centurion.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Dir[File.join(File.dirname(__FILE__), 'core_ext', '*')].each do |file|
require file
require File.realpath(file)
end

Dir[File.join(File.dirname(__FILE__), 'centurion', '*')].each do |file|
require file
require File.realpath(file)
end

module Centurion; end

0 comments on commit 0df17f3

Please sign in to comment.