Class: Txgh::GithubStatus::State
- Inherits:
-
Object
- Object
- Txgh::GithubStatus::State
- Defined in:
- lib/txgh/github_status.rb
Constant Summary collapse
- PENDING =
'pending'
- SUCCESS =
'success'
- ERROR =
'error'
- FAILURE =
'failure'
Class Method Summary collapse
Class Method Details
.error ⇒ Object
12 |
# File 'lib/txgh/github_status.rb', line 12 def error; ERROR; end |
.failure ⇒ Object
13 |
# File 'lib/txgh/github_status.rb', line 13 def failure; failure; end |
.pending ⇒ Object
10 |
# File 'lib/txgh/github_status.rb', line 10 def pending; PENDING; end |
.success ⇒ Object
11 |
# File 'lib/txgh/github_status.rb', line 11 def success; SUCCESS; end |