diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-03-09 12:18:55 +0100 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-03-09 12:18:55 +0100 |
commit | 5becdf01941e3a471def26dd82282784c58b5590 (patch) | |
tree | b4453e5eb7465918447ac05aadec288fcb9c8fbf /qa/qa.rb | |
parent | 2ae578c6b11bcd06b0c6dc6827e01de09f2747cc (diff) | |
download | gitlab-ce-5becdf01941e3a471def26dd82282784c58b5590.tar.gz |
Implement GitLab QA release inflection strategy
Diffstat (limited to 'qa/qa.rb')
-rw-r--r-- | qa/qa.rb | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -5,6 +5,7 @@ module QA # GitLab QA runtime classes, mostly singletons. # module Runtime + autoload :Release, 'qa/runtime/release' autoload :User, 'qa/runtime/user' autoload :Namespace, 'qa/runtime/namespace' end @@ -81,3 +82,5 @@ module QA autoload :Runner, 'qa/specs/runner' end end + +QA::Runtime::Release.autoloads |