Last active
August 31, 2017 09:51
-
-
Save mkarklins/7842bec597c72ac24ca15bf581a10694 to your computer and use it in GitHub Desktop.
Non-deterministic navigation rendering
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Rails = nil | |
require 'simple-navigation' | |
SimpleNavigation.config_file_paths << File.expand_path('../', __FILE__) | |
include SimpleNavigation::Helpers | |
threads = [] | |
20.times do | |
threads << Thread.new do | |
puts render_navigation | |
end | |
end | |
threads.map(&:join) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment