Merge branch 'fix/github-importer' into 'master'
Refactoring rake task to import GitHub repositories See merge request !10695
Showing
... | @@ -17,6 +17,8 @@ gem 'pg', '~> 0.18.2', group: :postgres | ... | @@ -17,6 +17,8 @@ gem 'pg', '~> 0.18.2', group: :postgres |
gem 'rugged', '~> 0.25.1.1' | gem 'rugged', '~> 0.25.1.1' | ||
gem 'faraday', '~> 0.11.0' | |||
# Authentication libraries | # Authentication libraries | ||
gem 'devise', '~> 4.2' | gem 'devise', '~> 4.2' | ||
gem 'doorkeeper', '~> 4.2.0' | gem 'doorkeeper', '~> 4.2.0' | ||
... | @@ -186,7 +188,7 @@ gem 'gemnasium-gitlab-service', '~> 0.2' | ... | @@ -186,7 +188,7 @@ gem 'gemnasium-gitlab-service', '~> 0.2' |
gem 'slack-notifier', '~> 1.5.1' | gem 'slack-notifier', '~> 1.5.1' | ||
# Asana integration | # Asana integration | ||
gem 'asana', '~> 0.4.0' | gem 'asana', '~> 0.6.0' | ||
# FogBugz integration | # FogBugz integration | ||
gem 'ruby-fogbugz', '~> 0.2.1' | gem 'ruby-fogbugz', '~> 0.2.1' | ||
... | @@ -345,7 +347,7 @@ gem 'html2text' | ... | @@ -345,7 +347,7 @@ gem 'html2text' |
gem 'ruby-prof', '~> 0.16.2' | gem 'ruby-prof', '~> 0.16.2' | ||
# OAuth | # OAuth | ||
gem 'oauth2', '~> 1.2.0' | gem 'oauth2', '~> 1.3.0' | ||
# Soft deletion | # Soft deletion | ||
gem 'paranoia', '~> 2.2' | gem 'paranoia', '~> 2.2' | ||
... | ... |
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/response.rb
0 → 100644
lib/github/user.rb
0 → 100644
Please register or sign in to comment