├── .github └── workflows │ └── test.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── default.yml ├── exe └── slimcop ├── lib ├── slimcop.rb └── slimcop │ ├── ruby_extractor.rb │ └── version.rb ├── slimcop.gemspec └── spec ├── fixtures └── dummy.slim ├── slimcop └── ruby_extractor_spec.rb └── spec_helper.rb /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/slimcop/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/slimcop/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/slimcop/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/slimcop/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/slimcop/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/slimcop/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/slimcop/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/slimcop/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/slimcop/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/slimcop/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/slimcop/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/slimcop/HEAD/bin/setup -------------------------------------------------------------------------------- /default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/slimcop/HEAD/default.yml -------------------------------------------------------------------------------- /exe/slimcop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/slimcop/HEAD/exe/slimcop -------------------------------------------------------------------------------- /lib/slimcop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/slimcop/HEAD/lib/slimcop.rb -------------------------------------------------------------------------------- /lib/slimcop/ruby_extractor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/slimcop/HEAD/lib/slimcop/ruby_extractor.rb -------------------------------------------------------------------------------- /lib/slimcop/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Slimcop 4 | VERSION = '0.19.1' 5 | end 6 | -------------------------------------------------------------------------------- /slimcop.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/slimcop/HEAD/slimcop.gemspec -------------------------------------------------------------------------------- /spec/fixtures/dummy.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/slimcop/HEAD/spec/fixtures/dummy.slim -------------------------------------------------------------------------------- /spec/slimcop/ruby_extractor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/slimcop/HEAD/spec/slimcop/ruby_extractor_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r7kamura/slimcop/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------