meta_workflows 0.9.47 → 0.9.48
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/lib/meta_workflows/engine.rb +0 -8
- data/lib/meta_workflows/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f73884fe4647efbec73b9e0243f273b9a155321267e9fcd24fb17ca9c7d87c59
|
4
|
+
data.tar.gz: ff8f56395cbcd3b129f4023be16d35e833ba2f671f0e718ffadb17821004fd73
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa5fe4eab3d4edaaeed89f189af18d50fe4aba2674c50276288fa34ec454844ee1ade1d2e1371b111d8bb8e58b69e356c1c9402371e434a2edb79dcbfa33f522
|
7
|
+
data.tar.gz: c9c8528ca8c451dd719d6ac20708b56ff109180a83739d8710160380e845ca5f214e2e087dda021d79181d302f5a1cc80ddd13a4bcce31288a2fda7d24f1674c
|
@@ -30,14 +30,6 @@ module MetaWorkflows
|
|
30
30
|
end
|
31
31
|
end
|
32
32
|
|
33
|
-
# Load RubyLLM ActiveRecord extensions
|
34
|
-
initializer 'meta_workflows.ruby_llm' do
|
35
|
-
ActiveSupport.on_load :active_record do
|
36
|
-
require 'ruby_llm/active_record/acts_as'
|
37
|
-
include RubyLLM::ActiveRecord::ActsAs
|
38
|
-
end
|
39
|
-
end
|
40
|
-
|
41
33
|
# Configure routes
|
42
34
|
initializer 'meta_workflows.routes' do |app|
|
43
35
|
# Routes will be mounted by the host application
|
@@ -3,7 +3,7 @@
|
|
3
3
|
module MetaWorkflows
|
4
4
|
MAJOR = 0
|
5
5
|
MINOR = 9
|
6
|
-
PATCH =
|
6
|
+
PATCH = 48 # this is automatically incremented by the build process
|
7
7
|
|
8
8
|
VERSION = "#{MetaWorkflows::MAJOR}.#{MetaWorkflows::MINOR}.#{MetaWorkflows::PATCH}".freeze
|
9
9
|
end
|