Class: Danger::DangerAngularCommitLint::SubjectCapCheck
- Inherits:
-
CommitCheck
- Object
- CommitCheck
- Danger::DangerAngularCommitLint::SubjectCapCheck
- Defined in:
- lib/angular_commit_lint/subject_cap_check.rb
Overview
:nodoc:
Class Method Summary collapse
Instance Method Summary collapse
- #fail? ⇒ Boolean
-
#initialize(message, _config = {}) ⇒ SubjectCapCheck
constructor
A new instance of SubjectCapCheck.
- #message ⇒ Object
Methods inherited from CommitCheck
Constructor Details
#initialize(message, _config = {}) ⇒ SubjectCapCheck
Returns a new instance of SubjectCapCheck.
14 15 16 |
# File 'lib/angular_commit_lint/subject_cap_check.rb', line 14 def initialize(, _config = {}) @first_character = extract_subject().split('').first end |
Class Method Details
.type ⇒ Object
10 11 12 |
# File 'lib/angular_commit_lint/subject_cap_check.rb', line 10 def self.type :subject_cap end |
Instance Method Details
#fail? ⇒ Boolean
18 19 20 |
# File 'lib/angular_commit_lint/subject_cap_check.rb', line 18 def fail? @first_character != @first_character.upcase end |
#message ⇒ Object
6 7 8 |
# File 'lib/angular_commit_lint/subject_cap_check.rb', line 6 def 'Please start subject with capital letter.'.freeze end |