dblock/slack-gamebot

View on GitHub
slack-gamebot/models/challenge_state.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ChallengeState
  include Ruby::Enum

  define :PROPOSED, 'proposed'
  define :ACCEPTED, 'accepted'
  define :DECLINED, 'declined'
  define :CANCELED, 'canceled'
  define :DRAWN, 'drawing'
  define :PLAYED, 'played'
end