diff options
author | Valery Sizov <valery@gitlab.com> | 2015-02-02 14:26:29 -0800 |
---|---|---|
committer | Valery Sizov <valery@gitlab.com> | 2015-02-05 12:50:34 -0800 |
commit | 18231b0bb353fffa77b492e4b04fa61c9b3a25bb (patch) | |
tree | 6f00378c2d998382edae9752866be1a44b50ca03 /lib | |
parent | 7ddba92a394b5e5fd67eda50b6ee25b38e53e7b9 (diff) | |
download | gitlab-ce-18231b0bb353fffa77b492e4b04fa61c9b3a25bb.tar.gz |
GitLab.com integration: refactoring
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/github_import/client.rb (renamed from lib/gitlab/github/client.rb) | 2 | ||||
-rw-r--r-- | lib/gitlab/github_import/importer.rb (renamed from lib/gitlab/github/importer.rb) | 2 | ||||
-rw-r--r-- | lib/gitlab/github_import/project_creator.rb (renamed from lib/gitlab/github/project_creator.rb) | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/gitlab/github/client.rb b/lib/gitlab/github_import/client.rb index d6b936c649c..2e454e7c10f 100644 --- a/lib/gitlab/github/client.rb +++ b/lib/gitlab/github_import/client.rb @@ -1,5 +1,5 @@ module Gitlab - module Github + module GithubImport class Client attr_reader :client diff --git a/lib/gitlab/github/importer.rb b/lib/gitlab/github_import/importer.rb index 9f0fc6c4471..180ad6c3018 100644 --- a/lib/gitlab/github/importer.rb +++ b/lib/gitlab/github_import/importer.rb @@ -1,5 +1,5 @@ module Gitlab - module Github + module GithubImport class Importer attr_reader :project diff --git a/lib/gitlab/github/project_creator.rb b/lib/gitlab/github_import/project_creator.rb index 7b04926071f..9439ca6cbf4 100644 --- a/lib/gitlab/github/project_creator.rb +++ b/lib/gitlab/github_import/project_creator.rb @@ -1,5 +1,5 @@ module Gitlab - module Github + module GithubImport class ProjectCreator attr_reader :repo, :namespace, :current_user |