Sha256: 206cd9112f9dc8dc4af3cc4c81457cdc15816ac1929779ccf57fc41811ff641b
Contents?: true
Size: 747 Bytes
Versions: 1
Compression:
Stored size: 747 Bytes
Contents
class CodeReloader def initialize @timestamps = {} traverse_files do |path| @timestamps[path] = File.mtime(path) end end def reload traverse_files do |path| if @timestamps[path] != File.mtime(path) @timestamps[path] = File.mtime(path) load path # Log.info "⚡️ file reloaded #{path}" end end end private def traverse_files paths = PryMoves.reload_ruby_scripts[:monitor] except = PryMoves.reload_ruby_scripts[:except] paths.each do |root| files = Dir.glob("#{root}/**/*") files.each do |path| if path.end_with? '.rb' and not except.any? {|_| path.start_with? _} yield path end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pry-moves-1.0.3 | lib/pry-moves/code_reloader.rb |