tasks_scheduler 0.6.3 → 0.6.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +1 -12
  3. data/lib/tasks_scheduler/version.rb +1 -1
  4. metadata +17 -81
  5. data/test/dummy/README.rdoc +0 -28
  6. data/test/dummy/Rakefile +0 -8
  7. data/test/dummy/app/assets/config/manifest.js +0 -3
  8. data/test/dummy/app/assets/javascripts/application.js +0 -13
  9. data/test/dummy/app/assets/stylesheets/application.css +0 -15
  10. data/test/dummy/app/controllers/application_controller.rb +0 -7
  11. data/test/dummy/app/helpers/application_helper.rb +0 -4
  12. data/test/dummy/app/views/layouts/application.html.erb +0 -12
  13. data/test/dummy/bin/bundle +0 -5
  14. data/test/dummy/bin/rails +0 -6
  15. data/test/dummy/bin/rake +0 -6
  16. data/test/dummy/bin/setup +0 -31
  17. data/test/dummy/config.ru +0 -6
  18. data/test/dummy/config/application.rb +0 -27
  19. data/test/dummy/config/boot.rb +0 -7
  20. data/test/dummy/config/database.yml +0 -25
  21. data/test/dummy/config/environment.rb +0 -7
  22. data/test/dummy/config/environments/development.rb +0 -43
  23. data/test/dummy/config/environments/production.rb +0 -83
  24. data/test/dummy/config/environments/test.rb +0 -44
  25. data/test/dummy/config/initializers/assets.rb +0 -13
  26. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -10
  27. data/test/dummy/config/initializers/cookies_serializer.rb +0 -5
  28. data/test/dummy/config/initializers/filter_parameter_logging.rb +0 -6
  29. data/test/dummy/config/initializers/inflections.rb +0 -17
  30. data/test/dummy/config/initializers/mime_types.rb +0 -5
  31. data/test/dummy/config/initializers/session_store.rb +0 -5
  32. data/test/dummy/config/initializers/wrap_parameters.rb +0 -16
  33. data/test/dummy/config/locales/en.yml +0 -23
  34. data/test/dummy/config/routes.rb +0 -58
  35. data/test/dummy/config/secrets.yml +0 -22
  36. data/test/dummy/db/schema.rb +0 -33
  37. data/test/dummy/public/404.html +0 -67
  38. data/test/dummy/public/422.html +0 -67
  39. data/test/dummy/public/500.html +0 -66
  40. data/test/dummy/public/favicon.ico +0 -0
  41. data/test/fixtures/scheduled_tasks.yml +0 -6
  42. data/test/models/scheduled_task_test.rb +0 -98
  43. data/test/test_helper.rb +0 -38
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 10b67fe8f23b139ef5acc62a230c82d5225de4582e229b0734c9edfa5c3769c5
4
- data.tar.gz: 0504f08785e02d1e4b9df474619581960f7998c53e5851139178959415fa06f0
3
+ metadata.gz: 0f7d389947fe82273b84d5957b4ed1410231ea2fe6f68ebf088c7e2459d17ec8
4
+ data.tar.gz: b1828ea69d0a99f8d4a888ee1643b26512278c7ee1ff18736551ae336ea29f06
5
5
  SHA512:
6
- metadata.gz: a799c55ccd43e245019159e65152d7de47015fbd8a4bb7cdfac1b108d39f53fb5548acdc1aa606f779d39b27c7129f8e96418568a95f0619522da86a5de063cc
7
- data.tar.gz: 544a33fcedf6126c73158fa4f8ae0b71d1662873ea66ff1fcc1d964fb5365666932eaa34e97557b4428898ba46484bb9963dbf4be1dcf37eed1f0a0641d096b6
6
+ metadata.gz: 3b4291b1ac933033c54450036bfe9c9dd3dd135a10ac7e0f950b7052df0cb1b981080cc261a09ec04b0b933800efff2aa88cc5dcc5e30d22f7d8113d7be6e5fe
7
+ data.tar.gz: 3e04c17f98462a13e659fdae16122c5e17bda28d398c0e543774efef49f561a637e9889c0baaa617f41f0bd871a9293069eb0fd81bdf4f1045c6b49a727def8d
data/Rakefile CHANGED
@@ -16,20 +16,9 @@ RDoc::Task.new(:rdoc) do |rdoc|
16
16
  rdoc.rdoc_files.include('lib/**/*.rb')
17
17
  end
18
18
 
19
- APP_RAKEFILE = File.expand_path('test/dummy/Rakefile', __dir__)
19
+ APP_RAKEFILE = File.expand_path('spec/support/rails_app/Rakefile', __dir__)
20
20
  load 'rails/tasks/engine.rake'
21
21
 
22
22
  load 'rails/tasks/statistics.rake'
23
23
 
24
24
  Bundler::GemHelper.install_tasks
25
-
26
- require 'rake/testtask'
27
-
28
- Rake::TestTask.new(:test) do |t|
29
- t.libs << 'lib'
30
- t.libs << 'test'
31
- t.pattern = 'test/**/*_test.rb'
32
- t.verbose = false
33
- end
34
-
35
- task default: :test
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TasksScheduler
4
- VERSION = '0.6.3'
4
+ VERSION = '0.6.4'
5
5
  end
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.6.3
4
+ version: 0.6.4
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: 2021-07-16 00:00:00.000000000 Z
11
+ date: 2021-07-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: active_scaffold
@@ -140,6 +140,20 @@ dependencies:
140
140
  - - "~>"
