├── .gitignore ├── README.rdoc ├── lib ├── delete_cmd.rb ├── functions.rb ├── gather_cmd.rb ├── gatherer.rb ├── probe.rb ├── scythe └── status_cmd.rb ├── probes ├── java │ └── scythe │ │ ├── Probe.java │ │ └── ProbeTest.java ├── js │ ├── node_probe.js │ └── test_node_probe.js ├── python3 │ └── python_probe.py └── ruby │ └── ruby_probe.rb └── spec ├── data ├── bad │ ├── duplicate_markers.py │ └── duplicate_markers.rb └── good │ ├── simple_branch.py │ └── simple_branch.rb ├── gatherer_spec.rb ├── object_spec.rb └── probe_spec.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfeathers/scythe/HEAD/.gitignore -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfeathers/scythe/HEAD/README.rdoc -------------------------------------------------------------------------------- /lib/delete_cmd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfeathers/scythe/HEAD/lib/delete_cmd.rb -------------------------------------------------------------------------------- /lib/functions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfeathers/scythe/HEAD/lib/functions.rb -------------------------------------------------------------------------------- /lib/gather_cmd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfeathers/scythe/HEAD/lib/gather_cmd.rb -------------------------------------------------------------------------------- /lib/gatherer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfeathers/scythe/HEAD/lib/gatherer.rb -------------------------------------------------------------------------------- /lib/probe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfeathers/scythe/HEAD/lib/probe.rb -------------------------------------------------------------------------------- /lib/scythe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfeathers/scythe/HEAD/lib/scythe -------------------------------------------------------------------------------- /lib/status_cmd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfeathers/scythe/HEAD/lib/status_cmd.rb -------------------------------------------------------------------------------- /probes/java/scythe/Probe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfeathers/scythe/HEAD/probes/java/scythe/Probe.java -------------------------------------------------------------------------------- /probes/java/scythe/ProbeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfeathers/scythe/HEAD/probes/java/scythe/ProbeTest.java -------------------------------------------------------------------------------- /probes/js/node_probe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfeathers/scythe/HEAD/probes/js/node_probe.js -------------------------------------------------------------------------------- /probes/js/test_node_probe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfeathers/scythe/HEAD/probes/js/test_node_probe.js -------------------------------------------------------------------------------- /probes/python3/python_probe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfeathers/scythe/HEAD/probes/python3/python_probe.py -------------------------------------------------------------------------------- /probes/ruby/ruby_probe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfeathers/scythe/HEAD/probes/ruby/ruby_probe.rb -------------------------------------------------------------------------------- /spec/data/bad/duplicate_markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfeathers/scythe/HEAD/spec/data/bad/duplicate_markers.py -------------------------------------------------------------------------------- /spec/data/bad/duplicate_markers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfeathers/scythe/HEAD/spec/data/bad/duplicate_markers.rb -------------------------------------------------------------------------------- /spec/data/good/simple_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfeathers/scythe/HEAD/spec/data/good/simple_branch.py -------------------------------------------------------------------------------- /spec/data/good/simple_branch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfeathers/scythe/HEAD/spec/data/good/simple_branch.rb -------------------------------------------------------------------------------- /spec/gatherer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfeathers/scythe/HEAD/spec/gatherer_spec.rb -------------------------------------------------------------------------------- /spec/object_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfeathers/scythe/HEAD/spec/object_spec.rb -------------------------------------------------------------------------------- /spec/probe_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelfeathers/scythe/HEAD/spec/probe_spec.rb --------------------------------------------------------------------------------