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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4786c06610a30caf5b841f54ae358f2d8e03ddbfa0a4455e67d6bc54525881ee
4
- data.tar.gz: 7b85cfb3ccfd8f4bf334a7c3b79203bccc12d043e570565e76d8c6be3da43ebb
3
+ metadata.gz: 1e413dfa69dae938ee861290b621eb99252cbcba42c09d1eaa541d1fb49e1675
4
+ data.tar.gz: 01d1b01fc9c84920425212d964763372c0f2c4129eb179129bd60932fde2b374
5
5
  SHA512:
6
- metadata.gz: 132e849038540986890f5d240beac2bf82141633825b5d5dd44a52f26e0f524b8727c9f939e321889134fbc4b6f8042a7183e01380eec5c324e3344aa5d950f9
7
- data.tar.gz: 847dd5b9699d0c64ed686a7e8fa1cc151a94488357a8b345883185e23d0343d26cbf6f798eafbd36b20e3e9731a1d1cec72934dd339f7b101a0bf0d2ca30e277
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` - recurring job simulation;
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)
@@ -10,6 +10,6 @@ module Sidekiq
10
10
  #
11
11
  # @api public
12
12
  # @since 0.1.0
13
- VERSION = '0.1.0'
13
+ VERSION = '0.1.1'
14
14
  end
15
15
  end
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.0
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