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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 176aa147a9e384a353c1f435063461d203a6c4de3676889e6cb7f71a4a096ed3
|
|
4
|
+
data.tar.gz: 0ffe2b599d50639b46a02e13b520e22ef67a41da3b1967336072a623d1e06b15
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '039e5794a629deeaca5552c77d29ea044863219744819ee451bbbbfdc45f9a990ad02342b7a1675942eba2d7c5333c2ff42a3cfcf2610c93b42003e39cdbcc5b'
|
|
7
|
+
data.tar.gz: 0b1e9d0010126b51b2990cc9dc45e78ad812790096123a30a8d4051a3cdad9c4c5e5974fc917c4a9f3ea61af8c93e4994b5817a26b7f81ef2cfb9b241c24aaeb
|
|
@@ -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
|
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.
|
|
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:
|
|
11
|
+
date: 2024-01-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: haml
|