vim-rana-local/packages/wakatime/projects/base.py

51 lines
1.1 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
"""
wakatime.projects.base
~~~~~~~~~~~~~~~~~~~~~~
Base project for use when no other project can be found.
:copyright: (c) 2013 Alan Hamlett.
:license: BSD, see LICENSE for more details.
"""
import logging
2015-09-29 10:10:32 +00:00
from ..exceptions import NotYetImplemented
2014-07-25 09:45:35 +00:00
log = logging.getLogger('WakaTime')
2013-07-10 03:15:01 +00:00
class BaseProject(object):
""" Parent project class only
used when no valid project can
be found for the current path.
"""
def __init__(self, path, configs=None):
self.path = path
self._configs = configs
2013-07-10 03:15:01 +00:00
def process(self):
""" Processes self.path into a project and
returns True if project is valid, otherwise
returns False.
"""
2015-09-29 10:10:32 +00:00
raise NotYetImplemented()
2013-07-10 03:15:01 +00:00
def name(self):
""" Returns the project's name.
"""
2015-09-29 10:10:32 +00:00
raise NotYetImplemented()
def branch(self):
""" Returns the current branch.
2013-07-10 03:15:01 +00:00
"""
2015-09-29 10:10:32 +00:00
raise NotYetImplemented()
2018-09-21 05:23:11 +00:00
def folder(self):
""" Returns the project's top folder path.
"""
raise NotYetImplemented()