├── .github └── workflows │ └── rspec.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── changelog.md ├── config └── initializers │ └── db_validator.rb ├── db_validator.gemspec ├── lib ├── db_validator.rb ├── db_validator │ ├── cli.rb │ ├── config_updater.rb │ ├── configuration.rb │ ├── formatters │ │ ├── json_formatter.rb │ │ └── message_formatter.rb │ ├── railtie.rb │ ├── reporter.rb │ ├── test_task.rb │ ├── validate_task.rb │ ├── validator.rb │ └── version.rb ├── generators │ └── db_validator │ │ ├── install_generator.rb │ │ └── templates │ │ └── initializer.rb └── tasks │ └── db_validator_tasks.rake ├── readme.md └── spec ├── db_validator ├── formatters │ └── json_formatter_spec.rb ├── reporter_spec.rb └── validator_spec.rb ├── generators └── db_validator │ └── install_generator_spec.rb ├── integration └── db_validator_spec.rb ├── spec_helper.rb ├── support └── custom_helpers.rb └── tmp └── config └── initializers └── db_validator.rb /.github/workflows/rspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/.github/workflows/rspec.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | --format documentation 3 | --color 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.3 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/changelog.md -------------------------------------------------------------------------------- /config/initializers/db_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/config/initializers/db_validator.rb -------------------------------------------------------------------------------- /db_validator.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/db_validator.gemspec -------------------------------------------------------------------------------- /lib/db_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/lib/db_validator.rb -------------------------------------------------------------------------------- /lib/db_validator/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/lib/db_validator/cli.rb -------------------------------------------------------------------------------- /lib/db_validator/config_updater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/lib/db_validator/config_updater.rb -------------------------------------------------------------------------------- /lib/db_validator/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/lib/db_validator/configuration.rb -------------------------------------------------------------------------------- /lib/db_validator/formatters/json_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/lib/db_validator/formatters/json_formatter.rb -------------------------------------------------------------------------------- /lib/db_validator/formatters/message_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/lib/db_validator/formatters/message_formatter.rb -------------------------------------------------------------------------------- /lib/db_validator/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/lib/db_validator/railtie.rb -------------------------------------------------------------------------------- /lib/db_validator/reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/lib/db_validator/reporter.rb -------------------------------------------------------------------------------- /lib/db_validator/test_task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/lib/db_validator/test_task.rb -------------------------------------------------------------------------------- /lib/db_validator/validate_task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/lib/db_validator/validate_task.rb -------------------------------------------------------------------------------- /lib/db_validator/validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/lib/db_validator/validator.rb -------------------------------------------------------------------------------- /lib/db_validator/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module DbValidator 4 | VERSION = "1.0.1" 5 | end 6 | -------------------------------------------------------------------------------- /lib/generators/db_validator/install_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/lib/generators/db_validator/install_generator.rb -------------------------------------------------------------------------------- /lib/generators/db_validator/templates/initializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/lib/generators/db_validator/templates/initializer.rb -------------------------------------------------------------------------------- /lib/tasks/db_validator_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/lib/tasks/db_validator_tasks.rake -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/readme.md -------------------------------------------------------------------------------- /spec/db_validator/formatters/json_formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/spec/db_validator/formatters/json_formatter_spec.rb -------------------------------------------------------------------------------- /spec/db_validator/reporter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/spec/db_validator/reporter_spec.rb -------------------------------------------------------------------------------- /spec/db_validator/validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/spec/db_validator/validator_spec.rb -------------------------------------------------------------------------------- /spec/generators/db_validator/install_generator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/spec/generators/db_validator/install_generator_spec.rb -------------------------------------------------------------------------------- /spec/integration/db_validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/spec/integration/db_validator_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/custom_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/spec/support/custom_helpers.rb -------------------------------------------------------------------------------- /spec/tmp/config/initializers/db_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzysztoff1/db-validator/HEAD/spec/tmp/config/initializers/db_validator.rb --------------------------------------------------------------------------------