├── .github └── workflows │ ├── build.yml │ ├── push_gem.yml │ └── standardrb.yaml ├── .gitignore ├── .rspec ├── .standard.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── bin ├── console ├── rspec └── setup ├── exe └── singed ├── lib ├── singed.rb └── singed │ ├── backtrace_cleaner_ext.rb │ ├── cli.rb │ ├── controller_ext.rb │ ├── flamegraph.rb │ ├── kernel_ext.rb │ ├── rack_middleware.rb │ ├── railtie.rb │ ├── report.rb │ └── rspec.rb ├── singed.gemspec └── spec ├── singed └── kernel_ext_spec.rb └── spec_helper.rb /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/push_gem.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/.github/workflows/push_gem.yml -------------------------------------------------------------------------------- /.github/workflows/standardrb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/.github/workflows/standardrb.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.standard.yml: -------------------------------------------------------------------------------- 1 | fix: true 2 | format: progress 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/bin/console -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/bin/rspec -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/bin/setup -------------------------------------------------------------------------------- /exe/singed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/exe/singed -------------------------------------------------------------------------------- /lib/singed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/lib/singed.rb -------------------------------------------------------------------------------- /lib/singed/backtrace_cleaner_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/lib/singed/backtrace_cleaner_ext.rb -------------------------------------------------------------------------------- /lib/singed/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/lib/singed/cli.rb -------------------------------------------------------------------------------- /lib/singed/controller_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/lib/singed/controller_ext.rb -------------------------------------------------------------------------------- /lib/singed/flamegraph.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/lib/singed/flamegraph.rb -------------------------------------------------------------------------------- /lib/singed/kernel_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/lib/singed/kernel_ext.rb -------------------------------------------------------------------------------- /lib/singed/rack_middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/lib/singed/rack_middleware.rb -------------------------------------------------------------------------------- /lib/singed/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/lib/singed/railtie.rb -------------------------------------------------------------------------------- /lib/singed/report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/lib/singed/report.rb -------------------------------------------------------------------------------- /lib/singed/rspec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/lib/singed/rspec.rb -------------------------------------------------------------------------------- /singed.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/singed.gemspec -------------------------------------------------------------------------------- /spec/singed/kernel_ext_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/spec/singed/kernel_ext_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubyatscale/singed/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------