├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── Appraisals ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── after_commit_everywhere.gemspec ├── bin ├── console └── setup ├── gemfiles ├── .bundle │ └── config ├── activerecord_6_0.gemfile ├── activerecord_6_1.gemfile ├── activerecord_7_0.gemfile ├── activerecord_7_1.gemfile ├── activerecord_7_2.gemfile ├── activerecord_8_0.gemfile └── activerecord_master.gemfile ├── lib ├── after_commit_everywhere.rb └── after_commit_everywhere │ ├── version.rb │ └── wrap.rb ├── spec ├── after_commit_everywhere_spec.rb ├── spec_helper.rb └── transactional_tests_spec.rb └── tmp └── .keep /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /Appraisals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/Appraisals -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/Rakefile -------------------------------------------------------------------------------- /after_commit_everywhere.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/after_commit_everywhere.gemspec -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/bin/setup -------------------------------------------------------------------------------- /gemfiles/.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_RETRY: "1" 3 | -------------------------------------------------------------------------------- /gemfiles/activerecord_6_0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/gemfiles/activerecord_6_0.gemfile -------------------------------------------------------------------------------- /gemfiles/activerecord_6_1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/gemfiles/activerecord_6_1.gemfile -------------------------------------------------------------------------------- /gemfiles/activerecord_7_0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/gemfiles/activerecord_7_0.gemfile -------------------------------------------------------------------------------- /gemfiles/activerecord_7_1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/gemfiles/activerecord_7_1.gemfile -------------------------------------------------------------------------------- /gemfiles/activerecord_7_2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/gemfiles/activerecord_7_2.gemfile -------------------------------------------------------------------------------- /gemfiles/activerecord_8_0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/gemfiles/activerecord_8_0.gemfile -------------------------------------------------------------------------------- /gemfiles/activerecord_master.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/gemfiles/activerecord_master.gemfile -------------------------------------------------------------------------------- /lib/after_commit_everywhere.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/lib/after_commit_everywhere.rb -------------------------------------------------------------------------------- /lib/after_commit_everywhere/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module AfterCommitEverywhere 4 | VERSION = "1.6.0" 5 | end 6 | -------------------------------------------------------------------------------- /lib/after_commit_everywhere/wrap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/lib/after_commit_everywhere/wrap.rb -------------------------------------------------------------------------------- /spec/after_commit_everywhere_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/spec/after_commit_everywhere_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/transactional_tests_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envek/after_commit_everywhere/HEAD/spec/transactional_tests_spec.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------