├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── abprof.gemspec ├── bin ├── console └── setup ├── examples ├── alt_ruby.rb ├── command_dsl.rb ├── for_loop_10k.rb ├── inline_ruby_1800.rb ├── inline_ruby_2500.rb ├── inlined_ruby.rb ├── measured_sleep.rb ├── multi_for_loop.rb ├── multi_sleep.rb ├── profiling_ruby.rb ├── simple_dsl.rb ├── sleep.rb ├── sleep_longer.rb └── vanilla_ruby.rb ├── exe ├── abcompare └── abprof ├── lib ├── abprof.rb └── abprof │ ├── benchmark_dsl.rb │ └── version.rb └── test ├── abprof_test.rb ├── dsl ├── simple_converge.rb └── simple_diverge.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/Rakefile -------------------------------------------------------------------------------- /abprof.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/abprof.gemspec -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/bin/setup -------------------------------------------------------------------------------- /examples/alt_ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/examples/alt_ruby.rb -------------------------------------------------------------------------------- /examples/command_dsl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/examples/command_dsl.rb -------------------------------------------------------------------------------- /examples/for_loop_10k.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/examples/for_loop_10k.rb -------------------------------------------------------------------------------- /examples/inline_ruby_1800.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/examples/inline_ruby_1800.rb -------------------------------------------------------------------------------- /examples/inline_ruby_2500.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/examples/inline_ruby_2500.rb -------------------------------------------------------------------------------- /examples/inlined_ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/examples/inlined_ruby.rb -------------------------------------------------------------------------------- /examples/measured_sleep.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/examples/measured_sleep.rb -------------------------------------------------------------------------------- /examples/multi_for_loop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/examples/multi_for_loop.rb -------------------------------------------------------------------------------- /examples/multi_sleep.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/examples/multi_sleep.rb -------------------------------------------------------------------------------- /examples/profiling_ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/examples/profiling_ruby.rb -------------------------------------------------------------------------------- /examples/simple_dsl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/examples/simple_dsl.rb -------------------------------------------------------------------------------- /examples/sleep.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/examples/sleep.rb -------------------------------------------------------------------------------- /examples/sleep_longer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/examples/sleep_longer.rb -------------------------------------------------------------------------------- /examples/vanilla_ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/examples/vanilla_ruby.rb -------------------------------------------------------------------------------- /exe/abcompare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/exe/abcompare -------------------------------------------------------------------------------- /exe/abprof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/exe/abprof -------------------------------------------------------------------------------- /lib/abprof.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/lib/abprof.rb -------------------------------------------------------------------------------- /lib/abprof/benchmark_dsl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/lib/abprof/benchmark_dsl.rb -------------------------------------------------------------------------------- /lib/abprof/version.rb: -------------------------------------------------------------------------------- 1 | module Abprof 2 | VERSION = "0.2.3" 3 | end 4 | -------------------------------------------------------------------------------- /test/abprof_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/test/abprof_test.rb -------------------------------------------------------------------------------- /test/dsl/simple_converge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/test/dsl/simple_converge.rb -------------------------------------------------------------------------------- /test/dsl/simple_diverge.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/test/dsl/simple_diverge.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appfolio/abprof/HEAD/test/test_helper.rb --------------------------------------------------------------------------------