easy_ml 0.2.0.pre.rc65 → 0.2.0.pre.rc69

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.
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.rc65
4
+ version: 0.2.0.pre.rc69
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brett Shollenberger
@@ -553,7 +553,6 @@ files:
553
553
  - app/jobs/easy_ml/clean_job.rb
554
554
  - app/jobs/easy_ml/compute_feature_job.rb
555
555
  - app/jobs/easy_ml/deploy_job.rb
556
- - app/jobs/easy_ml/finalize_feature_job.rb
557
556
  - app/jobs/easy_ml/refresh_dataset_job.rb
558
557
  - app/jobs/easy_ml/schedule_retraining_job.rb
559
558
  - app/jobs/easy_ml/sync_datasource_job.rb
@@ -749,8 +748,8 @@ files:
749
748
  - public/easy_ml/assets/.vite/manifest-assets.json
750
749
  - public/easy_ml/assets/.vite/manifest.json
751
750
  - public/easy_ml/assets/assets/Application-BbFobaXt.css
752
- - public/easy_ml/assets/assets/entrypoints/Application.tsx-v1q2Ux1T.js
753
- - public/easy_ml/assets/assets/entrypoints/Application.tsx-v1q2Ux1T.js.map
751
+ - public/easy_ml/assets/assets/entrypoints/Application.tsx-CibZcrBc.js
752
+ - public/easy_ml/assets/assets/entrypoints/Application.tsx-CibZcrBc.js.map
754
753
  homepage: https://github.com/brettshollenberger/easy_ml
755
754
  licenses:
756
755
  - MIT
@@ -1,13 +0,0 @@
1
- module EasyML
2
- class FinalizeFeatureJob < ApplicationJob
3
- queue_as :features
4
-
5
- def perform(feature_id)
6
- feature = EasyML::Feature.find(feature_id)
7
- feature.update!(
8
- applied_at: Time.current,
9
- needs_fit: false,
10
- )
11
- end
12
- end
13
- end