├── .github ├── dependabot.yml └── workflows │ └── test.yml ├── .gitignore ├── .standard.yml ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console ├── rake └── setup ├── config ├── base.yml ├── ruby-1.8.yml ├── ruby-1.9.yml ├── ruby-2.0.yml ├── ruby-2.1.yml └── ruby-2.2.yml ├── docs └── RELEASE.md ├── lib ├── standard-performance.rb └── standard │ ├── performance.rb │ └── performance │ ├── builds_ruleset.rb │ ├── determines_yaml_path.rb │ ├── loads_yaml_with_inheritance.rb │ ├── plugin.rb │ └── version.rb ├── standard-performance.gemspec └── test ├── standard ├── performance │ ├── builds_ruleset_test.rb │ ├── determines_yaml_path_test.rb │ └── loads_yaml_with_inheritance_test.rb └── performance_test.rb └── test_helper.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/.gitignore -------------------------------------------------------------------------------- /.standard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/.standard.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/bin/console -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/bin/setup -------------------------------------------------------------------------------- /config/base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/config/base.yml -------------------------------------------------------------------------------- /config/ruby-1.8.yml: -------------------------------------------------------------------------------- 1 | inherit_from: ./ruby-1.9.yml 2 | -------------------------------------------------------------------------------- /config/ruby-1.9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/config/ruby-1.9.yml -------------------------------------------------------------------------------- /config/ruby-2.0.yml: -------------------------------------------------------------------------------- 1 | inherit_from: ./ruby-2.1.yml 2 | -------------------------------------------------------------------------------- /config/ruby-2.1.yml: -------------------------------------------------------------------------------- 1 | inherit_from: ./ruby-2.2.yml 2 | -------------------------------------------------------------------------------- /config/ruby-2.2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/config/ruby-2.2.yml -------------------------------------------------------------------------------- /docs/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/docs/RELEASE.md -------------------------------------------------------------------------------- /lib/standard-performance.rb: -------------------------------------------------------------------------------- 1 | require_relative "standard/performance" 2 | -------------------------------------------------------------------------------- /lib/standard/performance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/lib/standard/performance.rb -------------------------------------------------------------------------------- /lib/standard/performance/builds_ruleset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/lib/standard/performance/builds_ruleset.rb -------------------------------------------------------------------------------- /lib/standard/performance/determines_yaml_path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/lib/standard/performance/determines_yaml_path.rb -------------------------------------------------------------------------------- /lib/standard/performance/loads_yaml_with_inheritance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/lib/standard/performance/loads_yaml_with_inheritance.rb -------------------------------------------------------------------------------- /lib/standard/performance/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/lib/standard/performance/plugin.rb -------------------------------------------------------------------------------- /lib/standard/performance/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/lib/standard/performance/version.rb -------------------------------------------------------------------------------- /standard-performance.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/standard-performance.gemspec -------------------------------------------------------------------------------- /test/standard/performance/builds_ruleset_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/test/standard/performance/builds_ruleset_test.rb -------------------------------------------------------------------------------- /test/standard/performance/determines_yaml_path_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/test/standard/performance/determines_yaml_path_test.rb -------------------------------------------------------------------------------- /test/standard/performance/loads_yaml_with_inheritance_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/test/standard/performance/loads_yaml_with_inheritance_test.rb -------------------------------------------------------------------------------- /test/standard/performance_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/test/standard/performance_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/standard-performance/HEAD/test/test_helper.rb --------------------------------------------------------------------------------