diff options
author | Rémy Coutable <remy@rymai.me> | 2016-04-15 17:35:40 +0200 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2016-05-10 11:51:19 +0200 |
commit | 5589dcf8db0daf2235158724f6b18115a9abfa42 (patch) | |
tree | f1a2a196fc0edeed55944612345fe98e936d933c /lib/gitlab.rb | |
parent | 6da3388569b3bf31ac72663a4c13dba83d064356 (diff) | |
download | gitlab-ce-5589dcf8db0daf2235158724f6b18115a9abfa42.tar.gz |
Fix a few places where autoloading would fail
- Fix naming of API::CommitStatuses
- Ensure we use require_dependency instead of require
- Ensure the namespace is right in lib/api/api.rb, otherwise, we
might require Grape::API::Helpers which defines the `#params` method.
This is to avoid requiring a file multiple times and getting an "Already
initialized constant" error.
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'lib/gitlab.rb')
-rw-r--r-- | lib/gitlab.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab.rb b/lib/gitlab.rb index 7479e729db1..37f4c34054f 100644 --- a/lib/gitlab.rb +++ b/lib/gitlab.rb @@ -1,4 +1,4 @@ -require 'gitlab/git' +require_dependency 'gitlab/git' module Gitlab def self.com? |