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.
Files changed (30) hide show
  1. {bob_dev-0.2.0/src/bob_dev.egg-info → bob_dev-0.2.2}/PKG-INFO +1 -1
  2. {bob_dev-0.2.0 → bob_dev-0.2.2}/pyproject.toml +1 -1
  3. {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev/cli.py +11 -8
  4. {bob_dev-0.2.0 → bob_dev-0.2.2/src/bob_dev.egg-info}/PKG-INFO +1 -1
  5. {bob_dev-0.2.0 → bob_dev-0.2.2}/LICENSE +0 -0
  6. {bob_dev-0.2.0 → bob_dev-0.2.2}/README.md +0 -0
  7. {bob_dev-0.2.0 → bob_dev-0.2.2}/setup.cfg +0 -0
  8. {bob_dev-0.2.0 → bob_dev-0.2.2}/src/__init__.py +0 -0
  9. {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev/__init__.py +0 -0
  10. {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev/constants/__init__.py +0 -0
  11. {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev/constants/frameworks.py +0 -0
  12. {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev/services/__init__.py +0 -0
  13. {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev/services/claude.py +0 -0
  14. {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev/services/config.py +0 -0
  15. {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev/services/gitlab.py +0 -0
  16. {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev/services/jira.py +0 -0
  17. {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev/services/llm.py +0 -0
  18. {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev/services/project.py +0 -0
  19. {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev/services/terminal.py +0 -0
  20. {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev.egg-info/SOURCES.txt +0 -0
  21. {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev.egg-info/dependency_links.txt +0 -0
  22. {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev.egg-info/entry_points.txt +0 -0
  23. {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev.egg-info/requires.txt +0 -0
  24. {bob_dev-0.2.0 → bob_dev-0.2.2}/src/bob_dev.egg-info/top_level.txt +0 -0
  25. {bob_dev-0.2.0 → bob_dev-0.2.2}/tests/test_cli.py +0 -0
  26. {bob_dev-0.2.0 → bob_dev-0.2.2}/tests/test_config.py +0 -0
  27. {bob_dev-0.2.0 → bob_dev-0.2.2}/tests/test_jira.py +0 -0
  28. {bob_dev-0.2.0 → bob_dev-0.2.2}/tests/test_llm.py +0 -0
  29. {bob_dev-0.2.0 → bob_dev-0.2.2}/tests/test_project.py +0 -0
  30. {bob_dev-0.2.0 → bob_dev-0.2.2}/tests/test_terminal.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bob-dev
3
- Version: 0.2.0
3
+ Version: 0.2.2
4
4
  Summary: An AI developer to write code for you
5
5
  Author-email: Samuel Pereira dos Santos <samuelsantosdev@gmail.com>
6
6
  Requires-Python: >=3.14
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "bob-dev"
7
- version = "0.2.0"
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
- for key, val in [
326
- ("JIRA_URL", jira_url),
327
- ("JIRA_EMAIL", jira_email),
328
- ("JIRA_API_TOKEN", jira_token),
329
- ("GITLAB_URL", gitlab_url),
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
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bob-dev
3
- Version: 0.2.0
3
+ Version: 0.2.2
4
4
  Summary: An AI developer to write code for you
5
5
  Author-email: Samuel Pereira dos Santos <samuelsantosdev@gmail.com>
6
6
  Requires-Python: >=3.14
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