steeeve/habitica_client

View on GitHub
lib/habitica_client/task/type.rb

Summary

Maintainability
A
0 mins
Test Coverage
class HabiticaClient::Task

  module Type

    def habit?
      type == 'habit'
    end

    def daily?
      type == 'daily'
    end

    def todo?
      type == 'todo'
    end

  end

end