Make rspec start
This commit is contained in:
parent
0b5d627cd4
commit
fefa98b21a
3 changed files with 3 additions and 3 deletions
|
@ -13,7 +13,7 @@
|
|||
#
|
||||
|
||||
module Ci
|
||||
class HipChatService < Service
|
||||
class HipChatService < Ci::Service
|
||||
prop_accessor :hipchat_token, :hipchat_room, :hipchat_server
|
||||
boolean_accessor :notify_only_broken_builds
|
||||
validates :hipchat_token, presence: true, if: :activated?
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#
|
||||
|
||||
module Ci
|
||||
class MailService < Service
|
||||
class MailService < Ci::Service
|
||||
delegate :email_recipients, :email_recipients=,
|
||||
:email_add_pusher, :email_add_pusher=,
|
||||
:email_only_broken_builds, :email_only_broken_builds=, to: :project, prefix: false
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#
|
||||
|
||||
module Ci
|
||||
class SlackService < Service
|
||||
class SlackService < Ci::Service
|
||||
prop_accessor :webhook
|
||||
boolean_accessor :notify_only_broken_builds
|
||||
validates :webhook, presence: true, if: :activated?
|
||||
|
|
Loading…
Reference in a new issue