├── .github ├── CODEOWNERS └── workflows │ └── checks.yml ├── .gitignore ├── .rubocop.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── lib └── pronto │ ├── reek.rb │ └── reek │ └── version.rb ├── pronto-reek.gemspec └── spec ├── fixtures └── test.git │ ├── git │ ├── HEAD │ ├── config │ ├── index │ ├── logs │ │ ├── HEAD │ │ └── refs │ │ │ └── heads │ │ │ ├── master │ │ │ └── rename_name │ ├── objects │ │ ├── 36 │ │ │ └── 4282d21844f82027aa095261c696e9e1d4dfe6 │ │ ├── 55 │ │ │ └── b2b422b4b932c18f54d6e7912ea4be597435a9 │ │ ├── 4a │ │ │ └── c5638a79e9a9f80ce72d6161a3eaab3d7e0e8d │ │ ├── 4c │ │ │ └── 9b9fe475038ddd038fa1a48e8ab900ca1410af │ │ ├── 6c │ │ │ └── 491acf9a5f1809912a3580d459c9331357884d │ │ ├── a3 │ │ │ └── c5b76f6ef8783badc57413fa6baa984b5f37fd │ │ ├── c0 │ │ │ └── 4b3122f4998c3256cc7ea84c7d9f508679457e │ │ ├── ca │ │ │ └── bdef1eaec085cc16c529a580e7e57dbca3ca8e │ │ └── f3 │ │ │ └── da6fc8a5904384adb9fbf8cf6b4ac70cb62c17 │ └── refs │ │ └── heads │ │ ├── master │ │ └── rename_name │ └── hello.rb ├── pronto └── reek_spec.rb └── spec_helper.rb /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | pkg/* 2 | *.gem 3 | .bundle 4 | .DS_Store 5 | Gemfile.lock 6 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/pronto/reek.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/lib/pronto/reek.rb -------------------------------------------------------------------------------- /lib/pronto/reek/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/lib/pronto/reek/version.rb -------------------------------------------------------------------------------- /pronto-reek.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/pronto-reek.gemspec -------------------------------------------------------------------------------- /spec/fixtures/test.git/git/HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/spec/fixtures/test.git/git/HEAD -------------------------------------------------------------------------------- /spec/fixtures/test.git/git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/spec/fixtures/test.git/git/config -------------------------------------------------------------------------------- /spec/fixtures/test.git/git/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/spec/fixtures/test.git/git/index -------------------------------------------------------------------------------- /spec/fixtures/test.git/git/logs/HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/spec/fixtures/test.git/git/logs/HEAD -------------------------------------------------------------------------------- /spec/fixtures/test.git/git/logs/refs/heads/master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/spec/fixtures/test.git/git/logs/refs/heads/master -------------------------------------------------------------------------------- /spec/fixtures/test.git/git/logs/refs/heads/rename_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/spec/fixtures/test.git/git/logs/refs/heads/rename_name -------------------------------------------------------------------------------- /spec/fixtures/test.git/git/objects/36/4282d21844f82027aa095261c696e9e1d4dfe6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/spec/fixtures/test.git/git/objects/36/4282d21844f82027aa095261c696e9e1d4dfe6 -------------------------------------------------------------------------------- /spec/fixtures/test.git/git/objects/4a/c5638a79e9a9f80ce72d6161a3eaab3d7e0e8d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/spec/fixtures/test.git/git/objects/4a/c5638a79e9a9f80ce72d6161a3eaab3d7e0e8d -------------------------------------------------------------------------------- /spec/fixtures/test.git/git/objects/4c/9b9fe475038ddd038fa1a48e8ab900ca1410af: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/spec/fixtures/test.git/git/objects/4c/9b9fe475038ddd038fa1a48e8ab900ca1410af -------------------------------------------------------------------------------- /spec/fixtures/test.git/git/objects/55/b2b422b4b932c18f54d6e7912ea4be597435a9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/spec/fixtures/test.git/git/objects/55/b2b422b4b932c18f54d6e7912ea4be597435a9 -------------------------------------------------------------------------------- /spec/fixtures/test.git/git/objects/6c/491acf9a5f1809912a3580d459c9331357884d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/spec/fixtures/test.git/git/objects/6c/491acf9a5f1809912a3580d459c9331357884d -------------------------------------------------------------------------------- /spec/fixtures/test.git/git/objects/a3/c5b76f6ef8783badc57413fa6baa984b5f37fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/spec/fixtures/test.git/git/objects/a3/c5b76f6ef8783badc57413fa6baa984b5f37fd -------------------------------------------------------------------------------- /spec/fixtures/test.git/git/objects/c0/4b3122f4998c3256cc7ea84c7d9f508679457e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/spec/fixtures/test.git/git/objects/c0/4b3122f4998c3256cc7ea84c7d9f508679457e -------------------------------------------------------------------------------- /spec/fixtures/test.git/git/objects/ca/bdef1eaec085cc16c529a580e7e57dbca3ca8e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/spec/fixtures/test.git/git/objects/ca/bdef1eaec085cc16c529a580e7e57dbca3ca8e -------------------------------------------------------------------------------- /spec/fixtures/test.git/git/objects/f3/da6fc8a5904384adb9fbf8cf6b4ac70cb62c17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/spec/fixtures/test.git/git/objects/f3/da6fc8a5904384adb9fbf8cf6b4ac70cb62c17 -------------------------------------------------------------------------------- /spec/fixtures/test.git/git/refs/heads/master: -------------------------------------------------------------------------------- 1 | c04b3122f4998c3256cc7ea84c7d9f508679457e 2 | -------------------------------------------------------------------------------- /spec/fixtures/test.git/git/refs/heads/rename_name: -------------------------------------------------------------------------------- 1 | 6c491acf9a5f1809912a3580d459c9331357884d 2 | -------------------------------------------------------------------------------- /spec/fixtures/test.git/hello.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/spec/fixtures/test.git/hello.rb -------------------------------------------------------------------------------- /spec/pronto/reek_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/spec/pronto/reek_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prontolabs/pronto-reek/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------