tasks_scheduler 0.5.2 → 0.5.3
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/config/routes.rb +2 -2
- data/lib/tasks_scheduler/version.rb +1 -1
- data/test/dummy/app/assets/config/manifest.js +3 -0
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '08b56aa04ef47cc71afead7eba0a0a0bcffcce75150ed1d815007a7c94cba64a'
|
|
4
|
+
data.tar.gz: 9184d5e4a6a4d2d8b7044ac839e5b561bcffffef889b9e9a157da372a67c0fd2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e06dc3b3d2f3061138a31f82c85a72dbac2516bd327df714a04303c37864c5bd5390caae0d5fa19662e649dba07125f1ae90e8666b579ba68666fd8ffe67a85c
|
|
7
|
+
data.tar.gz: 032434d929f9f48f588eb6d124dca6c6254f688bc94bbac573a60ed1da9e053bb39e0d2a515a265750930f6f7ffb5b72a9ab88c9a60acca5c6db281253c9c492
|
data/config/routes.rb
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
Rails.application.routes.draw do
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
concern :active_scaffold, ActiveScaffold::Routing::Basic.new(association: true)
|
|
5
|
+
resources(:scheduled_tasks, concerns: :active_scaffold) do
|
|
6
6
|
collection do
|
|
7
7
|
get :status
|
|
8
8
|
get :status_content
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tasks_scheduler
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eduardo H. Bogoni
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-10-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: active_scaffold
|
|
@@ -208,6 +208,7 @@ files:
|
|
|
208
208
|
- lib/tasks_scheduler/version.rb
|
|
209
209
|
- test/dummy/README.rdoc
|
|
210
210
|
- test/dummy/Rakefile
|
|
211
|
+
- test/dummy/app/assets/config/manifest.js
|
|
211
212
|
- test/dummy/app/assets/javascripts/application.js
|
|
212
213
|
- test/dummy/app/assets/stylesheets/application.css
|
|
213
214
|
- test/dummy/app/controllers/application_controller.rb
|
|
@@ -293,6 +294,7 @@ test_files:
|
|
|
293
294
|
- test/dummy/app/views/layouts/application.html.erb
|
|
294
295
|
- test/dummy/app/controllers/application_controller.rb
|
|
295
296
|
- test/dummy/app/helpers/application_helper.rb
|
|
297
|
+
- test/dummy/app/assets/config/manifest.js
|
|
296
298
|
- test/dummy/app/assets/stylesheets/application.css
|
|
297
299
|
- test/dummy/app/assets/javascripts/application.js
|
|
298
300
|
- test/dummy/public/422.html
|