easy_ml 0.2.0.pre.rc6 → 0.2.0.pre.rc7
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/app/helpers/easy_ml/application_helper.rb +3 -4
- data/config/initializers/zeitwerk.rb +3 -0
- data/lib/easy_ml/engine.rb +0 -1
- data/lib/easy_ml/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 939e5f1e5b5e328d849ea8d1b2f02848a29f638a5cdbc26661abd702fbae37e6
|
4
|
+
data.tar.gz: d33d116fd6cc0b8b3f5f25886f203841930bfda63b66682dd3560147d5cf0ca2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 32ee68da33f6e8a8a373e254532584a7b97f8d2bbc56fffecbade419c65a487c3c1bdbfdaa7d2a99f3391890fe5029931381838365f84d63ac9d444a5ddb7dc8
|
7
|
+
data.tar.gz: caab7cbdcb4d7eb29ec8c6089cc427defae17e9933b89ff804d3c75ef9773e487dde8bb66eb5d195c797872d86049000f693e16edf7df6b9d49ae701ae900fcd
|
@@ -13,13 +13,12 @@ module EasyML
|
|
13
13
|
application_js = entrypoint.dig("file")
|
14
14
|
css_files = entrypoint.dig("css")
|
15
15
|
|
16
|
-
# Create HTML tags for the JavaScript and CSS
|
16
|
+
# Create HTML tags for the JavaScript and CSS using Rails tag helpers
|
17
17
|
tags = []
|
18
|
-
tags << "
|
18
|
+
tags << javascript_include_tag("/easy_ml/assets/#{application_js}", type: "module")
|
19
19
|
css_files.each do |css_file|
|
20
|
-
tags << "
|
20
|
+
tags << stylesheet_link_tag("/easy_ml/assets/#{css_file}")
|
21
21
|
end
|
22
|
-
|
23
22
|
tags.join("\n").html_safe
|
24
23
|
end
|
25
24
|
end
|
data/lib/easy_ml/engine.rb
CHANGED
data/lib/easy_ml/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: easy_ml
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.0.pre.
|
4
|
+
version: 0.2.0.pre.rc7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brett Shollenberger
|
@@ -579,6 +579,7 @@ files:
|
|
579
579
|
- app/serializers/easy_ml/settings_serializer.rb
|
580
580
|
- app/views/layouts/easy_ml/application.html.erb
|
581
581
|
- config/initializers/resque.rb
|
582
|
+
- config/initializers/zeitwerk.rb
|
582
583
|
- config/resque-pool.yml
|
583
584
|
- config/routes.rb
|
584
585
|
- config/spring.rb
|