├── .github └── workflows │ └── test.yml ├── .gitignore ├── .rubocop.yml ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── active_record_tracer.gemspec ├── gemfiles ├── activerecord_71.gemfile ├── activerecord_72.gemfile ├── activerecord_80.gemfile └── activerecord_head.gemfile ├── lib ├── active_record_tracer.rb └── active_record_tracer │ ├── report.rb │ ├── reporter.rb │ └── version.rb └── test ├── reporting_test.rb ├── sample_class.rb └── test_helper.rb /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/active_record_tracer/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/active_record_tracer/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/active_record_tracer/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/active_record_tracer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/active_record_tracer/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/active_record_tracer/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/active_record_tracer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/active_record_tracer/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/active_record_tracer/HEAD/Rakefile -------------------------------------------------------------------------------- /active_record_tracer.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/active_record_tracer/HEAD/active_record_tracer.gemspec -------------------------------------------------------------------------------- /gemfiles/activerecord_71.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/active_record_tracer/HEAD/gemfiles/activerecord_71.gemfile -------------------------------------------------------------------------------- /gemfiles/activerecord_72.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/active_record_tracer/HEAD/gemfiles/activerecord_72.gemfile -------------------------------------------------------------------------------- /gemfiles/activerecord_80.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/active_record_tracer/HEAD/gemfiles/activerecord_80.gemfile -------------------------------------------------------------------------------- /gemfiles/activerecord_head.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/active_record_tracer/HEAD/gemfiles/activerecord_head.gemfile -------------------------------------------------------------------------------- /lib/active_record_tracer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/active_record_tracer/HEAD/lib/active_record_tracer.rb -------------------------------------------------------------------------------- /lib/active_record_tracer/report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/active_record_tracer/HEAD/lib/active_record_tracer/report.rb -------------------------------------------------------------------------------- /lib/active_record_tracer/reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/active_record_tracer/HEAD/lib/active_record_tracer/reporter.rb -------------------------------------------------------------------------------- /lib/active_record_tracer/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module ActiveRecordTracer 4 | VERSION = "0.1.0" 5 | end 6 | -------------------------------------------------------------------------------- /test/reporting_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/active_record_tracer/HEAD/test/reporting_test.rb -------------------------------------------------------------------------------- /test/sample_class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/active_record_tracer/HEAD/test/sample_class.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatkodima/active_record_tracer/HEAD/test/test_helper.rb --------------------------------------------------------------------------------