rails_execution 0.1.8 → 0.1.9

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: 566c0596d18b5bbd18ff726beb02b0ce9f4c0fe8f4dfe376d235f4a175714915
4
- data.tar.gz: 233e83813184e919ba323fa577b29c620ae5c2c34c529518b676aaff4f2d7fd1
3
+ metadata.gz: 176aa147a9e384a353c1f435063461d203a6c4de3676889e6cb7f71a4a096ed3
4
+ data.tar.gz: 0ffe2b599d50639b46a02e13b520e22ef67a41da3b1967336072a623d1e06b15
5
5
  SHA512:
6
- metadata.gz: cbbbb5d454bda3f849d67edf860bf788c39b40d3a8a70685e57c448174694bd15187a306ac5e3556d5feedc67485531d56af6b9c88b7bbd79fb838e7c1de592a
7
- data.tar.gz: f2b80a8f6d5ebb98ca8f5a9ead50218c42bea603709d6816f1f29e92a9a2005a44c2c6cd0039e130e90574ea28ba000e34bc0cc25e49e5ecddbfd1f5ffb5a0f6
6
+ metadata.gz: '039e5794a629deeaca5552c77d29ea044863219744819ee451bbbbfdc45f9a990ad02342b7a1675942eba2d7c5333c2ff42a3cfcf2610c93b42003e39cdbcc5b'
7
+ data.tar.gz: 0b1e9d0010126b51b2990cc9dc45e78ad812790096123a30a8d4051a3cdad9c4c5e5974fc917c4a9f3ea61af8c93e4994b5817a26b7f81ef2cfb9b241c24aaeb
@@ -1,3 +1,3 @@
1
1
  - if task_attachment_files.any?
2
2
  = re_card_content do
3
- = render partial: 'attachments', locals: { task_attachment_files: }
3
+ = render partial: 'attachments', locals: { task_attachment_files: task_attachment_files }
@@ -31,7 +31,7 @@
31
31
  = f.datetime_local_field :scheduled_at, class: "form-control", placeholder: "Select Datetime"
32
32
  = f.select :repeat_mode, options_for_select(task.repeat_mode_select_options.invert, f.object.repeat_mode), {}, class: "form-control", disabled: !task.scheduled_at?
33
33
  - if RailsExecution.configuration.file_upload
34
- .mt-4= render partial: 'attachments', locals: { task_attachment_files: }
34
+ .mt-4= render partial: 'attachments', locals: { task_attachment_files: task_attachment_files }
35
35
  #attachment_files.mb-3
36
36
  %ul.list-unstyled= render partial: 'attachment_file_fields'
37
37
 
@@ -44,6 +44,9 @@ module RailsExecution
44
44
  class #{class_name} < ::RailsExecution::Services::Executor
45
45
  def call
46
46
  task.with_lock do
47
+ stop!('Task is being executed by another process') if task.is_processing?
48
+
49
+ task.update!(status: :processing)
47
50
  #{task.script}
48
51
  end
49
52
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsExecution
4
- VERSION = '0.1.8'
4
+ VERSION = '0.1.9'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_execution
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Khoa Nguyen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-11-02 00:00:00.000000000 Z
11
+ date: 2024-01-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: haml