github-ripper 0.1.1 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE/ask_question.yml +22 -0
- data/.github/ISSUE_TEMPLATE/bug_report.yml +58 -0
- data/.github/ISSUE_TEMPLATE/config.yml +7 -0
- data/.github/ISSUE_TEMPLATE/feature_request.yml +43 -0
- data/.github/workflows/pipeline.yml +99 -0
- data/.gitignore +1 -14
- data/CHANGELOG.md +20 -2
- data/LICENSE.md +1 -1
- data/README.md +30 -49
- data/VERSION.txt +1 -1
- data/lib/github-ripper/version.rb +1 -1
- data/lib/github-ripper/wrapper.rb +1 -1
- data/lib/github-ripper.rb +1 -0
- metadata +7 -11
- data/.github/ISSUE_TEMPLATE/ask_question.md +0 -10
- data/.github/ISSUE_TEMPLATE/bug_report.md +0 -30
- data/.github/ISSUE_TEMPLATE/feature_request.md +0 -20
- data/.github/SUPPORT.md +0 -8
- data/.travis.yml +0 -129
- data/stale.yml +0 -17
- data/testing/VERSION.txt +0 -1
- data/testing/get-raw.rb +0 -15
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: de76b0d00c8b423d05c29f4b25ddc241e464666a6ceb67e321e4a945acb1911d
|
|
4
|
+
data.tar.gz: f971af877d315824a0f5fcded743e65fa7b2ccbb953dc511aba470ba22f2507d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: be3027fc535b857e34a544a9849ff681f76a4100a8178a8fe10f326985f6cefe81235d7d04350d3215784577a63754a1c26f93e5dbe7f26246cf4d4044af482e
|
|
7
|
+
data.tar.gz: ffacf650b47b01159cbc2a870c83734dc1aaed957d292e99291b7806b021290fd8555f7bc470316a3f3e8e0ba48f3d5f7159b516e7e7baecb7eb1320571e7934
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
name: Ask a question
|
|
2
|
+
description: If you don't have a specific issue or bug to report you can still ask us questions and we will do our best to answer them
|
|
3
|
+
title: "[Question]: "
|
|
4
|
+
labels: [question, triage]
|
|
5
|
+
assignees:
|
|
6
|
+
- tgwolf
|
|
7
|
+
body:
|
|
8
|
+
- type: textarea
|
|
9
|
+
id: question
|
|
10
|
+
attributes:
|
|
11
|
+
label: What is your question?
|
|
12
|
+
description: Please give us time to review your question and formulate an answer.
|
|
13
|
+
validations:
|
|
14
|
+
required: true
|
|
15
|
+
- type: checkboxes
|
|
16
|
+
id: terms
|
|
17
|
+
attributes:
|
|
18
|
+
label: Code of Conduct
|
|
19
|
+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com)
|
|
20
|
+
options:
|
|
21
|
+
- label: I agree to follow this project's Code of Conduct
|
|
22
|
+
required: true
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
name: Report a bug
|
|
2
|
+
description: Found a bug? Let us knonw what the issue is and we will attempt to fix it
|
|
3
|
+
title: "[Bug]: "
|
|
4
|
+
labels: [bug, triage]
|
|
5
|
+
assignees:
|
|
6
|
+
- tgwolf
|
|
7
|
+
body:
|
|
8
|
+
- type: textarea
|
|
9
|
+
id: what-happened
|
|
10
|
+
attributes:
|
|
11
|
+
label: What happened?
|
|
12
|
+
description: A clear and concise description of what the bug is.
|
|
13
|
+
validations:
|
|
14
|
+
required: true
|
|
15
|
+
- type: textarea
|
|
16
|
+
id: expected-behavior
|
|
17
|
+
attributes:
|
|
18
|
+
label: Expected behavior
|
|
19
|
+
description: A clear and concise description of what you expected to happen.
|
|
20
|
+
validations:
|
|
21
|
+
required: true
|
|
22
|
+
- type: textarea
|
|
23
|
+
id: reproduce
|
|
24
|
+
attributes:
|
|
25
|
+
label: How do we reproduct the bug?
|
|
26
|
+
description: What are the steps we need to take to reproduce the behavior?
|
|
27
|
+
validations:
|
|
28
|
+
required: true
|
|
29
|
+
- type: textarea
|
|
30
|
+
id: logs
|
|
31
|
+
attributes:
|
|
32
|
+
label: Relevant log output
|
|
33
|
+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
|
|
34
|
+
render: shell
|
|
35
|
+
validations:
|
|
36
|
+
required: false
|
|
37
|
+
- type: textarea
|
|
38
|
+
id: screenshoots
|
|
39
|
+
attributes:
|
|
40
|
+
label: Screeenshots
|
|
41
|
+
description: Upload any screenshots that might help demonstrate the bug.
|
|
42
|
+
validations:
|
|
43
|
+
required: false
|
|
44
|
+
- type: textarea
|
|
45
|
+
id: additional-information
|
|
46
|
+
attributes:
|
|
47
|
+
label: Additional information
|
|
48
|
+
description: Please provide any additional information that you think will help us to resolve this bug.
|
|
49
|
+
validations:
|
|
50
|
+
required: false
|
|
51
|
+
- type: checkboxes
|
|
52
|
+
id: terms
|
|
53
|
+
attributes:
|
|
54
|
+
label: Code of Conduct
|
|
55
|
+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com)
|
|
56
|
+
options:
|
|
57
|
+
- label: I agree to follow this project's Code of Conduct
|
|
58
|
+
required: true
|
|
@@ -1 +1,8 @@
|
|
|
1
1
|
blank_issues_enabled: false
|
|
2
|
+
contact_links:
|
|
3
|
+
- name: Support us
|
|
4
|
+
url: https://ko-fi.com/wolfsoftware
|
|
5
|
+
about: Show your support
|
|
6
|
+
- name: Visit our website
|
|
7
|
+
url: https://wolfsoftware.com/
|
|
8
|
+
about: Visit the Wolf Software website and see what else we do and what services we offer
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
name: Request a new feature
|
|
2
|
+
description: Got an idea for a new feature? Let us know what you want and we will see if we can add it
|
|
3
|
+
title: "[Feature Request]: "
|
|
4
|
+
labels: [enhancement, triage]
|
|
5
|
+
assignees:
|
|
6
|
+
- tgwolf
|
|
7
|
+
body:
|
|
8
|
+
- type: textarea
|
|
9
|
+
id: releated-to
|
|
10
|
+
attributes:
|
|
11
|
+
label: Is your feature request related to a problem?
|
|
12
|
+
description: A clear and concise description of what the problem is. E.g. I'm always frustrated when ...
|
|
13
|
+
validations:
|
|
14
|
+
required: true
|
|
15
|
+
- type: textarea
|
|
16
|
+
id: suggested-solution
|
|
17
|
+
attributes:
|
|
18
|
+
label: Suggested Solution
|
|
19
|
+
description: A clear and concise description of what you want to see implemented.
|
|
20
|
+
validations:
|
|
21
|
+
required: true
|
|
22
|
+
- type: textarea
|
|
23
|
+
id: alternatives
|
|
24
|
+
attributes:
|
|
25
|
+
label: Describe alternatives you've considered
|
|
26
|
+
description: A clear and concise description of any alternative solutions or features you've considered.
|
|
27
|
+
validations:
|
|
28
|
+
required: true
|
|
29
|
+
- type: textarea
|
|
30
|
+
id: additional-information
|
|
31
|
+
attributes:
|
|
32
|
+
label: Additional information
|
|
33
|
+
description: Please provide any additional information that you think will help us to resolve this bug.
|
|
34
|
+
validations:
|
|
35
|
+
required: false
|
|
36
|
+
- type: checkboxes
|
|
37
|
+
id: terms
|
|
38
|
+
attributes:
|
|
39
|
+
label: Code of Conduct
|
|
40
|
+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com)
|
|
41
|
+
options:
|
|
42
|
+
- label: I agree to follow this project's Code of Conduct
|
|
43
|
+
required: true
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
name: pipeline
|
|
2
|
+
on: [push, pull_request]
|
|
3
|
+
|
|
4
|
+
jobs:
|
|
5
|
+
bundler:
|
|
6
|
+
runs-on: ubuntu-latest
|
|
7
|
+
strategy:
|
|
8
|
+
matrix:
|
|
9
|
+
ruby: [ '2.6', '2.7', '3.0', 'head' ]
|
|
10
|
+
name: Bundler Test on Ruby ${{ matrix.ruby }}
|
|
11
|
+
steps:
|
|
12
|
+
- uses: actions/checkout@v2
|
|
13
|
+
- name: Set up Ruby ${{ matrix.ruby }}
|
|
14
|
+
uses: ruby/setup-ruby@v1
|
|
15
|
+
with:
|
|
16
|
+
ruby-version: ${{ matrix.ruby }}
|
|
17
|
+
- name: Run Bundle Install
|
|
18
|
+
run: bundle install
|
|
19
|
+
- name: Run Bundle Exec rake
|
|
20
|
+
run: bundle exec rake
|
|
21
|
+
reek:
|
|
22
|
+
runs-on: ubuntu-latest
|
|
23
|
+
strategy:
|
|
24
|
+
matrix:
|
|
25
|
+
ruby: [ '2.6', '2.7', '3.0', 'head' ]
|
|
26
|
+
name: Reek Test on Ruby ${{ matrix.ruby }}
|
|
27
|
+
steps:
|
|
28
|
+
- uses: actions/checkout@v2
|
|
29
|
+
- name: Set up Ruby ${{ matrix.ruby }}
|
|
30
|
+
uses: ruby/setup-ruby@v1
|
|
31
|
+
with:
|
|
32
|
+
ruby-version: ${{ matrix.ruby }}
|
|
33
|
+
- name: Run Reek
|
|
34
|
+
run: bash <(curl -s https://raw.githubusercontent.com/CICDToolbox/reek/master/pipeline.sh)
|
|
35
|
+
rubocop:
|
|
36
|
+
runs-on: ubuntu-latest
|
|
37
|
+
strategy:
|
|
38
|
+
matrix:
|
|
39
|
+
ruby: [ '2.6', '2.7', '3.0', 'head' ]
|
|
40
|
+
name: Rubocop Test on Ruby ${{ matrix.ruby }}
|
|
41
|
+
steps:
|
|
42
|
+
- uses: actions/checkout@v2
|
|
43
|
+
- name: Set up Ruby ${{ matrix.ruby }}
|
|
44
|
+
uses: ruby/setup-ruby@v1
|
|
45
|
+
with:
|
|
46
|
+
ruby-version: ${{ matrix.ruby }}
|
|
47
|
+
- name: Run Rubocop
|
|
48
|
+
run: bash <(curl -s https://raw.githubusercontent.com/CICDToolbox/rubocop/master/pipeline.sh)
|
|
49
|
+
awesomebot:
|
|
50
|
+
name: Awesomebot
|
|
51
|
+
runs-on: ubuntu-latest
|
|
52
|
+
steps:
|
|
53
|
+
- uses: actions/checkout@v2
|
|
54
|
+
- name: Set up Ruby 3.0
|
|
55
|
+
uses: ruby/setup-ruby@v1
|
|
56
|
+
with:
|
|
57
|
+
ruby-version: 3.0
|
|
58
|
+
- name: Run Awesomebot
|
|
59
|
+
env:
|
|
60
|
+
FLAGS: "default"
|
|
61
|
+
EXCLUDE_FILES: "CHANGELOG.md"
|
|
62
|
+
WHITELIST: "https://img.shields.io"
|
|
63
|
+
run: bash <(curl -s https://raw.githubusercontent.com/CICDToolbox/awesomebot/master/pipeline.sh)
|
|
64
|
+
shellcheck:
|
|
65
|
+
name: ShellCheck
|
|
66
|
+
runs-on: ubuntu-latest
|
|
67
|
+
steps:
|
|
68
|
+
- uses: actions/checkout@v2
|
|
69
|
+
- name: Run Shellcheck
|
|
70
|
+
run: bash <(curl -s https://raw.githubusercontent.com/CICDToolbox/shellcheck/master/pipeline.sh)
|
|
71
|
+
yaml-lint:
|
|
72
|
+
name: YAML Lint
|
|
73
|
+
runs-on: ubuntu-latest
|
|
74
|
+
steps:
|
|
75
|
+
- uses: actions/checkout@v2
|
|
76
|
+
- name: Set up Ruby 3.0
|
|
77
|
+
uses: ruby/setup-ruby@v1
|
|
78
|
+
with:
|
|
79
|
+
ruby-version: 3.0
|
|
80
|
+
- name: Run YAML-Lint
|
|
81
|
+
run: bash <(curl -s https://raw.githubusercontent.com/CICDToolbox/yaml-lint/master/pipeline.sh)
|
|
82
|
+
slack-workflow-status:
|
|
83
|
+
if: always()
|
|
84
|
+
name: Slack Post Workflow Notification
|
|
85
|
+
needs:
|
|
86
|
+
- bundler
|
|
87
|
+
- reek
|
|
88
|
+
- rubocop
|
|
89
|
+
- awesomebot
|
|
90
|
+
- shellcheck
|
|
91
|
+
- yaml-lint
|
|
92
|
+
runs-on: ubuntu-latest
|
|
93
|
+
steps:
|
|
94
|
+
- name: Slack Post Workflow Notification
|
|
95
|
+
uses: Gamesight/slack-workflow-status@master
|
|
96
|
+
with:
|
|
97
|
+
include_jobs: true
|
|
98
|
+
repo_token: ${{secrets.GITHUB_TOKEN}}
|
|
99
|
+
slack_webhook_url: ${{secrets.SLACK_WEBHOOK_URL}}
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -5,11 +5,29 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
|
|
6
6
|
This changelog was automatically generated using [Caretaker](https://github.com/DevelopersToolbox/caretaker) by [Wolf Software](https://github.com/WolfSoftware)
|
|
7
7
|
|
|
8
|
+
### [v0.1.3](https://github.com/DevelopersToolbox/github-ripper/compare/v0.1.2...v0.1.3)
|
|
9
|
+
|
|
10
|
+
> Released on May, 20th 2022
|
|
11
|
+
|
|
12
|
+
- removed verbose/debugging code [`[head]`](https://github.com/DevelopersToolbox/github-ripper/commit/)
|
|
13
|
+
|
|
14
|
+
### [v0.1.2](https://github.com/DevelopersToolbox/github-ripper/compare/v0.1.1...v0.1.2)
|
|
15
|
+
|
|
16
|
+
> Released on May, 20th 2022
|
|
17
|
+
|
|
18
|
+
- Better debugging and cleaner error handling [`[201ddb9]`](https://github.com/DevelopersToolbox/github-ripper/commit/201ddb96cee1388f570991410d871a05d0ff4d77)
|
|
19
|
+
|
|
20
|
+
- rebrand [`[5c46d9c]`](https://github.com/DevelopersToolbox/github-ripper/commit/5c46d9c7fe28dc3be562c7534438fe8163633f52)
|
|
21
|
+
|
|
22
|
+
- Update travis slack integration due to new slack organisation [`[751d7e3]`](https://github.com/DevelopersToolbox/github-ripper/commit/751d7e3994ba8ab24052568d521dd406b773a47f)
|
|
23
|
+
|
|
8
24
|
### [v0.1.1](https://github.com/DevelopersToolbox/github-ripper/compare/v0.1.0...v0.1.1)
|
|
9
25
|
|
|
10
|
-
> Released on June,
|
|
26
|
+
> Released on June, 12th 2021
|
|
27
|
+
|
|
28
|
+
- Remove Ruby 2.5 support [`[89cfdec]`](https://github.com/DevelopersToolbox/github-ripper/commit/89cfdeca2aaf6e6eddf7b78c6fa76b626bec5cd5)
|
|
11
29
|
|
|
12
|
-
- Made the basedir option the file dir without appending /Repos/ to the end [`[
|
|
30
|
+
- Made the basedir option the file dir without appending /Repos/ to the end [`[f369f7f]`](https://github.com/DevelopersToolbox/github-ripper/commit/f369f7fd358f01db962ebd6aa0f203697f622f99)
|
|
13
31
|
|
|
14
32
|
- Fix travis rvm versions and slack integration [`[13e051b]`](https://github.com/DevelopersToolbox/github-ripper/commit/13e051b88cf6081e2e47665332f035b77c8c4aea)
|
|
15
33
|
|
data/LICENSE.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
=====================
|
|
3
3
|
|
|
4
|
-
Copyright © `2009-2021` `Wolf Software
|
|
4
|
+
Copyright © `2009-2021` `Wolf Software`
|
|
5
5
|
|
|
6
6
|
Permission is hereby granted, free of charge, to any person
|
|
7
7
|
obtaining a copy of this software and associated documentation
|
data/README.md
CHANGED
|
@@ -1,37 +1,34 @@
|
|
|
1
|
-
<h1 align="center">
|
|
2
|
-
<a href="https://github.com/WolfSoftware">
|
|
3
|
-
<img src="https://raw.githubusercontent.com/WolfSoftware/branding/master/images/general/banners/64/black-and-white.png" alt="Wolf Software Logo" />
|
|
4
|
-
</a>
|
|
5
|
-
<br>
|
|
6
|
-
GitHub Ripper - Bulk Cloning Tool
|
|
7
|
-
</h1>
|
|
8
|
-
|
|
9
1
|
<p align="center">
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
2
|
+
<a href="https://github.com/DevelopersToolbox/">
|
|
3
|
+
<img src="https://cdn.wolfsoftware.com/assets/images/github/organisations/developerstoolbox/black-and-white-circle-256.png" alt="DevelopersToolbox logo" />
|
|
4
|
+
</a>
|
|
5
|
+
<br />
|
|
6
|
+
<a href="https://github.com/DevelopersToolbox/github-ripper/actions/workflows/pipeline.yml">
|
|
7
|
+
<img src="https://img.shields.io/github/workflow/status/DevelopersToolbox/github-ripper/pipeline/master?style=for-the-badge" alt="Github Build Status">
|
|
8
|
+
</a>
|
|
9
|
+
<a href="https://github.com/DevelopersToolbox/github-ripper/releases/latest">
|
|
10
|
+
<img src="https://img.shields.io/github/v/release/DevelopersToolbox/github-ripper?color=blue&label=Latest%20Release&style=for-the-badge" alt="Release">
|
|
11
|
+
</a>
|
|
12
|
+
<a href="https://github.com/DevelopersToolbox/github-ripper/releases/latest">
|
|
13
|
+
<img src="https://img.shields.io/github/commits-since/DevelopersToolbox/github-ripper/latest.svg?color=blue&style=for-the-badge" alt="Commits since release">
|
|
14
|
+
</a>
|
|
15
|
+
<br />
|
|
16
|
+
<a href=".github/CODE_OF_CONDUCT.md">
|
|
17
|
+
<img src="https://img.shields.io/badge/Code%20of%20Conduct-blue?style=for-the-badge" />
|
|
18
|
+
</a>
|
|
19
|
+
<a href=".github/CONTRIBUTING.md">
|
|
20
|
+
<img src="https://img.shields.io/badge/Contributing-blue?style=for-the-badge" />
|
|
21
|
+
</a>
|
|
22
|
+
<a href=".github/SECURITY.md">
|
|
23
|
+
<img src="https://img.shields.io/badge/Report%20Security%20Concern-blue?style=for-the-badge" />
|
|
24
|
+
</a>
|
|
25
|
+
<a href="https://github.com/DevelopersToolbox/github-ripper/issues">
|
|
26
|
+
<img src="https://img.shields.io/badge/Get%20Support-blue?style=for-the-badge" />
|
|
27
|
+
</a>
|
|
28
|
+
<br />
|
|
29
|
+
<a href="https://wolfsoftware.com/">
|
|
30
|
+
<img src="https://img.shields.io/badge/Created%20by%20Wolf%20Software-blue?style=for-the-badge" />
|
|
31
|
+
</a>
|
|
35
32
|
</p>
|
|
36
33
|
|
|
37
34
|
## Overview
|
|
@@ -121,19 +118,3 @@ Flags:
|
|
|
121
118
|
### Error Handling
|
|
122
119
|
|
|
123
120
|
All errors raised from github-core-lister are caught and re-thrown as StandardErrors in order to simplify the catching.
|
|
124
|
-
|
|
125
|
-
## Contributors
|
|
126
|
-
|
|
127
|
-
<p>
|
|
128
|
-
<a href="https://github.com/TGWolf">
|
|
129
|
-
<img src="https://img.shields.io/badge/Wolf-black?style=for-the-badge" />
|
|
130
|
-
</a>
|
|
131
|
-
</p>
|
|
132
|
-
|
|
133
|
-
## Show Support
|
|
134
|
-
|
|
135
|
-
<p>
|
|
136
|
-
<a href="https://ko-fi.com/wolfsoftware">
|
|
137
|
-
<img src="https://img.shields.io/badge/Ko%20Fi-blue?style=for-the-badge&logo=ko-fi&logoColor=white" />
|
|
138
|
-
</a>
|
|
139
|
-
</p>
|
data/VERSION.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.3
|
|
@@ -12,7 +12,7 @@ class GithubRipper
|
|
|
12
12
|
def function_wrapper(function, options)
|
|
13
13
|
begin
|
|
14
14
|
results = GithubListerCore.send(function, options)
|
|
15
|
-
rescue UnknownError, InvalidTokenError, MissingTokenError, TooManyRequests, NotFoundError, MissingOrganisationError, InvalidOptionsHashError => exception
|
|
15
|
+
rescue GithubListerCore::UnknownError, GithubListerCore::InvalidTokenError, GithubListerCore::MissingTokenError, GithubListerCore::TooManyRequests, GithubListerCore::NotFoundError, GithubListerCore::MissingOrganisationError, GithubListerCore::InvalidOptionsHashError => exception
|
|
16
16
|
raise StandardError.new(exception.to_s)
|
|
17
17
|
end
|
|
18
18
|
results || []
|
data/lib/github-ripper.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: github-ripper
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tim Gurney aka Wolf
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-05-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -206,17 +206,16 @@ files:
|
|
|
206
206
|
- ".github/CODE_OF_CONDUCT.md"
|
|
207
207
|
- ".github/CONTRIBUTING.md"
|
|
208
208
|
- ".github/FUNDING.yml"
|
|
209
|
-
- ".github/ISSUE_TEMPLATE/ask_question.
|
|
210
|
-
- ".github/ISSUE_TEMPLATE/bug_report.
|
|
209
|
+
- ".github/ISSUE_TEMPLATE/ask_question.yml"
|
|
210
|
+
- ".github/ISSUE_TEMPLATE/bug_report.yml"
|
|
211
211
|
- ".github/ISSUE_TEMPLATE/config.yml"
|
|
212
|
-
- ".github/ISSUE_TEMPLATE/feature_request.
|
|
212
|
+
- ".github/ISSUE_TEMPLATE/feature_request.yml"
|
|
213
213
|
- ".github/PULL_REQUEST_TEMPLATE.md"
|
|
214
214
|
- ".github/SECURITY.md"
|
|
215
|
-
- ".github/
|
|
215
|
+
- ".github/workflows/pipeline.yml"
|
|
216
216
|
- ".gitignore"
|
|
217
217
|
- ".reek.yml"
|
|
218
218
|
- ".rubocop.yml"
|
|
219
|
-
- ".travis.yml"
|
|
220
219
|
- CHANGELOG.md
|
|
221
220
|
- Gemfile
|
|
222
221
|
- LICENSE.md
|
|
@@ -236,9 +235,6 @@ files:
|
|
|
236
235
|
- lib/github-ripper/utils.rb
|
|
237
236
|
- lib/github-ripper/version.rb
|
|
238
237
|
- lib/github-ripper/wrapper.rb
|
|
239
|
-
- stale.yml
|
|
240
|
-
- testing/VERSION.txt
|
|
241
|
-
- testing/get-raw.rb
|
|
242
238
|
- testing/ghrip
|
|
243
239
|
homepage: https://github.com/DevelopersToolbox/github-ripper
|
|
244
240
|
licenses:
|
|
@@ -262,7 +258,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
262
258
|
- !ruby/object:Gem::Version
|
|
263
259
|
version: '0'
|
|
264
260
|
requirements: []
|
|
265
|
-
rubygems_version: 3.
|
|
261
|
+
rubygems_version: 3.3.7
|
|
266
262
|
signing_key:
|
|
267
263
|
specification_version: 4
|
|
268
264
|
summary: Ghrip is a command line tool for ripping (cloning) repositories from GitHub
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Bug report
|
|
3
|
-
about: Create a report to help us improve
|
|
4
|
-
title: ''
|
|
5
|
-
labels: 'bug'
|
|
6
|
-
assignees: 'TGWolf'
|
|
7
|
-
|
|
8
|
-
---
|
|
9
|
-
|
|
10
|
-
**Describe the bug**
|
|
11
|
-
A clear and concise description of what the bug is.
|
|
12
|
-
|
|
13
|
-
**To Reproduce**
|
|
14
|
-
Steps to reproduce the behavior:
|
|
15
|
-
1.
|
|
16
|
-
2.
|
|
17
|
-
3.
|
|
18
|
-
4.
|
|
19
|
-
|
|
20
|
-
**Expected behavior**
|
|
21
|
-
A clear and concise description of what you expected to happen.
|
|
22
|
-
|
|
23
|
-
**Screenshots**
|
|
24
|
-
If applicable, add screenshots to help explain your problem.
|
|
25
|
-
|
|
26
|
-
**Environment**
|
|
27
|
-
Any relevant information about your environment, OS version, virtualised or not.
|
|
28
|
-
|
|
29
|
-
**Additional context**
|
|
30
|
-
Add any other context about the problem here.
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Feature request
|
|
3
|
-
about: Suggest an idea for this project
|
|
4
|
-
title: ''
|
|
5
|
-
labels: 'enhancement'
|
|
6
|
-
assignees: 'TGWolf'
|
|
7
|
-
|
|
8
|
-
---
|
|
9
|
-
|
|
10
|
-
**Is your feature request related to a problem? Please describe.**
|
|
11
|
-
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
|
12
|
-
|
|
13
|
-
**Describe the solution you'd like**
|
|
14
|
-
A clear and concise description of what you want to happen.
|
|
15
|
-
|
|
16
|
-
**Describe alternatives you've considered**
|
|
17
|
-
A clear and concise description of any alternative solutions or features you've considered.
|
|
18
|
-
|
|
19
|
-
**Additional context**
|
|
20
|
-
Add any other context or screenshots about the feature request here.
|
data/.github/SUPPORT.md
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
# Support
|
|
2
|
-
|
|
3
|
-
If the documentation is not providing the information that you require then you have a couple of options:
|
|
4
|
-
|
|
5
|
-
1. [Start a discussion](https://github.com/DevelopersToolbox/github-ripper/discussions).
|
|
6
|
-
1. [Open an issue](https://github.com/DevelopersToolbox/github-ripper/issues), using the `Ask a question` option.
|
|
7
|
-
|
|
8
|
-
> This project has a [code of conduct](CODE_OF_CONDUCT.md). By interacting with this repository, organization, or community you agree to abide by its terms.
|
data/.travis.yml
DELETED
|
@@ -1,129 +0,0 @@
|
|
|
1
|
-
matrix:
|
|
2
|
-
include:
|
|
3
|
-
- language: ruby
|
|
4
|
-
name: Bundler (rvm 2.5)
|
|
5
|
-
rvm: 2.5
|
|
6
|
-
before_install:
|
|
7
|
-
- gem install bundler
|
|
8
|
-
- language: ruby
|
|
9
|
-
name: Bundler (rvm 2.6)
|
|
10
|
-
rvm: 2.6
|
|
11
|
-
before_install:
|
|
12
|
-
- gem install bundler
|
|
13
|
-
- language: ruby
|
|
14
|
-
name: Bundler (rvm 2.7)
|
|
15
|
-
rvm: 2.7
|
|
16
|
-
before_install:
|
|
17
|
-
- gem install bundler
|
|
18
|
-
- language: ruby
|
|
19
|
-
name: Bundler (rvm 3.0)
|
|
20
|
-
rvm: 3.0
|
|
21
|
-
before_install:
|
|
22
|
-
- gem install bundler
|
|
23
|
-
- language: ruby
|
|
24
|
-
name: Rubocop (rvm 2.5)
|
|
25
|
-
rvm: 2.5
|
|
26
|
-
before_install:
|
|
27
|
-
- git clone https://github.com/TravisToolbox/rubocop.git
|
|
28
|
-
install:
|
|
29
|
-
- "./rubocop/install.sh"
|
|
30
|
-
script:
|
|
31
|
-
- "./rubocop/scan.sh"
|
|
32
|
-
- language: ruby
|
|
33
|
-
name: Rubocop (rvm 2.6)
|
|
34
|
-
rvm: 2.6
|
|
35
|
-
before_install:
|
|
36
|
-
- git clone https://github.com/TravisToolbox/rubocop.git
|
|
37
|
-
install:
|
|
38
|
-
- "./rubocop/install.sh"
|
|
39
|
-
script:
|
|
40
|
-
- "./rubocop/scan.sh"
|
|
41
|
-
- language: ruby
|
|
42
|
-
name: Rubocop (rvm 2.7)
|
|
43
|
-
rvm: 2.7
|
|
44
|
-
before_install:
|
|
45
|
-
- git clone https://github.com/TravisToolbox/rubocop.git
|
|
46
|
-
install:
|
|
47
|
-
- "./rubocop/install.sh"
|
|
48
|
-
script:
|
|
49
|
-
- "./rubocop/scan.sh"
|
|
50
|
-
- language: ruby
|
|
51
|
-
name: Rubocop (rvm 3.0)
|
|
52
|
-
rvm: 3.0
|
|
53
|
-
before_install:
|
|
54
|
-
- git clone https://github.com/TravisToolbox/rubocop.git
|
|
55
|
-
install:
|
|
56
|
-
- "./rubocop/install.sh"
|
|
57
|
-
script:
|
|
58
|
-
- "./rubocop/scan.sh"
|
|
59
|
-
- language: ruby
|
|
60
|
-
name: Reek (rvm 2.5)
|
|
61
|
-
rvm: 2.5
|
|
62
|
-
before_install:
|
|
63
|
-
- git clone https://github.com/TravisToolbox/reek.git
|
|
64
|
-
install:
|
|
65
|
-
- "./reek/install.sh"
|
|
66
|
-
script:
|
|
67
|
-
- "./reek/scan.sh"
|
|
68
|
-
- language: ruby
|
|
69
|
-
name: Reek (rvm 2.6)
|
|
70
|
-
rvm: 2.6
|
|
71
|
-
before_install:
|
|
72
|
-
- git clone https://github.com/TravisToolbox/reek.git
|
|
73
|
-
install:
|
|
74
|
-
- "./reek/install.sh"
|
|
75
|
-
script:
|
|
76
|
-
- "./reek/scan.sh"
|
|
77
|
-
- language: ruby
|
|
78
|
-
name: Reek (rvm 2.7)
|
|
79
|
-
rvm: 2.7
|
|
80
|
-
before_install:
|
|
81
|
-
- git clone https://github.com/TravisToolbox/reek.git
|
|
82
|
-
install:
|
|
83
|
-
- "./reek/install.sh"
|
|
84
|
-
script:
|
|
85
|
-
- "./reek/scan.sh"
|
|
86
|
-
- language: ruby
|
|
87
|
-
name: Reek (rvm 3.0)
|
|
88
|
-
rvm: 3.0
|
|
89
|
-
before_install:
|
|
90
|
-
- git clone https://github.com/TravisToolbox/reek.git
|
|
91
|
-
install:
|
|
92
|
-
- "./reek/install.sh"
|
|
93
|
-
script:
|
|
94
|
-
- "./reek/scan.sh"
|
|
95
|
-
- language: ruby
|
|
96
|
-
name: YAML Linting (rvm 3.0)
|
|
97
|
-
rvm: 3.0
|
|
98
|
-
before_install:
|
|
99
|
-
- git clone https://github.com/TravisToolbox/yaml-lint
|
|
100
|
-
install:
|
|
101
|
-
- "./yaml-lint/install.sh"
|
|
102
|
-
script:
|
|
103
|
-
- "./yaml-lint/scan.sh"
|
|
104
|
-
- language: bash
|
|
105
|
-
name: Shellcheck (Bash)
|
|
106
|
-
os: linux
|
|
107
|
-
arch: arm64-graviton2
|
|
108
|
-
before_install:
|
|
109
|
-
- git clone https://github.com/TravisToolbox/shellcheck
|
|
110
|
-
install:
|
|
111
|
-
- "./shellcheck/install.sh"
|
|
112
|
-
script:
|
|
113
|
-
- "./shellcheck/scan.sh"
|
|
114
|
-
- language: ruby
|
|
115
|
-
name: Link Checking (rvm 3.0)
|
|
116
|
-
rvm: 3.0
|
|
117
|
-
env:
|
|
118
|
-
- WHITELIST="https://img.shields.io"
|
|
119
|
-
- EXCLUDE_FILES="CHANGELOG.md,github-lister-core.gemspec"
|
|
120
|
-
before_install:
|
|
121
|
-
- git clone https://github.com/TravisToolbox/awesomebot
|
|
122
|
-
install:
|
|
123
|
-
- "./awesomebot/install.sh"
|
|
124
|
-
script:
|
|
125
|
-
- "./awesomebot/scan.sh"
|
|
126
|
-
notifications:
|
|
127
|
-
email: false
|
|
128
|
-
slack:
|
|
129
|
-
secure: KG21jo2z3wbe2uZXQEHO7qNSK4UeHnYuTPiW5HWAy/uV54eP8Lk9fep54mxtTGlYwzdJFHoMWs6rHBZmK/2OvnJ9gVHG4SfYMdcrtkBVN/TeGKm4U51k7/3ZH7/NYdxyI2iHFkD0AkDBaLsq5xDj0R0rm5f7d9fuED1rd7EiiZzxSJIUteP+KfgByzIucqzQd5jEqxgWYRVXeTxbn1uhKoorC2LcCNt7DxDZagj/Z0vrQiXp1YZ27xdcEriZtj7kinzrhAa2FkFMSI58ApjiTorIGls5U9jdcMJMKi5Tx22rD2w031LEo+dEJEPLIo0IxY7w/8SWtx9LXWNKAOrMcDPlRuGFZObMoOj2lWJKb6lb1smEyGiQ37S2Br2dWRug8FeSDQgNI74YqIaIVp1Mf/PKaNUoF/Dsgn7gGuTUraRJ14UsqfoQgXFjxf4Ycm+ZIVOkipncXyBSkFadDHtKFFBCD0c1/PWnNxSKkjGPknzHgV3VApziRg8ejV8sJzW0JH2UQWf3Q12mvRtBtLqGnyQvQ/ipFTRxZAGbQPltvvDMcaNqamBMR4Ksm4AXucIp8OecCFHZOS6yNKsnTlcXdCZ8jxath3HcaPaZaeWXBBDToe3ZI92JQEHo/sX+grfpaNTL8pvfrs7JFPu32jGWm7LGDjnUxXT+ot83rnfcv7E=
|
data/stale.yml
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
# Number of days of inactivity before an issue becomes stale
|
|
2
|
-
daysUntilStale: 60
|
|
3
|
-
# Number of days of inactivity before a stale issue is closed
|
|
4
|
-
daysUntilClose: 7
|
|
5
|
-
# Issues with these labels will never be considered stale
|
|
6
|
-
exemptLabels:
|
|
7
|
-
- pinned
|
|
8
|
-
- security
|
|
9
|
-
# Label to use when marking an issue as stale
|
|
10
|
-
staleLabel: wontfix
|
|
11
|
-
# Comment to post when marking an issue as stale. Set to `false` to disable
|
|
12
|
-
markComment: >
|
|
13
|
-
This issue has been automatically marked as stale because it has not had
|
|
14
|
-
recent activity. It will be closed if no further activity occurs. Thank you
|
|
15
|
-
for your contributions.
|
|
16
|
-
# Comment to post when closing a stale issue. Set to `false` to disable
|
|
17
|
-
closeComment: true
|
data/testing/VERSION.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0.1.0
|
data/testing/get-raw.rb
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
#
|
|
3
|
-
# This is a very simply testing script to allow for testing of local changes without having to install the gem locally
|
|
4
|
-
#
|
|
5
|
-
|
|
6
|
-
require 'json'
|
|
7
|
-
|
|
8
|
-
$LOAD_PATH.unshift('./lib')
|
|
9
|
-
|
|
10
|
-
require 'bundler/setup'
|
|
11
|
-
require 'github-ripper'
|
|
12
|
-
|
|
13
|
-
options = {}
|
|
14
|
-
|
|
15
|
-
pp GithubRipper.rip(options)
|