rubyllm-observ 0.6.1 → 0.6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 726aef68722c3080dd618465ad2b3aa764c1b8c8c990ee03b6bd6609e61aa764
4
- data.tar.gz: 4c3afc1370f209a5a5449a0781d2e575782eb2b48c6d0a1b27d348de28113c73
3
+ metadata.gz: 041abc0d84639abe68047f213f9ebb0fdd0c466b37911c6b1252b058200fec4c
4
+ data.tar.gz: 81ee558216806f5ee968842ddbaf7c47e601dd479f083f2f35a31220b5a6650c
5
5
  SHA512:
6
- metadata.gz: fdb88952b685d2da5852c1a31ea484582af600d918eb76a806a6a8e5570137cd4fad2481a9bdae421b7c87e66039f7df580d72ec0aefab3d0ec9f462ce23406f
7
- data.tar.gz: 570c0d1c410645f9018421d3e1ddaac667a52f0725992f58f1d3b9b1442bf43f69e03d2105c884648770ebb481fe5d24246bb12468cdc5debef8b52945d9c983
6
+ metadata.gz: 78097776aa1399e6c8e8a31e7c17cc769472fdc45a67b778c0f80d6413c1d95a13abb1c5551768aaf77a6ad7395031437511a785278828ddbd7bcc4875dbbfd3
7
+ data.tar.gz: f4afb36b7ef715ba051d4ccd68b9ec545cda4e9f6a430b6c68fbf6b51a7cee44f3413ba1423e78e67a243033744a66e5043e4365acb5f063e1bd940b51559324
@@ -131,16 +131,6 @@ module Observ
131
131
  say "\n"
132
132
  end
133
133
 
134
- def create_view_partials
135
- say "Creating view partials...", :cyan
136
- say "-" * 80, :cyan
137
-
138
- template "views/messages/_content.html.erb.tt", "app/views/messages/_content.html.erb"
139
-
140
- say " ✓ Created messages/_content partial", :green
141
- say "\n"
142
- end
143
-
144
134
  def create_initializer
145
135
  say "Creating observability initializer...", :cyan
146
136
  say "-" * 80, :cyan
data/lib/observ/engine.rb CHANGED
@@ -17,16 +17,6 @@ module Observ
17
17
  end
18
18
  end
19
19
 
20
- # Asset configuration
21
- initializer "observ.assets" do |app|
22
- # Add engine assets to the asset pipeline
23
- if app.config.respond_to?(:assets)
24
- app.config.assets.paths << root.join("app/assets/stylesheets")
25
- app.config.assets.paths << root.join("app/assets/javascripts")
26
- app.config.assets.precompile += %w[ observ/application.css observ/application.js ]
27
- end
28
- end
29
-
30
20
  # Configure cache warming
31
21
  initializer "observ.configure_cache" do |app|
32
22
  config.after_initialize do
@@ -1,3 +1,3 @@
1
1
  module Observ
2
- VERSION = "0.6.1"
2
+ VERSION = "0.6.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubyllm-observ
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Franck D'agostini
@@ -446,7 +446,6 @@ files:
446
446
  - lib/generators/observ/install_chat/templates/migrations/add_agent_class_name.rb.tt
447
447
  - lib/generators/observ/install_chat/templates/migrations/add_observability_session_id.rb.tt
448
448
  - lib/generators/observ/install_chat/templates/tools/think_tool.rb.tt
449
- - lib/generators/observ/install_chat/templates/views/messages/_content.html.erb.tt
450
449
  - lib/observ.rb
451
450
  - lib/observ/asset_installer.rb
452
451
  - lib/observ/asset_syncer.rb