diff options
author | Robert Speicher <rspeicher@gmail.com> | 2015-04-09 13:56:38 -0400 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2015-04-09 14:19:25 -0400 |
commit | 91c39fd8c70e45aeb2d39f4f2b08164d01300b89 (patch) | |
tree | 719f54879e03e8a4ee21121866065ae7b5ca8cb5 /lib/gitlab.rb | |
parent | 2cefdbb535a2883f514e1b3482eefbe072976be3 (diff) | |
download | gitlab-ce-91c39fd8c70e45aeb2d39f4f2b08164d01300b89.tar.gz |
Add lib/gitlab.rb to autoload non-conventional paths
Diffstat (limited to 'lib/gitlab.rb')
-rw-r--r-- | lib/gitlab.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/gitlab.rb b/lib/gitlab.rb new file mode 100644 index 00000000000..5fc1862c3e9 --- /dev/null +++ b/lib/gitlab.rb @@ -0,0 +1,5 @@ +require 'gitlab/git' + +module Gitlab + autoload :Satellite, 'gitlab/satellite/satellite' +end |