141
141
  - !ruby/object:Gem::Version
142
142
  version: '0.2'
143
+ - !ruby/object:Gem::Dependency
144
+ name: rspec-rails
145
+ requirement: !ruby/object:Gem::Requirement
146
+ requirements:
147
+ - - "~>"
148
+ - !ruby/object:Gem::Version
149
+ version: '3.8'
150
+ type: :development
151
+ prerelease: false
152
+ version_requirements: !ruby/object:Gem::Requirement
153
+ requirements:
154
+ - - "~>"
155
+ - !ruby/object:Gem::Version
156
+ version: '3.8'
143
157
  - !ruby/object:Gem::Dependency
144
158
  name: sqlite3
145
159
  requirement: !ruby/object:Gem::Requirement
@@ -213,45 +227,6 @@ files:
213
227
  - lib/tasks_scheduler/engine.rb
214
228
  - lib/tasks_scheduler/info.rb
215
229
  - lib/tasks_scheduler/version.rb
216
- - test/dummy/README.rdoc
217
- - test/dummy/Rakefile
218
- - test/dummy/app/assets/config/manifest.js
219
- - test/dummy/app/assets/javascripts/application.js
220
- - test/dummy/app/assets/stylesheets/application.css
221
- - test/dummy/app/controllers/application_controller.rb
222
- - test/dummy/app/helpers/application_helper.rb
223
- - test/dummy/app/views/layouts/application.html.erb
224
- - test/dummy/bin/bundle
225
- - test/dummy/bin/rails
226
- - test/dummy/bin/rake
227
- - test/dummy/bin/setup
228
- - test/dummy/config.ru
229
- - test/dummy/config/application.rb
230
- - test/dummy/config/boot.rb
231
- - test/dummy/config/database.yml
232
- - test/dummy/config/environment.rb
233
- - test/dummy/config/environments/development.rb
234
- - test/dummy/config/environments/production.rb
235
- - test/dummy/config/environments/test.rb
236
- - test/dummy/config/initializers/assets.rb
237
- - test/dummy/config/initializers/backtrace_silencers.rb
238
- - test/dummy/config/initializers/cookies_serializer.rb
239
- - test/dummy/config/initializers/filter_parameter_logging.rb
240
- - test/dummy/config/initializers/inflections.rb
241
- - test/dummy/config/initializers/mime_types.rb
242
- - test/dummy/config/initializers/session_store.rb
243
- - test/dummy/config/initializers/wrap_parameters.rb
244
- - test/dummy/config/locales/en.yml
245
- - test/dummy/config/routes.rb
246
- - test/dummy/config/secrets.yml
247
- - test/dummy/db/schema.rb
248
- - test/dummy/public/404.html
249
- - test/dummy/public/422.html
250
- - test/dummy/public/500.html
251
- - test/dummy/public/favicon.ico
252
- - test/fixtures/scheduled_tasks.yml
253
- - test/models/scheduled_task_test.rb
254
- - test/test_helper.rb
255
230
  homepage: https://github.com/esquilo-azul/tasks_scheduler
256
231
  licenses:
257
232
  - MIT
@@ -275,43 +250,4 @@ rubygems_version: 3.1.6
275
250
  signing_key:
276
251
  specification_version: 4
277
252
  summary: Scheduler for Rake tasks.
