bob-dev 0.2.0__tar.gz → 0.2.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bob_dev-0.2.0/src/bob_dev.egg-info → bob_dev-0.2.2}/PKG-INFO +1 -1
- {bob_dev-0.2.0 → bob_dev-0.2.2}/pyproject.toml +1 -1
- {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev/cli.py +11 -8
- {bob_dev-0.2.0 → bob_dev-0.2.2/src/bob_dev.egg-info}/PKG-INFO +1 -1
- {bob_dev-0.2.0 → bob_dev-0.2.2}/LICENSE +0 -0
- {bob_dev-0.2.0 → bob_dev-0.2.2}/README.md +0 -0
- {bob_dev-0.2.0 → bob_dev-0.2.2}/setup.cfg +0 -0
- {bob_dev-0.2.0 → bob_dev-0.2.2}/src/__init__.py +0 -0
- {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev/__init__.py +0 -0
- {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev/constants/__init__.py +0 -0
- {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev/constants/frameworks.py +0 -0
- {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev/services/__init__.py +0 -0
- {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev/services/claude.py +0 -0
- {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev/services/config.py +0 -0
- {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev/services/gitlab.py +0 -0
- {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev/services/jira.py +0 -0
- {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev/services/llm.py +0 -0
- {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev/services/project.py +0 -0
- {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev/services/terminal.py +0 -0
- {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev.egg-info/SOURCES.txt +0 -0
- {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev.egg-info/dependency_links.txt +0 -0
- {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev.egg-info/entry_points.txt +0 -0
- {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev.egg-info/requires.txt +0 -0
- {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev.egg-info/top_level.txt +0 -0
- {bob_dev-0.2.0 → bob_dev-0.2.2}/tests/test_cli.py +0 -0
- {bob_dev-0.2.0 → bob_dev-0.2.2}/tests/test_config.py +0 -0
- {bob_dev-0.2.0 → bob_dev-0.2.2}/tests/test_jira.py +0 -0
- {bob_dev-0.2.0 → bob_dev-0.2.2}/tests/test_llm.py +0 -0
- {bob_dev-0.2.0 → bob_dev-0.2.2}/tests/test_project.py +0 -0
- {bob_dev-0.2.0 → bob_dev-0.2.2}/tests/test_terminal.py +0 -0
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "bob-dev"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.2"
|
|
8
8
|
description = "An AI developer to write code for you"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
authors = [{ name="Samuel Pereira dos Santos", email="samuelsantosdev@gmail.com" }]
|
|
@@ -317,19 +317,22 @@ def _run_configure() -> None:
|
|
|
317
317
|
jira_url = input("JIRA_URL (e.g. https://your-org.atlassian.net): ").strip()
|
|
318
318
|
jira_email = input("JIRA_EMAIL (your Atlassian account e-mail) : ").strip()
|
|
319
319
|
jira_token = input("JIRA_API_TOKEN (Atlassian API token) : ").strip()
|
|
320
|
+
for key, val in [
|
|
321
|
+
("JIRA_URL", jira_url),
|
|
322
|
+
("JIRA_EMAIL", jira_email),
|
|
323
|
+
("JIRA_API_TOKEN", jira_token),
|
|
324
|
+
]:
|
|
325
|
+
update_env_file(key, val, env_path)
|
|
320
326
|
if task_manager == "GITLAB":
|
|
321
327
|
# GitLab credentials.
|
|
322
328
|
print("\nGitLab configuration:")
|
|
323
329
|
gitlab_url = input("GITLAB_URL (e.g. https://gitlab.com) : ").strip()
|
|
324
330
|
gitlab_token = input("GITLAB_API_TOKEN (GitLab API token) : ").strip()
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
("GITLAB_API_TOKEN", gitlab_token),
|
|
331
|
-
]:
|
|
332
|
-
update_env_file(key, val, env_path)
|
|
331
|
+
for key, val in [
|
|
332
|
+
("GITLAB_URL", gitlab_url),
|
|
333
|
+
("GITLAB_API_TOKEN", gitlab_token),
|
|
334
|
+
]:
|
|
335
|
+
update_env_file(key, val, env_path)
|
|
333
336
|
|
|
334
337
|
print_success(f"{task_manager} configuration saved.")
|
|
335
338
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|