Make rspec start

This commit is contained in:
Dmitriy Zaporozhets 2015-09-09 15:08:01 +02:00
parent 0b5d627cd4
commit fefa98b21a
3 changed files with 3 additions and 3 deletions

View file

@ -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?

View file

@ -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

View file

@ -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?