# quality_ruby **Repository Path**: june-sky/quality_ruby ## Basic Information - **Project Name**: quality_ruby - **Description**: Ruby、Rails代码检测 - **Primary Language**: Ruby - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-09-21 - **Last Updated**: 2022-06-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Ruby、Rails代码检测 # 下载最新配置 ``` ``` # 代码检测 ## 代码质量检查 ### `rubocop` ``` rubocop . -f html -o tmp/rubocop.html ``` ### `rails_best_practices` ``` rails_best_practices . --config config/rails_best_practices.yml --spec --vendor -f html --output-file tmp/rails_best_practices.html ``` ### `rubycritic` ``` rubycritic . ``` ## 代码安全性检查 ### `brakeman` ``` brakeman -d -o tmp/brakeman.html ```