278
- test_files:
279
- - test/dummy/Rakefile
280
- - test/dummy/README.rdoc
281
- - test/dummy/config.ru
282
- - test/dummy/config/boot.rb
283
- - test/dummy/config/database.yml
284
- - test/dummy/config/secrets.yml
285
- - test/dummy/config/locales/en.yml
286
- - test/dummy/config/application.rb
287
- - test/dummy/config/environments/development.rb
288
- - test/dummy/config/environments/test.rb
289
- - test/dummy/config/environments/production.rb
290
- - test/dummy/config/environment.rb
291
- - test/dummy/config/routes.rb
292
- - test/dummy/config/initializers/assets.rb
293
- - test/dummy/config/initializers/cookies_serializer.rb
294
- - test/dummy/config/initializers/inflections.rb
295
- - test/dummy/config/initializers/session_store.rb
296
- - test/dummy/config/initializers/wrap_parameters.rb
297
- - test/dummy/config/initializers/filter_parameter_logging.rb
298
- - test/dummy/config/initializers/backtrace_silencers.rb
299
- - test/dummy/config/initializers/mime_types.rb
300
- - test/dummy/db/schema.rb
301
- - test/dummy/app/views/layouts/application.html.erb
302
- - test/dummy/app/controllers/application_controller.rb
303
- - test/dummy/app/helpers/application_helper.rb
304
- - test/dummy/app/assets/config/manifest.js
305
- - test/dummy/app/assets/stylesheets/application.css
306
- - test/dummy/app/assets/javascripts/application.js
307
- - test/dummy/public/422.html
308
- - test/dummy/public/404.html
309
- - test/dummy/public/favicon.ico
310
- - test/dummy/public/500.html
311
- - test/dummy/bin/bundle
312
- - test/dummy/bin/setup
313
- - test/dummy/bin/rails
314
- - test/dummy/bin/rake
315
- - test/test_helper.rb
316
- - test/fixtures/scheduled_tasks.yml
317
- - test/models/scheduled_task_test.rb
253
+ test_files: []
@@ -1,28 +0,0 @@
1
- == README
2
-
3
- This README would normally document whatever steps are necessary to get the
4
- application up and running.
5
-
6
- Things you may want to cover:
7
-
8
- * Ruby version
9
-
10
- * System dependencies
11
-
12
- * Configuration
13
-
14
- * Database creation
15
-
16
- * Database initialization
17
-
18
- * How to run the test suite
19
-
20
- * Services (job queues, cache servers, search engines, etc.)
21
-
22
- * Deployment instructions
23
-
24
- * ...
25
-
26
-
27
- Please feel free to use a different markup language if you do not plan to run
28
- <tt>rake doc:app</tt>.
data/test/dummy/Rakefile DELETED
@@ -1,8 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Add your own tasks in files placed in lib/tasks ending in .rake,
4
- # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
5
-
6
- require File.expand_path('config/application', __dir__)
7
-
8
- Rails.application.load_tasks
@@ -1,3 +0,0 @@
1
- //= link_tree ../images
2
- //= link_directory ../javascripts .js
3
- //= link_directory ../stylesheets .css
@@ -1,13 +0,0 @@
1
- // This is a manifest file that'll be compiled into application.js, which will include all the files
2
- // listed below.
3
- //
4
- // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
- // or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
6
- //
7
- // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
- // compiled file.
9
- //
10
- // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
- // about supported directives.
12
- //
13
- //= require_tree .
@@ -1,15 +0,0 @@
1
- /*
2
- * This is a manifest file that'll be compiled into application.css, which will include all the files
3
- * listed below.
4
- *
5
- * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
- * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
- *
8
- * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
- * compiled file so the styles you add here take precedence over styles defined in any styles
10
- * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
11
- * file per style scope.
12
- *
13
- *= require_tree .
14
- *= require_self
15
- */
@@ -1,7 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- class ApplicationController < ActionController::Base
4
- # Prevent CSRF attacks by raising an exception.
5
- # For APIs, you may want to use :null_session instead.
6
- protect_from_forgery with: :exception
7
- end
@@ -1,4 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module ApplicationHelper
4
- end
@@ -1,12 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>Dummy</title>
5
- <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
6
- <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
7
- <%= csrf_meta_tags %>
8
- </head>
9
- <body>
10
- <%= yield %>
11
- </body>
12
- </html>
@@ -1,5 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
-
4
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
5
- load Gem.bin_path('bundler', 'bundle')
data/test/dummy/bin/rails DELETED
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
-
4
- APP_PATH = File.expand_path('../config/application', __dir__)
5
- require_relative '../config/boot'
6
- require 'rails/commands'
data/test/dummy/bin/rake DELETED
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
-
4
- require_relative '../config/boot'
5
- require 'rake'
6
- Rake.application.run
data/test/dummy/bin/setup DELETED
@@ -1,31 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
-
4
- require 'pathname'
5
-
6
- # path to your application root.
7
- APP_ROOT = Pathname.new File.expand_path('..', __dir__)
8
-
9
- Dir.chdir APP_ROOT do
10
- # This script is a starting point to setup your application.
11
- # Add necessary setup steps to this file:
12
-
13
- puts '== Installing dependencies =='
14
- system 'gem install bundler --conservative'
15
- system 'bundle check || bundle install'
16
-
17
- # puts "\n== Copying sample files =="
18
- # unless File.exist?("config/database.yml")
19
- # system "cp config/database.yml.sample config/database.yml"
20
- # end
21
-
22
- puts "\n== Preparing database =="
23
- system 'bin/rake db:setup'
24
-
25
- puts "\n== Removing old logs and tempfiles =="
26
- system 'rm -f log/*'
27
- system 'rm -rf tmp/cache'
28
-
29
- puts "\n== Restarting application server =="
30
- system 'touch tmp/restart.txt'
31
- end
data/test/dummy/config.ru DELETED
@@ -1,6 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # This file is used by Rack-based servers to start the application.
4
-
5
- require ::File.expand_path('../config/environment', __FILE__)
6
- run Rails.application
@@ -1,27 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require File.expand_path('boot', __dir__)
4
-
5
- require 'rails/all'
6
-
7
- Bundler.require(*Rails.groups)
8
- require 'tasks_scheduler'
9
-
10
- module Dummy
11
- class Application < Rails::Application
12
- # Settings in config/environments/* take precedence over those specified here.
13
- # Application configuration should go into files in config/initializers
14
- # -- all .rb files in that directory are automatically loaded.
15
-
16
- # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
17
- # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
18
- # config.time_zone = 'Central Time (US & Canada)'
19
-
20
- # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
21
- # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
22
- # config.i18n.default_locale = :de
23
-
24
- # Do not swallow errors in after_commit/after_rollback callbacks.
25
- config.active_record.raise_in_transactional_callbacks = true
26
- end
27
- end
@@ -1,7 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Set up gems listed in the Gemfile.
4
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../Gemfile', __dir__)
5
-
6
- require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
7
- $LOAD_PATH.unshift File.expand_path('../../../lib', __dir__)
@@ -1,25 +0,0 @@
1
- # SQLite version 3.x
2
- # gem install sqlite3
3
- #
4
- # Ensure the SQLite 3 gem is defined in your Gemfile
5
- # gem 'sqlite3'
6
- #
7
- default: &default
8
- adapter: sqlite3
9
- pool: 5
10
- timeout: 5000
11
-
12
- development:
13
- <<: *default
14
- database: db/development.sqlite3
15
-
16
- # Warning: The database defined as "test" will be erased and
17
- # re-generated from your development database when you run "rake".
18
- # Do not set this db to the same as development or production.
19
- test:
20
- <<: *default
21
- database: db/test.sqlite3
22
-
23
- production:
24
- <<: *default
25
- database: db/production.sqlite3
@@ -1,7 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Load the Rails application.
4
- require File.expand_path('application', __dir__)
5
-
6
- # Initialize the Rails application.
7
- Rails.application.initialize!
@@ -1,43 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- Rails.application.configure do
4
- # Settings specified here will take precedence over those in config/application.rb.
5
-
6
- # In the development environment your application's code is reloaded on
7
- # every request. This slows down response time but is perfect for development
8
- # since you don't have to restart the web server when you make code changes.
9
- config.cache_classes = false
10
-
11
- # Do not eager load code on boot.
12
- config.eager_load = false
13
-
14
- # Show full error reports and disable caching.
15
- config.consider_all_requests_local = true
16
- config.action_controller.perform_caching = false
17
-
18
- # Don't care if the mailer can't send.
19
- config.action_mailer.raise_delivery_errors = false
20
-
21
- # Print deprecation notices to the Rails logger.
22
- config.active_support.deprecation = :log
23
-
24
- # Raise an error on page load if there are pending migrations.
25
- config.active_record.migration_error = :page_load
26
-
27
- # Debug mode disables concatenation and preprocessing of assets.
28
- # This option may cause significant delays in view rendering with a large
29
- # number of complex assets.
30
- config.assets.debug = true
31
-
32
- # Asset digests allow you to set far-future HTTP expiration dates on all assets,
33
- # yet still be able to expire them through the digest params.
34
- config.assets.digest = true
35
-
36
- # Adds additional error checking when serving assets at runtime.
37
- # Checks for improperly declared sprockets dependencies.
38
- # Raises helpful error messages.
39
- config.assets.raise_runtime_errors = true
40
-
41
- # Raises error for missing translations
42
- # config.action_view.raise_on_missing_translations = true
43
- end
@@ -1,83 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- Rails.application.configure do
4
- # Settings specified here will take precedence over those in config/application.rb.
5
-
6
- # Code is not reloaded between requests.
7
- config.cache_classes = true
8
-
9
- # Eager load code on boot. This eager loads most of Rails and
10
- # your application in memory, allowing both threaded web servers
11
- # and those relying on copy on write to perform better.
12
- # Rake tasks automatically ignore this option for performance.
13
- config.eager_load = true
14
-
15
- # Full error reports are disabled and caching is turned on.
16
- config.consider_all_requests_local = false
17
- config.action_controller.perform_caching = true
18
-
19
- # Enable Rack::Cache to put a simple HTTP cache in front of your application
20
- # Add `rack-cache` to your Gemfile before enabling this.
21
- # For large-scale production use, consider using a caching reverse proxy like
22
- # NGINX, varnish or squid.
23
- # config.action_dispatch.rack_cache = true
24
-
25
- # Disable serving static files from the `/public` folder by default since
26
- # Apache or NGINX already handles this.
27
- config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
28
-
29
- # Compress JavaScripts and CSS.
30
- config.assets.js_compressor = :uglifier
31
- # config.assets.css_compressor = :sass
32
-
33
- # Do not fallback to assets pipeline if a precompiled asset is missed.
34
- config.assets.compile = false
35
-
36
- # Asset digests allow you to set far-future HTTP expiration dates on all assets,
37
- # yet still be able to expire them through the digest params.
38
- config.assets.digest = true
39
-
40
- # `config.assets.precompile` and `config.assets.version` have moved to
41
- # config/initializers/assets.rb
42
-
43
- # Specifies the header that your server uses for sending files.
44
- # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
45
- # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
46
-
47
- # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
48
- # config.force_ssl = true
49
-
50
- # Use the lowest log level to ensure availability of diagnostic information
51
- # when problems arise.
52
- config.log_level = :debug
53
-
54
- # Prepend all log lines with the following tags.
55
- # config.log_tags = [ :subdomain, :uuid ]
56
-
57
- # Use a different logger for distributed setups.
58
- # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
59
-
60
- # Use a different cache store in production.
61
- # config.cache_store = :mem_cache_store
62
-
63
- # Enable serving of images, stylesheets, and JavaScripts from an asset server.
64
- # config.action_controller.asset_host = 'http://assets.example.com'
65
-
66
- # Ignore bad email addresses and do not raise email delivery errors.
67
- # Set this to true and configure the email server for immediate delivery to raise delivery
68
- # errors.
69
- # config.action_mailer.raise_delivery_errors = false
70
-
71
- # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
72
- # the I18n.default_locale when a translation cannot be found).
73
- config.i18n.fallbacks = true
74
-
75
- # Send deprecation notices to registered listeners.
76
- config.active_support.deprecation = :notify
77
-
78
- # Use default logging formatter so that PID and timestamp are not suppressed.
79
- config.log_formatter = ::Logger::Formatter.new
80
-
81
- # Do not dump schema after migrations.
82
- config.active_record.dump_schema_after_migration = false
83
- end
@@ -1,44 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- Rails.application.configure do
4
- # Settings specified here will take precedence over those in config/application.rb.
5
-
6
- # The test environment is used exclusively to run your application's
7
- # test suite. You never need to work with it otherwise. Remember that
8
- # your test database is "scratch space" for the test suite and is wiped
9
- # and recreated between test runs. Don't rely on the data there!
10
- config.cache_classes = true
11
-
12
- # Do not eager load code on boot. This avoids loading your whole application
13
- # just for the purpose of running a single test. If you are using a tool that
14
- # preloads Rails for running tests, you may have to set it to true.
15
- config.eager_load = false
16
-
17
- # Configure static file server for tests with Cache-Control for performance.
18
- config.serve_static_files = true
19
- config.static_cache_control = 'public, max-age=3600'
20
-
21
- # Show full error reports and disable caching.
22
- config.consider_all_requests_local = true
23
- config.action_controller.perform_caching = false
24
-
25
- # Raise exceptions instead of rendering exception templates.
26
- config.action_dispatch.show_exceptions = false
27
-
28
- # Disable request forgery protection in test environment.
29
- config.action_controller.allow_forgery_protection = false
30
-
31
- # Tell Action Mailer not to deliver emails to the real world.
32
- # The :test delivery method accumulates sent emails in the
33
- # ActionMailer::Base.deliveries array.
34
- config.action_mailer.delivery_method = :test
35
-
36
- # Randomize the order test cases are executed.
37
- config.active_support.test_order = :random
38
-
39
- # Print deprecation notices to the stderr.
40
- config.active_support.deprecation = :stderr
41
-
42
- # Raises error for missing translations
43
- # config.action_view.raise_on_missing_translations = true
44
- end
@@ -1,13 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Be sure to restart your server when you modify this file.
4
-
5
- # Version of your assets, change this if you want to expire all your assets.
6
- Rails.application.config.assets.version = '1.0'
7
-
8
- # Add additional assets to the asset load path
9
- # Rails.application.config.assets.paths << Emoji.images_path
10
-
11
- # Precompile additional assets.
12
- # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
13
- # Rails.application.config.assets.precompile += %w( search.js )
@@ -1,10 +0,0 @@
1
- # frozen_string_literal: true
2
- # Be sure to restart your server when you modify this file.
3
-
4
- # You can add backtrace silencers for libraries that you're using but don't wish to see in your
5
- # backtraces.
6
- # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
7
-
8
- # You can also remove all the silencers if you're trying to debug a problem that might stem
9
- # from framework code.
10
- # Rails.backtrace_cleaner.remove_silencers!
@@ -1,5 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Be sure to restart your server when you modify this file.
4
-
5
- Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -1,6 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Be sure to restart your server when you modify this file.
4
-
5
- # Configure sensitive parameters which will be filtered from the log file.
6
- Rails.application.config.filter_parameters += [:password]
@@ -1,17 +0,0 @@
1
- # frozen_string_literal: true
2
- # Be sure to restart your server when you modify this file.
3
-
4
- # Add new inflection rules using the following format. Inflections
5
- # are locale specific, and you may define rules for as many different
6
- # locales as you wish. All of these examples are active by default:
7
- # ActiveSupport::Inflector.inflections(:en) do |inflect|
8
- # inflect.plural /^(ox)$/i, '\1en'
9
- # inflect.singular /^(ox)en/i, '\1'
10
- # inflect.irregular 'person', 'people'
11
- # inflect.uncountable %w( fish sheep )
12
- # end
13
-
14
- # These inflection rules are supported but not enabled by default:
15
- # ActiveSupport::Inflector.inflections(:en) do |inflect|
16
- # inflect.acronym 'RESTful'
17
- # end
@@ -1,5 +0,0 @@
1
- # frozen_string_literal: true
2
- # Be sure to restart your server when you modify this file.
3
-
4
- # Add new mime types for use in respond_to blocks:
5
- # Mime::Type.register "text/richtext", :rtf
@@ -1,5 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Be sure to restart your server when you modify this file.
4
-
5
- Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -1,16 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Be sure to restart your server when you modify this file.
4
-
5
- # This file contains settings for ActionController::ParamsWrapper which
6
- # is enabled by default.
7
-
8
- # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
9
- ActiveSupport.on_load(:action_controller) do
10
- wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
11
- end
12
-
13
- # To enable root element in JSON for ActiveRecord objects.
14
- # ActiveSupport.on_load(:active_record) do
15
- # self.include_root_in_json = true
16
- # end
@@ -1,23 +0,0 @@
1
- # Files in the config/locales directory are used for internationalization
2
- # and are automatically loaded by Rails. If you want to use locales other
3
- # than English, add the necessary files in this directory.
4
- #
5
- # To use the locales, use `I18n.t`:
6
- #
7
- # I18n.t 'hello'
8
- #
9
- # In views, this is aliased to just `t`:
10
- #
11
- # <%= t('hello') %>
12
- #
13
- # To use a different locale, set it with `I18n.locale`:
14
- #
15
- # I18n.locale = :es
16
- #
17
- # This would use the information in config/locales/es.yml.
18
- #
19
- # To learn more, please read the Rails Internationalization guide
20
- # available at http://guides.rubyonrails.org/i18n.html.
21
-
22
- en:
23
- hello: "Hello world"
@@ -1,58 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- Rails.application.routes.draw do
4
- # The priority is based upon order of creation: first created -> highest priority.
5
- # See how all your routes lay out with "rake routes".
6
-
7
- # You can have the root of your site routed with "root"
8
- # root 'welcome#index'
9
-
10
- # Example of regular route:
11
- # get 'products/:id' => 'catalog#view'
12
-
13
- # Example of named route that can be invoked with purchase_url(id: product.id)
14
- # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
15
-
16
- # Example resource route (maps HTTP verbs to controller actions automatically):
17
- # resources :products
18
-
19
- # Example resource route with options:
20
- # resources :products do
21
- # member do
22
- # get 'short'
23
- # post 'toggle'
24
- # end
25
- #
26
- # collection do
27
- # get 'sold'
28
- # end
29
- # end
30
-
31
- # Example resource route with sub-resources:
32
- # resources :products do
33
- # resources :comments, :sales
34
- # resource :seller
35
- # end
36
-
37
- # Example resource route with more complex sub-resources:
38
- # resources :products do
39
- # resources :comments
40
- # resources :sales do
41
- # get 'recent', on: :collection
42
- # end
43
- # end
44
-
45
- # Example resource route with concerns:
46
- # concern :toggleable do
47
- # post 'toggle'
48
- # end
49
- # resources :posts, concerns: :toggleable
50
- # resources :photos, concerns: :toggleable
51
-
52
- # Example resource route within a namespace:
53
- # namespace :admin do
54
- # # Directs /admin/products/* to Admin::ProductsController
55
- # # (app/controllers/admin/products_controller.rb)
56
- # resources :products
57
- # end
58
- end
@@ -1,22 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Your secret key is used for verifying the integrity of signed cookies.
4
- # If you change this key, all old signed cookies will become invalid!
5
-
6
- # Make sure the secret is at least 30 characters and all random,
7
- # no regular words or you'll be exposed to dictionary attacks.
8
- # You can use `rake secret` to generate a secure secret key.
9
-
10
- # Make sure the secrets in this file are kept private
11
- # if you're sharing your code publicly.
12
-
13
- development:
14
- secret_key_base: d9a5feaf198f66104dc0b057efe9b499f123e85ef7b2b56abdfb0f35b854704a71b39494d6b7a84d6a18c038483b18567621af6c1c5400a5db7e69c209e2080b
15
-
16
- test:
17
- secret_key_base: 3b267b642f6ba43499de3d8e54f4318b37a159397620e1017ef75ffd8a4011c5b68d2e2ab4756e12f75b33eefc55c1535ab39d109a4cda31bdecff8440c163a4
18
-
19
- # Do not keep production secrets in the repository,
20
- # instead read values from the environment.
21
- production:
22
- secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -1,33 +0,0 @@
1
- # encoding: UTF-8
2
- # This file is auto-generated from the current state of the database. Instead
3
- # of editing this file, please use the migrations feature of Active Record to
4
- # incrementally modify your database, and then regenerate this schema definition.
5
- #
6
- # Note that this schema.rb definition is the authoritative source for your
7
- # database schema. If you need to create the application database on another
8
- # system, you should be using db:schema:load, not running all the migrations
9
- # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
- # you'll amass, the slower it'll run and the greater likelihood for issues).
11
- #
12
- # It's strongly recommended that you check this file into your version control system.
13
-
14
- ActiveRecord::Schema.define(version: 20180302170138) do
15
-
16
- create_table "scheduled_tasks", force: :cascade do |t|
17
- t.string "scheduling"
18
- t.string "task"
19
- t.datetime "next_run"
20
- t.datetime "created_at", null: false
21
- t.datetime "updated_at", null: false
22
- t.datetime "last_run_start"
23
- t.datetime "last_run_successful_start"
24
- t.datetime "last_run_successful_end"
25
- t.datetime "last_run_unsuccessful_start"
26
- t.datetime "last_run_unsuccessful_end"
27
- t.integer "pid"
28
- t.string "args"
29
- t.string "last_fail_status"
30
- t.boolean "enabled", default: true, null: false
31
- end
32
-
33
- end
@@ -1,67 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>The page you were looking for doesn't exist (404)</title>
5
- <meta name="viewport" content="width=device-width,initial-scale=1">
6
- <style>
7
- body {
8
- background-color: #EFEFEF;
9
- color: #2E2F30;
10
- text-align: center;
11
- font-family: arial, sans-serif;
12
- margin: 0;
13
- }
14
-
15
- div.dialog {
16
- width: 95%;
17
- max-width: 33em;
18
- margin: 4em auto 0;
19
- }
20
-
21
- div.dialog > div {
22
- border: 1px solid #CCC;
23
- border-right-color: #999;
24
- border-left-color: #999;
25
- border-bottom-color: #BBB;
26
- border-top: #B00100 solid 4px;
27
- border-top-left-radius: 9px;
28
- border-top-right-radius: 9px;
29
- background-color: white;
30
- padding: 7px 12% 0;
31
- box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
- }
33
-
34
- h1 {
35
- font-size: 100%;
36
- color: #730E15;
37
- line-height: 1.5em;
38
- }
39
-
40
- div.dialog > p {
41
- margin: 0 0 1em;
42
- padding: 1em;
43
- background-color: #F7F7F7;
44
- border: 1px solid #CCC;
45
- border-right-color: #999;
46
- border-left-color: #999;
47
- border-bottom-color: #999;
48
- border-bottom-left-radius: 4px;
49
- border-bottom-right-radius: 4px;
50
- border-top-color: #DADADA;
51
- color: #666;
52
- box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
- }
54
- </style>
55
- </head>
56
-
57
- <body>
58
- <!-- This file lives in public/404.html -->
59
- <div class="dialog">
60
- <div>
61
- <h1>The page you were looking for doesn't exist.</h1>
62
- <p>You may have mistyped the address or the page may have moved.</p>
63
- </div>
64
- <p>If you are the application owner check the logs for more information.</p>
65
- </div>
66
- </body>
67
- </html>
@@ -1,67 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>The change you wanted was rejected (422)</title>
5
- <meta name="viewport" content="width=device-width,initial-scale=1">
6
- <style>
7
- body {
8
- background-color: #EFEFEF;
9
- color: #2E2F30;
10
- text-align: center;
11
- font-family: arial, sans-serif;
12
- margin: 0;
13
- }
14
-
15
- div.dialog {
16
- width: 95%;
17
- max-width: 33em;
18
- margin: 4em auto 0;
19
- }
20
-
21
- div.dialog > div {
22
- border: 1px solid #CCC;
23
- border-right-color: #999;
24
- border-left-color: #999;
25
- border-bottom-color: #BBB;
26
- border-top: #B00100 solid 4px;
27
- border-top-left-radius: 9px;
28
- border-top-right-radius: 9px;
29
- background-color: white;
30
- padding: 7px 12% 0;
31
- box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
- }
33
-
34
- h1 {
35
- font-size: 100%;
36
- color: #730E15;
37
- line-height: 1.5em;
38
- }
39
-
40
- div.dialog > p {
41
- margin: 0 0 1em;
42
- padding: 1em;
43
- background-color: #F7F7F7;
44
- border: 1px solid #CCC;
45
- border-right-color: #999;
46
- border-left-color: #999;
47
- border-bottom-color: #999;
48
- border-bottom-left-radius: 4px;
49
- border-bottom-right-radius: 4px;
50
- border-top-color: #DADADA;
51
- color: #666;
52
- box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
- }
54
- </style>
55
- </head>
56
-
57
- <body>
58
- <!-- This file lives in public/422.html -->
59
- <div class="dialog">
60
- <div>
61
- <h1>The change you wanted was rejected.</h1>
62
- <p>Maybe you tried to change something you didn't have access to.</p>
63
- </div>
64
- <p>If you are the application owner check the logs for more information.</p>
65
- </div>
66
- </body>
67
- </html>
@@ -1,66 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>We're sorry, but something went wrong (500)</title>
5
- <meta name="viewport" content="width=device-width,initial-scale=1">
6
- <style>
7
- body {
8
- background-color: #EFEFEF;
9
- color: #2E2F30;
10
- text-align: center;
11
- font-family: arial, sans-serif;
12
- margin: 0;
13
- }
14
-
15
- div.dialog {
16
- width: 95%;
17
- max-width: 33em;
18
- margin: 4em auto 0;
19
- }
20
-
21
- div.dialog > div {
22
- border: 1px solid #CCC;
23
- border-right-color: #999;
24
- border-left-color: #999;
25
- border-bottom-color: #BBB;
26
- border-top: #B00100 solid 4px;
27
- border-top-left-radius: 9px;
28
- border-top-right-radius: 9px;
29
- background-color: white;
30
- padding: 7px 12% 0;
31
- box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
- }
33
-
34
- h1 {
35
- font-size: 100%;
36
- color: #730E15;
37
- line-height: 1.5em;
38
- }
39
-
40
- div.dialog > p {
41
- margin: 0 0 1em;
42
- padding: 1em;
43
- background-color: #F7F7F7;
44
- border: 1px solid #CCC;
45
- border-right-color: #999;
46
- border-left-color: #999;
47
- border-bottom-color: #999;
48
- border-bottom-left-radius: 4px;
49
- border-bottom-right-radius: 4px;
50
- border-top-color: #DADADA;
51
- color: #666;
52
- box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
- }
54
- </style>
55
- </head>
56
-
57
- <body>
58
- <!-- This file lives in public/500.html -->
59
- <div class="dialog">
60
- <div>
61
- <h1>We're sorry, but something went wrong.</h1>
62
- </div>
63
- <p>If you are the application owner check the logs for more information.</p>
64
- </div>
65
- </body>
66
- </html>
File without changes
@@ -1,6 +0,0 @@
1
- test_scheduling:
2
- scheduling: 0 0 * * *
3
- task: test
4
- next_run: 2016-11-22 09:38:28
5
- created_at: 2016-11-20 00:00:00
6
- updated_at: 2016-11-20 00:00:00
@@ -1,98 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'test_helper'
4
-
5
- class ScheduledTaskTest < ActiveSupport::TestCase
6
- SCHEDULING_VALID_VALUES = {
7
- '0 1 * * *' => Time.utc(2016, 12, 23, 1, 0, 0, 0),
8
- '*/5 * * * *' => Time.utc(2016, 12, 22, 12, 5, 0, 0),
9
- '* * 1 * *' => Time.utc(2017, 1, 1, 0, 0, 0, 0),
10
- '* * * * *' => Time.utc(2016, 12, 22, 12, 1, 0, 0)
11
- }.freeze
12
-
13
- SCHEDULING_INVALID_VALUES = [' ', nil, '1', 'abc123', 456].freeze
14
-
15
- setup do
16
- @scheduled_task = scheduled_tasks(:test_scheduling)
17
- @time = Time.utc(2016, 12, 22, 12, 0, 0, 0)
18
- end
19
-
20
- test 'scheduling cron format' do
21
- valid_invalid_column_values_test(
22
- @scheduled_task, :scheduling, SCHEDULING_VALID_VALUES.keys, SCHEDULING_INVALID_VALUES
23
- )
24
- end
25
-
26
- test 'calculate next run' do
27
- SCHEDULING_VALID_VALUES.each do |k, v|
28
- @scheduled_task.scheduling = k
29
- assert_equal v, @scheduled_task.calculate_next_run(@time).utc,
30
- "Time: #{@time}, Cron source: #{k}"
31
- end
32
- end
33
-
34
- test 'status' do
35
- assert_not @scheduled_task.last_run_start
36
- assert_not @scheduled_task.last_run_successful_start
37
- assert_not @scheduled_task.last_run_unsuccessful_start
38
- assert_not @scheduled_task.last_run_successful_end
39
- assert_not @scheduled_task.last_run_unsuccessful_end
40
- assert_equal ScheduledTask::STATUS_WAITING, @scheduled_task.status
41
-
42
- @scheduled_task.send('status_on_start')
43
- assert_equal ScheduledTask::STATUS_RUNNING, @scheduled_task.status
44
-
45
- @scheduled_task.send('status_on_end', nil, nil)
46
- assert_equal ScheduledTask::STATUS_WAITING, @scheduled_task.status
47
-
48
- @scheduled_task.send('status_on_start')
49
- assert_equal ScheduledTask::STATUS_RUNNING, @scheduled_task.status
50
-
51
- @scheduled_task.send('status_on_end', StandardError.new('Test!'), ScheduledTask::STATUS_FAILED)
52
- assert_equal ScheduledTask::STATUS_FAILED, @scheduled_task.status
53
-
54
- @scheduled_task.send('status_on_end', StandardError.new('Test!'), ScheduledTask::STATUS_ABORTED)
55
- assert_equal ScheduledTask::STATUS_ABORTED, @scheduled_task.status
56
-
57
- @scheduled_task.send('status_on_end', StandardError.new('Test!'), ScheduledTask::STATUS_TIMEOUT)
58
- assert_equal ScheduledTask::STATUS_TIMEOUT, @scheduled_task.status
59
- end
60
-
61
- test 'status 1' do
62
- @scheduled_task.update!(
63
- scheduling: '*/5 * * * *',
64
- next_run: 'Wed, 28 Feb 2018 15:35:00 UTC +00:00',
65
- created_at: 'Tue, 06 Dec 2016 20:30:01 UTC +00:00',
66
- updated_at: 'Wed, 28 Feb 2018 15:31:34 UTC +00:00',
67
- last_run_start: nil,
68
- last_run_successful_start: 'Wed, 28 Feb 2018 15:20:06 UTC +00:00',
69
- last_run_successful_end: 'Wed, 28 Feb 2018 15:20:15 UTC +00:00',
70
- last_run_unsuccessful_start: 'Wed, 28 Feb 2018 15:30:07 UTC +00:00',
71
- last_run_unsuccessful_end: 'Wed, 28 Feb 2018 15:31:34 UTC +00:00',
72
- pid: nil,
73
- args: '1|1|1',
74
- last_fail_status: nil
75
- )
76
- assert_equal ::ScheduledTask::STATUS_FAILED, @scheduled_task.status
77
- end
78
-
79
- test 'task in list' do
80
- valid_invalid_column_values_test(
81
- @scheduled_task, :task, ['test', 'about', 'db:migrate'], [nil, ' ', '123notatask']
82
- )
83
- end
84
-
85
- test 'invoke args' do
86
- @scheduled_task.args = ''
87
- assert_equal [], @scheduled_task.send('invoke_args')
88
-
89
- @scheduled_task.args = 'abc'
90
- assert_equal ['abc'], @scheduled_task.send('invoke_args')
91
-
92
- @scheduled_task.args = 'abc|def|ghi'
93
- assert_equal %w[abc def ghi], @scheduled_task.send('invoke_args')
94
-
95
- @scheduled_task.args = 'abc||ghi'
96
- assert_equal ['abc', '', 'ghi'], @scheduled_task.send('invoke_args')
97
- end
98
- end
data/test/test_helper.rb DELETED
@@ -1,38 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Configure Rails Environment
4
- ENV['RAILS_ENV'] = 'test'
5
-
6
- require File.expand_path('../test/dummy/config/environment.rb', __dir__)
7
- ActiveRecord::Migrator.migrations_paths = [
8
- File.expand_path('../test/dummy/db/migrate', __dir__)
9
- ]
10
- require 'rails/test_help'
11
-
12
- # Filter out Minitest backtrace while allowing backtrace from other libraries
13
- # to be shown.
14
- Minitest.backtrace_filter = Minitest::BacktraceFilter.new
15
-
16
- # Load support files
17
- Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].sort.each { |f| require f }
18
-
19
- # Load fixtures from the engine
20
- if ActiveSupport::TestCase.respond_to?(:fixture_path=)
21
- ActiveSupport::TestCase.fixture_path = File.expand_path('fixtures', __dir__)
22
- ActiveSupport::TestCase.fixtures :all
23
- end
24
-
25
- module ActiveSupport
26
- class TestCase
27
- def valid_invalid_column_values_test(record, column, valid_values, invalid_values)
28
- valid_values.each do |v|
29
- record[column] = v
30
- assert record.valid?, "#{record.errors.messages}, #{column} = #{v.inspect} should be valid"
31
- end
32
- invalid_values.each do |v|
33
- record[column] = v
34
- assert_not record.valid?, "#{column} = #{v.inspect} should be invalid"
35
- end
36
- end
37
- end
38
- end