aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Setup the website skeleton with the kube themeMichael Gattozzi2019-11-256-0/+29
| | | | | | In the future a site with documentation and how to install the tool will be needed. This sets up a skeleton of a static site using Hugo and the kube theme. This will suffice for most needs for now.
* Add 'hooked init' testMichael Gattozzi2019-11-253-0/+432
| | | | | | | | | Up to this point testing of our command line tools just hasn't been happening. That's not great. While locally testing things by hand is possible, overtime various workflows will be harder to test by hand. By automating these tests we can avoid regressions that we wouldn't think to catch. Future work will involve working on adding tests for tools as they integrate together.
* Add commit message linting hook to the repoMichael Gattozzi2019-11-224-2/+51
| | | | | | | | | This adds a commit to handle git commit linting to enforce style by not allowing less than 10 or more than 50 chars for titles and less than or equal to 72 chars for the body. Chars are measured in number of graphemes as 50 chars represented in the terminal is what we want to use not 50 bytes. This will eventually be an installable hook for end users if they want it.
* Remove GitHub actions now that git hooks existMichael Gattozzi2019-11-221-71/+0
|
* Fix formatting and add checks to pre-commit hookMichael Gattozzi2019-11-223-7/+32
| | | | | | | | | This enables a pre-commit script and adding more pedantic checks to the commit. This means from now on all commits will be in a working state in the history and this enables us to build directly on master without worrying about it breaking the build. Where we're going we won't need feature branches anymore. This also fixes formatting issues that existed but the GitHub actions would not be able to catch at all.
* Add hooked and empty inited hooks from the toolMichael Gattozzi2019-11-2224-1/+131
| | | | | | | | | | | | | | | This adds the hooked binary to the dev-suite repo as well as a stub for a program to be used in this workflow! Hooked works by adding the hooks into the repo and setting them to executable and linking them into the hooks directory under .git. This means hooks get to travel with the repo and are source controlled. All a dev needs to do is run the init command and hooked will symlink them all for them. No need to remember how ln works. It's all handled for you. Future work will iterate about what hooks that dev-suite supplies as part of the script. This will involve configuration files and per repo settings are something that will need to be thought about. Closes Issue #2
* Move find_root function into the new shared crateMichael Gattozzi2019-11-217-59/+57
| | | | | | | | | | This cleans up the init function using the modified find_root function for ticket and moves it into a new shared crate so that other tools that might be built can use it. This means we can easily find the root of a git repo no matter where in the repo one is and build paths relative to it. Closes #3
* Create a ticket for a find_root functionMichael Gattozzi2019-11-211-0/+12
|
* Add tickets to the repoMichael Gattozzi2019-11-182-0/+20
|
* Change ticket/Cargo.toml to use non * versionsMichael Gattozzi2019-11-181-5/+5
|
* Bump anyhow from 1.0.19 to 1.0.22dependabot-preview[bot]2019-11-181-3/+3
| | | | | | | Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.19 to 1.0.22. - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.19...1.0.22) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* Add ticket functionality to dev-suite (#3)Michael Gattozzi2019-11-185-6/+568
| | | | | | | This adds the ability to open new tickets, close them, and show them from the commandline. This functionality is enough to get started adding more tickets to the repo from here on out and work on new tools with tickets associated with them.
* Setup CI for dev-suite (#1)Michael Gattozzi2019-11-151-0/+71
| | | * Setup CI for dev-suite
* Initialize the dev-suite repoMichael Gattozzi2019-11-157-0/+272
This commit initializes the repo with a stubbed out ticket tool and the rustfmt preferences for the repo. The idea is that dev-suite will allow remote collaboration by giving a lot of the functionality that GitHub and other services have, but have all of the data live alongside the repo and it's history. This makes choosing a different service easier and lets people who don't want to use the service have that option.