-
- Downloads
There was a problem fetching the pipeline summary.
Merge branch 'fix/github-importer' into 'master'
Refactoring rake task to import GitHub repositories See merge request !10695
parent
f243fa79
No related branches found
No related tags found
Pipeline #
Showing
- Gemfile 4 additions, 2 deletionsGemfile
- Gemfile.lock 10 additions, 9 deletionsGemfile.lock
- lib/github/client.rb 23 additions, 0 deletionslib/github/client.rb
- lib/github/collection.rb 29 additions, 0 deletionslib/github/collection.rb
- lib/github/error.rb 3 additions, 0 deletionslib/github/error.rb
- lib/github/import.rb 405 additions, 0 deletionslib/github/import.rb
- lib/github/rate_limit.rb 27 additions, 0 deletionslib/github/rate_limit.rb
- lib/github/repositories.rb 19 additions, 0 deletionslib/github/repositories.rb
- lib/github/representation/base.rb 30 additions, 0 deletionslib/github/representation/base.rb
- lib/github/representation/branch.rb 51 additions, 0 deletionslib/github/representation/branch.rb
- lib/github/representation/comment.rb 42 additions, 0 deletionslib/github/representation/comment.rb
- lib/github/representation/issuable.rb 37 additions, 0 deletionslib/github/representation/issuable.rb
- lib/github/representation/issue.rb 25 additions, 0 deletionslib/github/representation/issue.rb
- lib/github/representation/label.rb 13 additions, 0 deletionslib/github/representation/label.rb
- lib/github/representation/milestone.rb 25 additions, 0 deletionslib/github/representation/milestone.rb
- lib/github/representation/pull_request.rb 78 additions, 0 deletionslib/github/representation/pull_request.rb
- lib/github/representation/release.rb 17 additions, 0 deletionslib/github/representation/release.rb
- lib/github/representation/repo.rb 6 additions, 0 deletionslib/github/representation/repo.rb
- lib/github/representation/user.rb 15 additions, 0 deletionslib/github/representation/user.rb
- lib/github/response.rb 25 additions, 0 deletionslib/github/response.rb
Loading
| Loading
| @@ -17,6 +17,8 @@ gem 'pg', '~> 0.18.2', group: :postgres |
gem 'rugged', '~> 0.25.1.1' | ||
gem 'faraday', '~> 0.11.0' | ||
# Authentication libraries | ||
gem 'devise', '~> 4.2' | ||
gem 'doorkeeper', '~> 4.2.0' | ||
Loading
| Loading
| @@ -183,7 +185,7 @@ gem 'gemnasium-gitlab-service', '~> 0.2' |
gem 'slack-notifier', '~> 1.5.1' | ||
# Asana integration | ||
gem 'asana', '~> 0.4.0' | ||
gem 'asana', '~> 0.6.0' | ||
# FogBugz integration | ||
gem 'ruby-fogbugz', '~> 0.2.1' | ||
Loading
| Loading
| @@ -342,7 +344,7 @@ gem 'html2text' |
gem 'ruby-prof', '~> 0.16.2' | ||
# OAuth | ||
gem 'oauth2', '~> 1.2.0' | ||
gem 'oauth2', '~> 1.3.0' | ||
# Soft deletion | ||
gem 'paranoia', '~> 2.2' | ||
Loading
| Loading
|
lib/github/client.rb
0 → 100644
lib/github/collection.rb
0 → 100644
lib/github/error.rb
0 → 100644
lib/github/import.rb
0 → 100644
lib/github/rate_limit.rb
0 → 100644
lib/github/repositories.rb
0 → 100644
lib/github/representation/base.rb
0 → 100644
lib/github/representation/branch.rb
0 → 100644
lib/github/representation/comment.rb
0 → 100644
lib/github/representation/issuable.rb
0 → 100644
lib/github/representation/issue.rb
0 → 100644
lib/github/representation/label.rb
0 → 100644
lib/github/representation/milestone.rb
0 → 100644
lib/github/representation/pull_request.rb
0 → 100644
lib/github/representation/release.rb
0 → 100644
lib/github/representation/repo.rb
0 → 100644
lib/github/representation/user.rb
0 → 100644
lib/github/response.rb
0 → 100644