debian-mirror-gitlab/lib/gitlab/ci/build/credentials/base.rb
2018-12-13 13:39:08 +05:30

15 lines
241 B
Ruby

# frozen_string_literal: true
module Gitlab
module Ci
module Build
module Credentials
class Base
def type
self.class.name.demodulize.underscore
end
end
end
end
end
end