├── .github ├── dependabot.yml └── workflows │ └── tests.yml ├── .gitignore ├── .rubocop.yml ├── .ruby-version ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── activerecord-safer_migrations.gemspec ├── lib ├── active_record │ └── safer_migrations │ │ ├── migration.rb │ │ ├── postgresql_adapter.rb │ │ ├── railtie.rb │ │ ├── setting_helper.rb │ │ └── version.rb └── activerecord-safer_migrations.rb └── spec ├── active_record └── safer_migrations │ └── migration_spec.rb └── spec_helper.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/activerecord-safer_migrations/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/activerecord-safer_migrations/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.bundle 2 | Gemfile.lock 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/activerecord-safer_migrations/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.4 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/activerecord-safer_migrations/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/activerecord-safer_migrations/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/activerecord-safer_migrations/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/activerecord-safer_migrations/HEAD/README.md -------------------------------------------------------------------------------- /activerecord-safer_migrations.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/activerecord-safer_migrations/HEAD/activerecord-safer_migrations.gemspec -------------------------------------------------------------------------------- /lib/active_record/safer_migrations/migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/activerecord-safer_migrations/HEAD/lib/active_record/safer_migrations/migration.rb -------------------------------------------------------------------------------- /lib/active_record/safer_migrations/postgresql_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/activerecord-safer_migrations/HEAD/lib/active_record/safer_migrations/postgresql_adapter.rb -------------------------------------------------------------------------------- /lib/active_record/safer_migrations/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/activerecord-safer_migrations/HEAD/lib/active_record/safer_migrations/railtie.rb -------------------------------------------------------------------------------- /lib/active_record/safer_migrations/setting_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/activerecord-safer_migrations/HEAD/lib/active_record/safer_migrations/setting_helper.rb -------------------------------------------------------------------------------- /lib/active_record/safer_migrations/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/activerecord-safer_migrations/HEAD/lib/active_record/safer_migrations/version.rb -------------------------------------------------------------------------------- /lib/activerecord-safer_migrations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/activerecord-safer_migrations/HEAD/lib/activerecord-safer_migrations.rb -------------------------------------------------------------------------------- /spec/active_record/safer_migrations/migration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/activerecord-safer_migrations/HEAD/spec/active_record/safer_migrations/migration_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/activerecord-safer_migrations/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------