├── .bundle └── config ├── .github ├── dependabot.yml └── workflows │ └── continuous-integration.yml ├── .gitignore ├── .rubocop.yml ├── .ruby-version ├── .vscode └── settings.json ├── Gemfile ├── Gemfile.lock ├── Rakefile ├── graphql-schema.json ├── lib ├── formatters │ └── command_line.rb ├── models │ └── project.rb ├── queries │ ├── github_repository_active_check.rb │ └── github_repository_label_active_check.rb ├── up_for_grabs_tooling.rb └── validators │ ├── command_line.rb │ ├── directory.rb │ ├── pull_request.rb │ ├── schema.rb │ └── tags.rb ├── schema.json ├── test ├── fixtures │ ├── data_files │ │ ├── one_file_with_error │ │ │ └── _data │ │ │ │ └── projects │ │ │ │ ├── error_site_link_url.yml │ │ │ │ └── timegrid.yml │ │ └── valid_project_files │ │ │ └── _data │ │ │ └── projects │ │ │ ├── julia.yml │ │ │ ├── timegrid.yml │ │ │ └── up-for-grabs.net.yml │ ├── directory │ │ └── incorrect_files_found │ │ │ ├── _config.yml │ │ │ ├── _data │ │ │ └── projects │ │ │ │ ├── thing.json │ │ │ │ └── valid_project_file.yml │ │ │ └── lost_project_file.yml │ ├── formatting │ │ ├── add-stats │ │ │ ├── after.yml │ │ │ └── before.yml │ │ └── fix-indenting │ │ │ ├── after.yml │ │ │ └── before.yml │ ├── github_matching │ │ ├── invalid_external_link.yml │ │ ├── invalid_github_organization.yml │ │ ├── invalid_gitlab_link.yml │ │ ├── invalid_link_not_handled.yml │ │ └── valid_github_project.yml │ ├── projects │ │ ├── error_duplicate_tags.yml │ │ ├── error_empty_tags.yml │ │ ├── error_no_tags.yml │ │ ├── error_parsing.yml │ │ ├── error_recommended_tag.yml │ │ ├── error_required_fields.yml │ │ ├── error_site_link_url.yml │ │ ├── error_stats_invalid_last_updated.yml │ │ ├── error_stats_negative_issue_count.yml │ │ ├── error_tags_as_string.yml │ │ ├── error_upforgrabs_link_url.yml │ │ ├── error_upper_case_tag.yml │ │ ├── valid_project_file.yml │ │ ├── valid_project_with_no_open_issues.yml │ │ └── valid_project_with_stats.yml │ └── pull_request │ │ ├── alternate-yaml-extension-result.md │ │ ├── alternate-yaml-extension │ │ └── _data │ │ │ └── projects │ │ │ └── project.yaml │ │ ├── github-repository-archived-result.md │ │ ├── github-repository-archived │ │ └── _data │ │ │ └── projects │ │ │ └── project.yml │ │ ├── missing-extension-result.md │ │ ├── missing-extension │ │ └── _data │ │ │ └── projects │ │ │ └── project │ │ ├── one-file-label-error-result.md │ │ ├── one-file-label-error │ │ └── _data │ │ │ └── projects │ │ │ └── project.yml │ │ ├── one-file-label-url-error-result.md │ │ ├── one-file-label-url-error │ │ └── _data │ │ │ └── projects │ │ │ └── project.yml │ │ ├── one-file-no-preamble-result.md │ │ ├── one-file-result.md │ │ ├── one-file │ │ └── _data │ │ │ └── projects │ │ │ └── project.yml │ │ ├── schema-validation-result.md │ │ ├── schema-validation │ │ └── _data │ │ │ └── projects │ │ │ └── error_site_link_url.yml │ │ ├── tags-validation-result.md │ │ ├── tags-validation │ │ └── _data │ │ │ └── projects │ │ │ └── project.yml │ │ ├── three-files-one-error-result.md │ │ ├── three-files-one-error │ │ └── _data │ │ │ └── projects │ │ │ ├── first.yml │ │ │ ├── second.yml │ │ │ └── third.yml │ │ ├── three-valid-files-result.md │ │ ├── three-valid-files │ │ └── _data │ │ │ └── projects │ │ │ ├── first.yml │ │ │ ├── second.yml │ │ │ └── third.yml │ │ ├── two-valid-files-result.md │ │ ├── two-valid-files │ │ └── _data │ │ │ └── projects │ │ │ ├── first.yml │ │ │ └── second.yml │ │ ├── wrong-extension-result.md │ │ └── wrong-extension │ │ └── _data │ │ └── projects │ │ └── project.json ├── formatters │ └── command_line_test.rb ├── models │ ├── format_yaml_files_test.rb │ └── github_matching_test.rb ├── test_helper.rb └── validators │ ├── command_line_test.rb │ ├── pull_request_test.rb │ ├── schema_test.rb │ └── tags_test.rb └── up_for_grabs_tooling.gemspec /.bundle/config: -------------------------------------------------------------------------------- 1 | BUNDLE_PATH: ./vendor/bundle 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/continuous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/.github/workflows/continuous-integration.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | coverage/ 3 | vendor/ 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.6 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/Rakefile -------------------------------------------------------------------------------- /graphql-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/graphql-schema.json -------------------------------------------------------------------------------- /lib/formatters/command_line.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/lib/formatters/command_line.rb -------------------------------------------------------------------------------- /lib/models/project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/lib/models/project.rb -------------------------------------------------------------------------------- /lib/queries/github_repository_active_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/lib/queries/github_repository_active_check.rb -------------------------------------------------------------------------------- /lib/queries/github_repository_label_active_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/lib/queries/github_repository_label_active_check.rb -------------------------------------------------------------------------------- /lib/up_for_grabs_tooling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/lib/up_for_grabs_tooling.rb -------------------------------------------------------------------------------- /lib/validators/command_line.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/lib/validators/command_line.rb -------------------------------------------------------------------------------- /lib/validators/directory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/lib/validators/directory.rb -------------------------------------------------------------------------------- /lib/validators/pull_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/lib/validators/pull_request.rb -------------------------------------------------------------------------------- /lib/validators/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/lib/validators/schema.rb -------------------------------------------------------------------------------- /lib/validators/tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/lib/validators/tags.rb -------------------------------------------------------------------------------- /schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/schema.json -------------------------------------------------------------------------------- /test/fixtures/data_files/one_file_with_error/_data/projects/error_site_link_url.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/data_files/one_file_with_error/_data/projects/error_site_link_url.yml -------------------------------------------------------------------------------- /test/fixtures/data_files/one_file_with_error/_data/projects/timegrid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/data_files/one_file_with_error/_data/projects/timegrid.yml -------------------------------------------------------------------------------- /test/fixtures/data_files/valid_project_files/_data/projects/julia.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/data_files/valid_project_files/_data/projects/julia.yml -------------------------------------------------------------------------------- /test/fixtures/data_files/valid_project_files/_data/projects/timegrid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/data_files/valid_project_files/_data/projects/timegrid.yml -------------------------------------------------------------------------------- /test/fixtures/data_files/valid_project_files/_data/projects/up-for-grabs.net.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/data_files/valid_project_files/_data/projects/up-for-grabs.net.yml -------------------------------------------------------------------------------- /test/fixtures/directory/incorrect_files_found/_config.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/directory/incorrect_files_found/_data/projects/thing.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/directory/incorrect_files_found/_data/projects/valid_project_file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/directory/incorrect_files_found/_data/projects/valid_project_file.yml -------------------------------------------------------------------------------- /test/fixtures/directory/incorrect_files_found/lost_project_file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/directory/incorrect_files_found/lost_project_file.yml -------------------------------------------------------------------------------- /test/fixtures/formatting/add-stats/after.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/formatting/add-stats/after.yml -------------------------------------------------------------------------------- /test/fixtures/formatting/add-stats/before.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/formatting/add-stats/before.yml -------------------------------------------------------------------------------- /test/fixtures/formatting/fix-indenting/after.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/formatting/fix-indenting/after.yml -------------------------------------------------------------------------------- /test/fixtures/formatting/fix-indenting/before.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/formatting/fix-indenting/before.yml -------------------------------------------------------------------------------- /test/fixtures/github_matching/invalid_external_link.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/github_matching/invalid_external_link.yml -------------------------------------------------------------------------------- /test/fixtures/github_matching/invalid_github_organization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/github_matching/invalid_github_organization.yml -------------------------------------------------------------------------------- /test/fixtures/github_matching/invalid_gitlab_link.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/github_matching/invalid_gitlab_link.yml -------------------------------------------------------------------------------- /test/fixtures/github_matching/invalid_link_not_handled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/github_matching/invalid_link_not_handled.yml -------------------------------------------------------------------------------- /test/fixtures/github_matching/valid_github_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/github_matching/valid_github_project.yml -------------------------------------------------------------------------------- /test/fixtures/projects/error_duplicate_tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/projects/error_duplicate_tags.yml -------------------------------------------------------------------------------- /test/fixtures/projects/error_empty_tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/projects/error_empty_tags.yml -------------------------------------------------------------------------------- /test/fixtures/projects/error_no_tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/projects/error_no_tags.yml -------------------------------------------------------------------------------- /test/fixtures/projects/error_parsing.yml: -------------------------------------------------------------------------------- 1 | foo: "an escaped \' single quote" 2 | -------------------------------------------------------------------------------- /test/fixtures/projects/error_recommended_tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/projects/error_recommended_tag.yml -------------------------------------------------------------------------------- /test/fixtures/projects/error_required_fields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/projects/error_required_fields.yml -------------------------------------------------------------------------------- /test/fixtures/projects/error_site_link_url.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/projects/error_site_link_url.yml -------------------------------------------------------------------------------- /test/fixtures/projects/error_stats_invalid_last_updated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/projects/error_stats_invalid_last_updated.yml -------------------------------------------------------------------------------- /test/fixtures/projects/error_stats_negative_issue_count.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/projects/error_stats_negative_issue_count.yml -------------------------------------------------------------------------------- /test/fixtures/projects/error_tags_as_string.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/projects/error_tags_as_string.yml -------------------------------------------------------------------------------- /test/fixtures/projects/error_upforgrabs_link_url.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/projects/error_upforgrabs_link_url.yml -------------------------------------------------------------------------------- /test/fixtures/projects/error_upper_case_tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/projects/error_upper_case_tag.yml -------------------------------------------------------------------------------- /test/fixtures/projects/valid_project_file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/projects/valid_project_file.yml -------------------------------------------------------------------------------- /test/fixtures/projects/valid_project_with_no_open_issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/projects/valid_project_with_no_open_issues.yml -------------------------------------------------------------------------------- /test/fixtures/projects/valid_project_with_stats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/projects/valid_project_with_stats.yml -------------------------------------------------------------------------------- /test/fixtures/pull_request/alternate-yaml-extension-result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/alternate-yaml-extension-result.md -------------------------------------------------------------------------------- /test/fixtures/pull_request/alternate-yaml-extension/_data/projects/project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/alternate-yaml-extension/_data/projects/project.yaml -------------------------------------------------------------------------------- /test/fixtures/pull_request/github-repository-archived-result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/github-repository-archived-result.md -------------------------------------------------------------------------------- /test/fixtures/pull_request/github-repository-archived/_data/projects/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/github-repository-archived/_data/projects/project.yml -------------------------------------------------------------------------------- /test/fixtures/pull_request/missing-extension-result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/missing-extension-result.md -------------------------------------------------------------------------------- /test/fixtures/pull_request/missing-extension/_data/projects/project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/missing-extension/_data/projects/project -------------------------------------------------------------------------------- /test/fixtures/pull_request/one-file-label-error-result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/one-file-label-error-result.md -------------------------------------------------------------------------------- /test/fixtures/pull_request/one-file-label-error/_data/projects/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/one-file-label-error/_data/projects/project.yml -------------------------------------------------------------------------------- /test/fixtures/pull_request/one-file-label-url-error-result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/one-file-label-url-error-result.md -------------------------------------------------------------------------------- /test/fixtures/pull_request/one-file-label-url-error/_data/projects/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/one-file-label-url-error/_data/projects/project.yml -------------------------------------------------------------------------------- /test/fixtures/pull_request/one-file-no-preamble-result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/one-file-no-preamble-result.md -------------------------------------------------------------------------------- /test/fixtures/pull_request/one-file-result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/one-file-result.md -------------------------------------------------------------------------------- /test/fixtures/pull_request/one-file/_data/projects/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/one-file/_data/projects/project.yml -------------------------------------------------------------------------------- /test/fixtures/pull_request/schema-validation-result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/schema-validation-result.md -------------------------------------------------------------------------------- /test/fixtures/pull_request/schema-validation/_data/projects/error_site_link_url.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/schema-validation/_data/projects/error_site_link_url.yml -------------------------------------------------------------------------------- /test/fixtures/pull_request/tags-validation-result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/tags-validation-result.md -------------------------------------------------------------------------------- /test/fixtures/pull_request/tags-validation/_data/projects/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/tags-validation/_data/projects/project.yml -------------------------------------------------------------------------------- /test/fixtures/pull_request/three-files-one-error-result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/three-files-one-error-result.md -------------------------------------------------------------------------------- /test/fixtures/pull_request/three-files-one-error/_data/projects/first.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/three-files-one-error/_data/projects/first.yml -------------------------------------------------------------------------------- /test/fixtures/pull_request/three-files-one-error/_data/projects/second.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/three-files-one-error/_data/projects/second.yml -------------------------------------------------------------------------------- /test/fixtures/pull_request/three-files-one-error/_data/projects/third.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/three-files-one-error/_data/projects/third.yml -------------------------------------------------------------------------------- /test/fixtures/pull_request/three-valid-files-result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/three-valid-files-result.md -------------------------------------------------------------------------------- /test/fixtures/pull_request/three-valid-files/_data/projects/first.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/three-valid-files/_data/projects/first.yml -------------------------------------------------------------------------------- /test/fixtures/pull_request/three-valid-files/_data/projects/second.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/three-valid-files/_data/projects/second.yml -------------------------------------------------------------------------------- /test/fixtures/pull_request/three-valid-files/_data/projects/third.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/three-valid-files/_data/projects/third.yml -------------------------------------------------------------------------------- /test/fixtures/pull_request/two-valid-files-result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/two-valid-files-result.md -------------------------------------------------------------------------------- /test/fixtures/pull_request/two-valid-files/_data/projects/first.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/two-valid-files/_data/projects/first.yml -------------------------------------------------------------------------------- /test/fixtures/pull_request/two-valid-files/_data/projects/second.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/two-valid-files/_data/projects/second.yml -------------------------------------------------------------------------------- /test/fixtures/pull_request/wrong-extension-result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/wrong-extension-result.md -------------------------------------------------------------------------------- /test/fixtures/pull_request/wrong-extension/_data/projects/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/fixtures/pull_request/wrong-extension/_data/projects/project.json -------------------------------------------------------------------------------- /test/formatters/command_line_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/formatters/command_line_test.rb -------------------------------------------------------------------------------- /test/models/format_yaml_files_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/models/format_yaml_files_test.rb -------------------------------------------------------------------------------- /test/models/github_matching_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/models/github_matching_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/validators/command_line_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/validators/command_line_test.rb -------------------------------------------------------------------------------- /test/validators/pull_request_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/validators/pull_request_test.rb -------------------------------------------------------------------------------- /test/validators/schema_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/validators/schema_test.rb -------------------------------------------------------------------------------- /test/validators/tags_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/test/validators/tags_test.rb -------------------------------------------------------------------------------- /up_for_grabs_tooling.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/up-for-grabs/tooling/HEAD/up_for_grabs_tooling.gemspec --------------------------------------------------------------------------------