sidekiq_portal 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +3 -1
- data/docs/umbrellio_hackaton_v1.0.pdf +0 -0
- data/lib/portal/errors.rb +4 -0
- data/lib/portal/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1e413dfa69dae938ee861290b621eb99252cbcba42c09d1eaa541d1fb49e1675
|
4
|
+
data.tar.gz: 01d1b01fc9c84920425212d964763372c0f2c4129eb179129bd60932fde2b374
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: afcb5900eab9338ab000fd3f540f827ecc6e0c5b9907789e30f8b9c729bf970b771dfca679853b5484174c90361a48381298869b4447105a0a2c28670065578e
|
7
|
+
data.tar.gz: 7cac31cd6ad9a3da4a253afe6fbb47cd4344fbea1d73ca685b39c224d3d05cc53dd8c8320d77920a303224ce5548ce30c96f2c84d5720508c3990e2d5af61d92
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,12 @@
|
|
1
1
|
# Changelog
|
2
2
|
All notable changes to this project will be documented in this file.
|
3
3
|
|
4
|
+
## [0.1.1] - 2019-12-24
|
5
|
+
|
6
|
+
### Fixed
|
7
|
+
|
8
|
+
- Added missing `Sidekiq::Portal::UnsupportedCoreDependencyError` exception class;
|
9
|
+
|
4
10
|
## [0.1.0] - 2019-12-24
|
5
11
|
|
6
12
|
- Release 😈
|
data/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# Sidekiq::Portal [![Gem Version](https://badge.fury.io/rb/sidekiq_portal.svg)](https://badge.fury.io/rb/sidekiq_portal) [![Build Status](https://travis-ci.org/0exp/sidekiq_portal.svg?branch=master)](https://travis-ci.org/0exp/sidekiq_portal)
|
2
2
|
|
3
|
+
> hackaton slides: [link](https://github.com/0exp/sidekiq_portal/blob/master/docs/umbrellio_hackaton_v1.0.pdf)
|
4
|
+
|
3
5
|
**Sidekiq::Portal** - scheduled jobs runner for your test environments,
|
4
6
|
which execution process must occur during the `Timecop.travel(...)` operations according to the scheduler config.
|
5
7
|
|
@@ -53,7 +55,7 @@ require 'sidekiq_portal'
|
|
53
55
|
## Configuration
|
54
56
|
|
55
57
|
- `default_timezone` (`UTC` by default) - global time zone for your jobs;
|
56
|
-
- `retries_count` -
|
58
|
+
- `retries_count` - Sidekiq's built-in retry mechanism simulation;
|
57
59
|
- `scheduler_config` - `sidekiq-scheduler`-based scheduler configuration;;
|
58
60
|
- `Sidekiq::Portal.reload!(&configuration)` - reload portal configurations;
|
59
61
|
|
Binary file
|
data/lib/portal/errors.rb
CHANGED
@@ -23,6 +23,10 @@ class Sidekiq::Portal
|
|
23
23
|
# @since 0.1.0
|
24
24
|
NonSchedulableJobError = Class.new(Error)
|
25
25
|
|
26
|
+
# @api public
|
27
|
+
# @since 0.1.0
|
28
|
+
UnsupportedCoreDependencyError = Class.new(Error)
|
29
|
+
|
26
30
|
# @api public
|
27
31
|
# @since 0.1.0
|
28
32
|
CoreDependencyNotFoundError = Class.new(Error)
|
data/lib/portal/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sidekiq_portal
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rustam Ibragimov
|
@@ -185,6 +185,7 @@ files:
|
|
185
185
|
- Rakefile
|
186
186
|
- bin/console
|
187
187
|
- bin/setup
|
188
|
+
- docs/umbrellio_hackaton_v1.0.pdf
|
188
189
|
- lib/portal/config.rb
|
189
190
|
- lib/portal/core_extensions.rb
|
190
191
|
- lib/portal/core_extensions/sidekiq_queue.rb
|