meta_workflows 0.8.13 → 0.8.15

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d9015440223978952f27962ee0ab6874eb14c12051d989ff87dfe8bfae4c462b
4
- data.tar.gz: 271384ac7cf272d847250c85b60aa9466c12dbe1c1ceab25c68ba5bda2b23e2e
3
+ metadata.gz: 1723e59bcb1187c0f399e13a47a36f723faf63e802949e1de286ea19d45c41e0
4
+ data.tar.gz: cf50da3efc3fb50b022d8b037a43becb3cb94577b0de94d85fe0a76e496ca5f3
5
5
  SHA512:
6
- metadata.gz: cb7519c4354e4ce0da6d40f5c5f6776fbf50ae6233694b4ac43665421c7f24fb3229c8b2be471ecff0738a530e728c131c009b0cc4fee11ea9d08cb02508e6be
7
- data.tar.gz: 46c3fb4f856be38b7894271557f18ae6ac461802e094f182a1db777d577a3224da11af75a0d74777ad2702fbb75a030e9d7bb9efe57e0dbdb0866b3a72ff9280
6
+ metadata.gz: a1f020ce6ca0db97c9f035a5473ba38fc24440f0de85062f7fc56be2c10fd2d66937daa82616923710b2c08a4264a245b85199c548fa5ab2d7311be68f6a5652
7
+ data.tar.gz: a6654329fb1662efdc6cf95c14a2405bc06d87d7af89f6d79c3ab3e8f65e7c29a3c27e27396005ce8157f771f57ede5136cb8407ba9c09ea68a26aee58337a8e
@@ -28,9 +28,9 @@
28
28
  <!-- Navigation Links -->
29
29
  <div class="flex space-x-8">
30
30
  <%= link_to "Workflows", workflows_path,
31
- class: "#{current_page?(workflows_path) || params[:controller].include?('workflow') ? 'text-blue-600 border-b-2 border-blue-600' : 'text-gray-500 hover:text-gray-700'} px-3 py-2 text-sm font-medium" %>
31
+ class: "#{current_page?(workflows_path) || params[:action] == 'workflows' || params[:action] == 'show_workflow' ? 'text-blue-600 border-b-2 border-blue-600' : 'text-gray-500 hover:text-gray-700'} px-3 py-2 text-sm font-medium" %>
32
32
  <%= link_to "Executions", executions_path,
33
- class: "#{current_page?(executions_path) || params[:controller].include?('execution') ? 'text-blue-600 border-b-2 border-blue-600' : 'text-gray-500 hover:text-gray-700'} px-3 py-2 text-sm font-medium" %>
33
+ class: "#{current_page?(executions_path) || params[:action] == 'executions' || params[:action] == 'show_execution' ? 'text-blue-600 border-b-2 border-blue-600' : 'text-gray-500 hover:text-gray-700'} px-3 py-2 text-sm font-medium" %>
34
34
  </div>
35
35
  </div>
36
36
  </div>
@@ -3,12 +3,7 @@
3
3
  data-controller="loading-phrases"
4
4
  data-loading-phrases-phrases-value="<%= (local_assigns[:step_progress] || ["Processing your request...", "Talking to the LLM..."]).to_json %>">
5
5
  <h2
6
- class="text-center font-semibold
7
- bg-gradient-to-r
8
- bg-[length:300%_100%] bg-right-bottom
9
- bg-clip-text [-webkit-text-fill-color:transparent]
10
- animate-gradient-shift"
11
- style="--tw-gradient-stops: #3182ce, #805ad5, #d53f8c, #3182ce;"
6
+ class="text-center font-semibold"
12
7
  data-loading-phrases-target="message"
13
8
  >
14
9
  Processing your request...
@@ -3,7 +3,7 @@
3
3
  module MetaWorkflows
4
4
  MAJOR = 0
5
5
  MINOR = 8
6
- PATCH = 13 # this is automatically incremented by the build process
6
+ PATCH = 15 # this is automatically incremented by the build process
7
7
 
8
8
  VERSION = "#{MetaWorkflows::MAJOR}.#{MetaWorkflows::MINOR}.#{MetaWorkflows::PATCH}".freeze
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: meta_workflows
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.13
4
+ version: 0.8.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leonid Medovyy