Class: Danger::DangerCommitLint::SubjectWordsCheck

Inherits:
CommitCheck
  • Object
show all
Defined in:
lib/commit_lint/subject_words_check.rb

Overview

:nodoc:

Constant Summary collapse

MESSAGE =
'Please use more than one word.'.freeze

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from CommitCheck

fail?

Constructor Details

#initialize(message) ⇒ SubjectWordsCheck

Returns a new instance of SubjectWordsCheck.



10
11
12
# File 'lib/commit_lint/subject_words_check.rb', line 10

def initialize(message)
  @subject = message[:subject]
end

Class Method Details

.typeObject



6
7
8
# File 'lib/commit_lint/subject_words_check.rb', line 6

def self.type
  :subject_words
end

Instance Method Details

#fail?Boolean

Returns:

  • (Boolean)


14
15
16
# File 'lib/commit_lint/subject_words_check.rb', line 14

def fail?
  @subject.split.count < 2
end