├── .github └── workflows │ ├── lint.yml │ └── test.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .standard.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── exe └── rubocop-director ├── lib ├── rubocop_director.rb └── rubocop_director │ ├── commands │ ├── generate_config.rb │ └── plan.rb │ ├── file_stats_builder.rb │ ├── git_log_stats.rb │ ├── output_formatter.rb │ ├── rubocop_stats.rb │ ├── runner.rb │ └── version.rb ├── rubocop_director.gemspec └── spec ├── rubocop_director ├── commands │ ├── generate_config_spec.rb │ └── plan_spec.rb ├── file_stats_builder_spec.rb ├── git_log_stats_spec.rb ├── ouput_formatter_spec.rb ├── rubocop_stats_spec.rb └── runner_spec.rb └── spec_helper.rb /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.standard.yml: -------------------------------------------------------------------------------- 1 | ruby_version: 3.2 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/Rakefile -------------------------------------------------------------------------------- /exe/rubocop-director: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/exe/rubocop-director -------------------------------------------------------------------------------- /lib/rubocop_director.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/lib/rubocop_director.rb -------------------------------------------------------------------------------- /lib/rubocop_director/commands/generate_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/lib/rubocop_director/commands/generate_config.rb -------------------------------------------------------------------------------- /lib/rubocop_director/commands/plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/lib/rubocop_director/commands/plan.rb -------------------------------------------------------------------------------- /lib/rubocop_director/file_stats_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/lib/rubocop_director/file_stats_builder.rb -------------------------------------------------------------------------------- /lib/rubocop_director/git_log_stats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/lib/rubocop_director/git_log_stats.rb -------------------------------------------------------------------------------- /lib/rubocop_director/output_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/lib/rubocop_director/output_formatter.rb -------------------------------------------------------------------------------- /lib/rubocop_director/rubocop_stats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/lib/rubocop_director/rubocop_stats.rb -------------------------------------------------------------------------------- /lib/rubocop_director/runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/lib/rubocop_director/runner.rb -------------------------------------------------------------------------------- /lib/rubocop_director/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module RubocopDirector 4 | VERSION = "0.3.0" 5 | end 6 | -------------------------------------------------------------------------------- /rubocop_director.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/rubocop_director.gemspec -------------------------------------------------------------------------------- /spec/rubocop_director/commands/generate_config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/spec/rubocop_director/commands/generate_config_spec.rb -------------------------------------------------------------------------------- /spec/rubocop_director/commands/plan_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/spec/rubocop_director/commands/plan_spec.rb -------------------------------------------------------------------------------- /spec/rubocop_director/file_stats_builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/spec/rubocop_director/file_stats_builder_spec.rb -------------------------------------------------------------------------------- /spec/rubocop_director/git_log_stats_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/spec/rubocop_director/git_log_stats_spec.rb -------------------------------------------------------------------------------- /spec/rubocop_director/ouput_formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/spec/rubocop_director/ouput_formatter_spec.rb -------------------------------------------------------------------------------- /spec/rubocop_director/rubocop_stats_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/spec/rubocop_director/rubocop_stats_spec.rb -------------------------------------------------------------------------------- /spec/rubocop_director/runner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/spec/rubocop_director/runner_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryTsepelev/rubocop_director/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------