web47core 0.9.8 → 0.9.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: 8e0b1664a0cf7a2a9b435dd224f6f5399564c83340097c794e3c4ae345ca1767
4
- data.tar.gz: 046b4c0fedefdb6dcedbc788073ea1853c4aa5ff5ccd2412759f51f717733586
3
+ metadata.gz: 6478bbaee535d0c5da28a2789ffa8b8ebe1e6615ab49c7c6e4160ac30c06c3d1
4
+ data.tar.gz: 4f3a3d1bc035802f6d86f8b8a0b878ca53c1d100a523bb858c300f01b4dc4995
5
5
  SHA512:
6
- metadata.gz: ee44f34b70c2730d80af477a134dba80f0398313219cfcc49dbe4d0c339c746c8dd89821ffa5c974e4cbdc455859f0f4df6d9740a45fe29660b32f359a9c6267
7
- data.tar.gz: 603080da29cc1ca86b9d97b6710aa9e60529335182d9c8010db7ae769b6a69a9420946c8dbef68b82fcc213f130e3edd375e19905cef4e1832d66e6ff24f76ed
6
+ metadata.gz: 60bef8e8f95ee1b37eadf532b8a8cc164e97aaea38656999940009b30f1336e5a59c79781c53f6fe4cb3932bcfd58870d06e69cda8615801f0a1ef50ebf9c9bb
7
+ data.tar.gz: ae89618fb65cbabf97910e4b73c3064c9cc23d9411fd00c9f3348c6a125209b27bb860a058748a4c4073b18b32c610bc3b0393c5617eb411e0c6130e83dbe8aa
data/README.md CHANGED
@@ -145,6 +145,7 @@ Before starting the server, you need to run the database command
145
145
  ```mongo
146
146
  db.cron_tabs.updateMany({_type: 'JobCronTab'}, {$set: {_type: 'Cron::JobTab'}});
147
147
  ```
148
+
148
149
  #### Routes
149
150
  Update abilities to new class names
150
151
  CronTab, JobCronTab, CronJobServer to Cron::Tab, Cron::JobTab, Cron::Server
@@ -200,6 +201,12 @@ class CronController < AdminController
200
201
  rescue_from Mongoid::Errors::DocumentNotFound, with: :document_not_found_error
201
202
  end
202
203
  ```
204
+
205
+ To start or stop the cron server, run the bundler command:
206
+ ```
207
+ bundle exec cron_server start|stop
208
+ ```
209
+
203
210
  ##### DelayedJobController
204
211
  Update the DelayedJobController with something like below, and remove the views and any localization you might have made.
205
212
  ```ruby
@@ -214,6 +221,12 @@ class DelayedJobsController < AdminController
214
221
  rescue_from Mongoid::Errors::DocumentNotFound, with: :document_not_found_error
215
222
  end
216
223
  ```
224
+
225
+ To start or stop the delayed jobs, run the bundler command:
226
+ ```
227
+ bundle exec delayed_job start|stop
228
+ ```
229
+
217
230
  ##### StatusController
218
231
  Remove controller, views and localizations
219
232
  ##### SystemConfigurationsController
@@ -40,7 +40,7 @@ module CoreLinkHelper
40
40
  # Add the table action button and setup the drop down
41
41
  #
42
42
  def table_action_button(action_id, icon_name = 'more_horiz')
43
- datum = { activates: action_id,
43
+ datum = { target: action_id,
44
44
  constrainWidth: false,
45
45
  gutter: 28,
46
46
  alignment: 'right' }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Web47core
4
- VERSION = '0.9.8'
4
+ VERSION = '0.9.9'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: web47core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.8
4
+ version: 0.9.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Schroeder