├── .github └── workflows │ └── main.yml ├── .gitignore ├── .rspec ├── .standard.yml ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib ├── schema_doctor.rb └── schema_doctor │ ├── analyzer.rb │ ├── exporter.rb │ ├── railtie.rb │ ├── schema_file.rb │ ├── tasks │ └── schemadoc.rake │ ├── utils.rb │ └── version.rb ├── schema_doctor.gemspec ├── sig └── schema_doctor.rbs └── spec ├── schema_doctor_spec.rb └── spec_helper.rb /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnit/schema_doctor/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnit/schema_doctor/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.standard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnit/schema_doctor/HEAD/.standard.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnit/schema_doctor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnit/schema_doctor/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnit/schema_doctor/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnit/schema_doctor/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnit/schema_doctor/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnit/schema_doctor/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnit/schema_doctor/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnit/schema_doctor/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/schema_doctor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnit/schema_doctor/HEAD/lib/schema_doctor.rb -------------------------------------------------------------------------------- /lib/schema_doctor/analyzer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnit/schema_doctor/HEAD/lib/schema_doctor/analyzer.rb -------------------------------------------------------------------------------- /lib/schema_doctor/exporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnit/schema_doctor/HEAD/lib/schema_doctor/exporter.rb -------------------------------------------------------------------------------- /lib/schema_doctor/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnit/schema_doctor/HEAD/lib/schema_doctor/railtie.rb -------------------------------------------------------------------------------- /lib/schema_doctor/schema_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnit/schema_doctor/HEAD/lib/schema_doctor/schema_file.rb -------------------------------------------------------------------------------- /lib/schema_doctor/tasks/schemadoc.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnit/schema_doctor/HEAD/lib/schema_doctor/tasks/schemadoc.rake -------------------------------------------------------------------------------- /lib/schema_doctor/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnit/schema_doctor/HEAD/lib/schema_doctor/utils.rb -------------------------------------------------------------------------------- /lib/schema_doctor/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module SchemaDoctor 4 | VERSION = "0.0.4" 5 | end 6 | -------------------------------------------------------------------------------- /schema_doctor.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnit/schema_doctor/HEAD/schema_doctor.gemspec -------------------------------------------------------------------------------- /sig/schema_doctor.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnit/schema_doctor/HEAD/sig/schema_doctor.rbs -------------------------------------------------------------------------------- /spec/schema_doctor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnit/schema_doctor/HEAD/spec/schema_doctor_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lnit/schema_doctor/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------