aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2015-12-31Remove python 3.2 from travis CIGravatar Jon Bernard 1-1/+0
I'm seeing: E File "../py32/lib/python3.2/site-packages/click/utils.py", line 224 E message = message or u'' E ^ E SyntaxError: invalid syntax and it appears click doesn't test against 3.2 either.
2015-12-31Add new click-based CLIGravatar Jon Bernard 2-252/+43
2015-12-31Add tests for new repository implementationGravatar Jon Bernard 1-20/+123
2015-12-31Update base implementation for repository classGravatar Jon Bernard 1-19/+60
2015-12-31Add invalid test for dotfile classGravatar Jon Bernard 1-0/+17
2015-12-31Update dotfile __repr__ and initialize stateGravatar Jon Bernard 1-10/+8
2015-12-31Use new-style classes explicitlyGravatar Jon Bernard 2-2/+2
I forgot this is not the default in python 2 and certain things like the setter decorator do not work otherwise.
2015-12-31Add new requirements to setup.pyGravatar Jon Bernard 1-0/+4
This includes click and py, which are both being used in the recent updates.
2015-12-31Rename existing cli filesGravatar Jon Bernard 3-1/+271
I'm in the process of reimplementing the CLI using click and this new implementation will take the place of the existing one once it's feature complete.
2015-12-30Remove explicit envlist from tox.iniGravatar Jon Bernard 1-3/+0
2015-12-30Remove bin scriptGravatar Jon Bernard 3-23/+1
From what I've been reading, this approach has several limitations and since I use pip I've never really used it, even during development. I always use virtualenvs where the package and its entry point are installed with setuptools, so an explicit bin script seems like a relic of the past. I'll revisit this if people disagree.
2015-12-30Strip leading newline from list outputGravatar Jon Bernard 2-5/+5
2015-12-30Fix typo in state check functionGravatar Jon Bernard 1-1/+1
2015-12-30Use pytest parametrize to simplify testsGravatar Jon Bernard 1-73/+33
2015-12-29Add repository class reworkGravatar Jon Bernard 2-0/+98
This version of the repository class uses py.path.local and I have an idea for packages that should simplify the code substantially and address the remaining issues with prefixes.
2015-12-29Add dotfile functions for string representationGravatar Jon Bernard 1-0/+17
2015-12-29Fix typoGravatar Jon Bernard 1-1/+1
2015-12-29Add dotfile class reworkGravatar Jon Bernard 2-0/+155
This version of the dotfile class uses py.path.local and removes much of the cruft of using os.path and it's associated requirements. There are still a few things missing, namely dry_run mode where commands are printed instead of executed and force sync. They will be included as required.
2015-12-29Update docstring formattingGravatar Jon Bernard 1-3/+4
2015-12-29Move CLI tests into separate fileGravatar Jon Bernard 2-15/+16
The intent is for each file in dotfiles/ to have a matching test file in tests/ so there is less confusion about which test files are testing which bits of functionality and where to look.
2015-12-28Add package sync testGravatar Jon Bernard 1-0/+21
2015-12-28Create new location for sync testsGravatar Jon Bernard 2-19/+19
I'm going to migrate away from unittest capability in favor of pytest and its use of the py.path filesystem abstraction. It's much cleaner and easier to work with.
2015-12-28Move prefix tests to a separate fileGravatar Jon Bernard 2-27/+41
2015-12-28Remove release entry from tox configurationGravatar Jon Bernard 1-8/+0
2015-12-28Remove half-backed tests refactoringGravatar Jon Bernard 3-80/+19
2015-12-28Expand configuration file path earlyGravatar Jon Bernard 1-2/+3
2015-12-28Ignore '.cache' directoryGravatar Jon Bernard 1-0/+1
2015-12-28Ignore '.tox' whether it's a directory or symlinkGravatar Jon Bernard 1-1/+1
2015-12-28Update README image linksGravatar Jon Bernard 1-4/+5
2015-12-23Add py35 and pypy3 to the travis configurationGravatar Jon Bernard 1-0/+2
2015-12-23Add py35 to the tox envlistGravatar Jon Bernard 1-1/+1
2015-11-22Fix flake8 errorsGravatar Ratson 3-44/+47
2015-11-22Fix package and prefix testGravatar Ratson 2-3/+2
2015-02-24Drop support for python 2.6 in travis configurationGravatar Jon Bernard 1-1/+0
2015-02-21Fix outstanding flake8 issuesGravatar Jon Bernard 4-31/+37
2015-02-21Remove runtests.pyGravatar Jon Bernard 1-2970/+0
2015-02-21Update badge URLsGravatar Jon Bernard 1-3/+3
2015-02-21Add a tox target for new releasesGravatar Jon Bernard 1-0/+8
2015-02-21Run flake8 only on specific directoriesGravatar Jon Bernard 2-4/+1
2015-02-21dotfiles 0.6.4v0.6.4Gravatar Jon Bernard 2-1/+8
2015-01-13Add Ivan Malison to list of authorsGravatar Jon Bernard 1-0/+1
2015-01-13Add no_dot_prefix optionGravatar Ivan Malison 3-2/+28
This utility can easily be used for synchronizing arbitrary configuration folders with symlinks that may not necessarily be the home directory. I have encountered several use cases where the files that I want to manage with 'dotfiles' should not/can not be prefixed with a '.'. Fixes #47
2014-12-16Fix error in syntax for missing repo messageGravatar xujian 1-1/+1
Fixes #45
2014-12-05Update .gitignoreGravatar Jon Bernard 1-0/+10
2014-12-05Remove email addresses from AUTHORSGravatar Jon Bernard 1-8/+8
The info is available in the commit history, for some reason listing them explicitly bothers me.
2014-12-05Add Michael Barrett to AUTHORSGravatar Jon Bernard 1-0/+1
2014-12-02Expands ~'s in config file pathGravatar Michael Barrett 1-2/+1
2014-07-24Update tests to support recent cli and core changesGravatar Jon Bernard 1-17/+20
2014-07-24Cleanup cli and make use new repository constructorGravatar Jon Bernard 1-96/+96
2014-07-24Clean up kwargs handling in repository constructorGravatar Jon Bernard 1-15/+19
This add a defaults attribute where default values are stored instead of accumulating them in the cli. I think improves readability and is certainly easier to manage.