Module: AtomRailsDebugger
- Defined in:
- lib/atom_rails_debugger.rb,
lib/atom_rails_debugger/version.rb
Constant Summary collapse
- VERSION =
"0.1.0"
Class Method Summary collapse
Class Method Details
.included(base) ⇒ Object
4 5 6 7 8 9 10 |
# File 'lib/atom_rails_debugger.rb', line 4 def self.included(base) File.open("/Users/thomaskadwill/Workspace/test-ruby-debug/breakpoints.txt", "r").each_line do |file_line| file, line = file_line.strip.split(":") Byebug::Breakpoint.add(file, line.to_i) end Byebug.start end |