easy_ml 0.2.0.pre.rc25 → 0.2.0.pre.rc27

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 61412c7afa488429225fc003a6ee9d3057e21e6bfad010f645d3fcd672710fe0
4
- data.tar.gz: b456261b6d9c20c3b38c075a37a6d7e4a9f3940869f7797014fd57cf35c54127
3
+ metadata.gz: e4a6be2396661a707287673f29f34b1426c0005053fca274186785aafb42cf24
4
+ data.tar.gz: 8ef025d108be48a12b865c988c1ee68988e3845a618e7f46c5bd0bcd9c13f603
5
5
  SHA512:
6
- metadata.gz: 7db55091458d91a3ce5354ffc8cbda2f0a48b96be3c939f5ee315054e2bfa9647b1b0627e94c2cb779d20a23ad4c402572a6331ef4078354980dad29fd842ce7
7
- data.tar.gz: 66341ea0787e4ae53e8c53a4d1748efc81f121eac9960e74d85925a79084a59c3c57b755710eb936d53b06df1c7eb355c7c65720b79dfce89f270efb38390140
6
+ metadata.gz: a3b2b3fc9e5b3adbe0e294e4bbab9f453d2c064a9aac55c134df79a43966ea2bb6acb16422956687c36f3949456b6925f25d998816e22ec86bddf1bedf79e66a
7
+ data.tar.gz: 75233c8e49b8c1998a091991144fc90bf7203f26c054590d8851e403352339925634084bef3c860d0be244a11f48ccca047afca1f33f85fcf33028fdc5b84f88
@@ -2,7 +2,6 @@ module EasyML
2
2
  class HealthController < ApplicationController
3
3
  # No authentication or CSRF checks for this action
4
4
  skip_before_action :verify_authenticity_token
5
- skip_before_action :force_ssl
6
5
 
7
6
  def up
8
7
  render json: { status: "OK" }, status: :ok
@@ -49,7 +49,7 @@ module EasyML
49
49
  Polars.enable_string_cache
50
50
  end
51
51
 
52
- if %w[db:migrate db:migrate:status db:setup db:drop].include?(ARGV.first)
52
+ if %w[db:migrate db:migrate:status db:setup db:drop assets:precompile].include?(ARGV.first)
53
53
  config.eager_load_paths = config.eager_load_paths.without(config.eager_load_paths.map(&:to_s).grep(/easy_ml/).map { |p| Pathname.new(p) })
54
54
  else
55
55
  config.after_initialize do
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EasyML
4
- VERSION = "0.2.0-rc25"
4
+ VERSION = "0.2.0-rc27"
5
5
 
6
6
  module Version
7
7
  end
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.rc25
4
+ version: 0.2.0.pre.rc27
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brett Shollenberger