├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .rubocop_todo.yml ├── .yardopts ├── CHANGELOG.md ├── Gemfile ├── Guardfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── guard-rubocop.gemspec ├── lib └── guard │ ├── rubocop.rb │ └── rubocop │ ├── runner.rb │ ├── templates │ └── Guardfile │ └── version.rb └── spec ├── guard ├── rubocop │ └── runner_spec.rb └── rubocop_spec.rb ├── spec_helper.rb └── support ├── silence_output.rb └── simplecov.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/guard-rubocop/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/guard-rubocop/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/guard-rubocop/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/guard-rubocop/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/guard-rubocop/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/guard-rubocop/HEAD/.yardopts -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/guard-rubocop/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/guard-rubocop/HEAD/Gemfile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/guard-rubocop/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/guard-rubocop/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/guard-rubocop/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/guard-rubocop/HEAD/Rakefile -------------------------------------------------------------------------------- /guard-rubocop.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/guard-rubocop/HEAD/guard-rubocop.gemspec -------------------------------------------------------------------------------- /lib/guard/rubocop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/guard-rubocop/HEAD/lib/guard/rubocop.rb -------------------------------------------------------------------------------- /lib/guard/rubocop/runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/guard-rubocop/HEAD/lib/guard/rubocop/runner.rb -------------------------------------------------------------------------------- /lib/guard/rubocop/templates/Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/guard-rubocop/HEAD/lib/guard/rubocop/templates/Guardfile -------------------------------------------------------------------------------- /lib/guard/rubocop/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/guard-rubocop/HEAD/lib/guard/rubocop/version.rb -------------------------------------------------------------------------------- /spec/guard/rubocop/runner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/guard-rubocop/HEAD/spec/guard/rubocop/runner_spec.rb -------------------------------------------------------------------------------- /spec/guard/rubocop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/guard-rubocop/HEAD/spec/guard/rubocop_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/guard-rubocop/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/silence_output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/guard-rubocop/HEAD/spec/support/silence_output.rb -------------------------------------------------------------------------------- /spec/support/simplecov.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubocop/guard-rubocop/HEAD/spec/support/simplecov.rb --------------------------------------------------------------------------------