active_genie 0.29.0 → 0.29.1
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/README.md +1 -1
- data/VERSION +1 -1
- data/lib/tasks/test.rake +11 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d2f34c9574bf0d25b2411f3b65678fe3a83f243cf8f4d83f97964411ec737918
|
4
|
+
data.tar.gz: 19359a3fe3033791197b77adff4aba84346df4c7d16e6fa8c14f4cf5c08a274c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 203d650dd794406004379de0a356681a42b008da14c9b3a2e902a54444114e9ebce78c14c5f1edfa4af961c4dcc8a6591ef07b4efef1016b62743a12ac021424
|
7
|
+
data.tar.gz: 8a72b957973e192998e80d25e26b4acfa1c719886d181d2052c3a1aa463f187f194ff2468d888c27b7e4aacadd12043def0ad40e79e3bb98bd9c061c48dc415b
|
data/README.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.29.
|
1
|
+
0.29.1
|
data/lib/tasks/test.rake
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
namespace :test do
|
4
|
+
Rake::TestTask.new(:unit) do |t|
|
5
|
+
t.pattern = 'test/unit/**/*_test.rb'
|
6
|
+
end
|
7
|
+
|
8
|
+
Rake::TestTask.new(:integration) do |t|
|
9
|
+
t.pattern = 'test/integration/**/*_test.rb' # Or use _spec.rb for RSpec
|
10
|
+
end
|
11
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_genie
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.29.
|
4
|
+
version: 0.29.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Radamés Roriz
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-08-05 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |
|
14
14
|
ActiveGenie is a Ruby gem that helps developers build reliable, future-proof GenAI features without worrying about changing models, prompts, or providers. Like Lodash for GenAI, it offers simple, reusable modules for tasks like data extraction, scoring, and ranking, so you can focus on your app’s logic, not the shifting AI landscape.
|
@@ -78,6 +78,7 @@ files:
|
|
78
78
|
- lib/tasks/benchmark.rake
|
79
79
|
- lib/tasks/install.rake
|
80
80
|
- lib/tasks/templates/active_genie.rb
|
81
|
+
- lib/tasks/test.rake
|
81
82
|
homepage: https://github.com/Roriz/active_genie
|
82
83
|
licenses:
|
83
84
|
- Apache-2.0
|