ruby_todo 1.0.0 → 1.0.3
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.
- checksums.yaml +4 -4
- data/.rspec +1 -0
- data/CHANGELOG.md +10 -0
- data/README.md +20 -0
- data/db/migrate/20240328_add_is_default_to_notebooks.rb +10 -0
- data/delete_notebooks.rb +60 -10
- data/lib/ruby_todo/ai_assistant/common_query_handler.rb +378 -0
- data/lib/ruby_todo/ai_assistant/configuration_management.rb +27 -0
- data/lib/ruby_todo/ai_assistant/openai_integration.rb +337 -0
- data/lib/ruby_todo/ai_assistant/task_creation.rb +86 -0
- data/lib/ruby_todo/ai_assistant/task_management.rb +331 -0
- data/lib/ruby_todo/ai_assistant/task_search.rb +365 -0
- data/lib/ruby_todo/cli.rb +294 -149
- data/lib/ruby_todo/commands/ai_assistant.rb +341 -345
- data/lib/ruby_todo/database.rb +58 -84
- data/lib/ruby_todo/models/notebook.rb +44 -10
- data/lib/ruby_todo/version.rb +1 -1
- data/progress_ai_test.md +126 -0
- data/protectors_tasks.json +159 -0
- data/test_ai_assistant.rb +55 -0
- data/test_migration.rb +55 -0
- metadata +13 -1
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby_todo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeremiah Parrack
|
@@ -201,6 +201,7 @@ extensions: []
|
|
201
201
|
extra_rdoc_files: []
|
202
202
|
files:
|
203
203
|
- ".env.template"
|
204
|
+
- ".rspec"
|
204
205
|
- ".rubocop.yml"
|
205
206
|
- CHANGELOG.md
|
206
207
|
- CODE_OF_CONDUCT.md
|
@@ -210,10 +211,17 @@ files:
|
|
210
211
|
- README.md
|
211
212
|
- Rakefile
|
212
213
|
- ai_assistant_implementation.md
|
214
|
+
- db/migrate/20240328_add_is_default_to_notebooks.rb
|
213
215
|
- delete_notebooks.rb
|
214
216
|
- exe/ruby_todo
|
215
217
|
- implementation_steps.md
|
216
218
|
- lib/ruby_todo.rb
|
219
|
+
- lib/ruby_todo/ai_assistant/common_query_handler.rb
|
220
|
+
- lib/ruby_todo/ai_assistant/configuration_management.rb
|
221
|
+
- lib/ruby_todo/ai_assistant/openai_integration.rb
|
222
|
+
- lib/ruby_todo/ai_assistant/task_creation.rb
|
223
|
+
- lib/ruby_todo/ai_assistant/task_management.rb
|
224
|
+
- lib/ruby_todo/ai_assistant/task_search.rb
|
217
225
|
- lib/ruby_todo/cli.rb
|
218
226
|
- lib/ruby_todo/commands/ai_assistant.rb
|
219
227
|
- lib/ruby_todo/database.rb
|
@@ -221,7 +229,11 @@ files:
|
|
221
229
|
- lib/ruby_todo/models/task.rb
|
222
230
|
- lib/ruby_todo/models/template.rb
|
223
231
|
- lib/ruby_todo/version.rb
|
232
|
+
- progress_ai_test.md
|
233
|
+
- protectors_tasks.json
|
224
234
|
- sig/ruby_todo.rbs
|
235
|
+
- test_ai_assistant.rb
|
236
|
+
- test_migration.rb
|
225
237
|
homepage: https://github.com/jeremiahlukus/ruby_todo
|
226
238
|
licenses:
|
227
239
|
- MIT
|