├── .gitignore ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── fork_break.gemspec ├── lib ├── fork_break.rb └── fork_break │ ├── breakpoint_setter.rb │ ├── breakpoints.rb │ ├── null_breakpoint_setter.rb │ ├── process.rb │ └── version.rb └── spec ├── fork_break_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkbreak/fork_break/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format progress 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkbreak/fork_break/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkbreak/fork_break/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkbreak/fork_break/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkbreak/fork_break/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkbreak/fork_break/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkbreak/fork_break/HEAD/Rakefile -------------------------------------------------------------------------------- /fork_break.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkbreak/fork_break/HEAD/fork_break.gemspec -------------------------------------------------------------------------------- /lib/fork_break.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkbreak/fork_break/HEAD/lib/fork_break.rb -------------------------------------------------------------------------------- /lib/fork_break/breakpoint_setter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkbreak/fork_break/HEAD/lib/fork_break/breakpoint_setter.rb -------------------------------------------------------------------------------- /lib/fork_break/breakpoints.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkbreak/fork_break/HEAD/lib/fork_break/breakpoints.rb -------------------------------------------------------------------------------- /lib/fork_break/null_breakpoint_setter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkbreak/fork_break/HEAD/lib/fork_break/null_breakpoint_setter.rb -------------------------------------------------------------------------------- /lib/fork_break/process.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkbreak/fork_break/HEAD/lib/fork_break/process.rb -------------------------------------------------------------------------------- /lib/fork_break/version.rb: -------------------------------------------------------------------------------- 1 | module ForkBreak 2 | VERSION = '0.1.4'.freeze 3 | end 4 | -------------------------------------------------------------------------------- /spec/fork_break_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkbreak/fork_break/HEAD/spec/fork_break_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forkbreak/fork_break/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------