Skip to content

Commit

Permalink
chore(deps): update vendor/dotbot digest to 72aacb8 (.gitmodules)
Browse files Browse the repository at this point in the history
  • Loading branch information
IK Renovate Bot committed Jan 26, 2025
1 parent c085d44 commit f530d35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/dotbot
Submodule dotbot updated 60 files
+0 −6 .editorconfig
+0 −52 .github/workflows/build.yml
+76 −0 .github/workflows/ci.yml
+1 −9 .gitignore
+3 −0 CHANGELOG.md
+9 −43 CONTRIBUTING.md
+74 −0 DEVELOPMENT.md
+3 −2 README.md
+14 −16 bin/dotbot
+4 −0 codecov.yml
+0 −4 dotbot/__init__.py
+0 −4 dotbot/__main__.py
+0 −33 dotbot/context.py
+0 −78 dotbot/dispatcher.py
+0 −2 dotbot/messenger/__init__.py
+0 −7 dotbot/messenger/level.py
+0 −62 dotbot/messenger/messenger.py
+0 −4 dotbot/plugins/__init__.py
+0 −1 dotbot/util/__init__.py
+0 −7 dotbot/util/singleton.py
+0 −4 dotbot/util/string.py
+90 −16 pyproject.toml
+0 −73 setup.py
+6 −0 src/dotbot/__init__.py
+41 −55 src/dotbot/cli.py
+8 −10 src/dotbot/config.py
+43 −0 src/dotbot/context.py
+91 −0 src/dotbot/dispatcher.py
+4 −0 src/dotbot/messenger/__init__.py
+0 −0 src/dotbot/messenger/color.py
+36 −0 src/dotbot/messenger/level.py
+58 −0 src/dotbot/messenger/messenger.py
+7 −5 src/dotbot/plugin.py
+6 −0 src/dotbot/plugins/__init__.py
+16 −16 src/dotbot/plugins/clean.py
+13 −11 src/dotbot/plugins/create.py
+58 −73 src/dotbot/plugins/link.py
+13 −10 src/dotbot/plugins/shell.py
+3 −0 src/dotbot/util/__init__.py
+11 −3 src/dotbot/util/common.py
+8 −6 src/dotbot/util/module.py
+12 −0 src/dotbot/util/singleton.py
+4 −0 src/dotbot/util/string.py
+0 −0 tests/__init__.py
+56 −51 tests/conftest.py
+23 −0 tests/dotbot_plugin_context_plugin.py
+7 −5 tests/dotbot_plugin_directory.py
+23 −0 tests/dotbot_plugin_dispatcher_no_plugins.py
+8 −8 tests/dotbot_plugin_file.py
+24 −0 tests/dotbot_plugin_issue_357.py
+10 −8 tests/test_bin_dotbot.py
+13 −12 tests/test_clean.py
+73 −15 tests/test_cli.py
+7 −4 tests/test_config.py
+10 −4 tests/test_create.py
+108 −73 tests/test_link.py
+6 −6 tests/test_noop.py
+56 −17 tests/test_shell.py
+11 −11 tests/test_shim.py
+0 −76 tox.ini

0 comments on commit f530d35

Please sign in to comment.