flipper-notifications 0.1.2 → 0.1.4

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: 7b71d1668359547c3c1d17f429cfc61e7b62dcb432d3604033ba3220ca4a6cca
4
- data.tar.gz: 7ddfe94a172c6d34d284007c2f03d8a5cdc708f0d12f5a4080bcceb330812f71
3
+ metadata.gz: 711c412144d8226f2551ec7faab049682412d204796af372d4a68ef552c8bdaa
4
+ data.tar.gz: 81cad56e5783b8f0fc86b70b8116a12c345f82125ea3f9b6f0b13e0f4805e098
5
5
  SHA512:
6
- metadata.gz: 9c7cf8e3df4bccb63418d809f47dbdf4a4baf1e3987aea467cdceb9e529996ed684df75250040a63223f7523eaa733de8556091f4a4a8e4c926f470f9604b40e
7
- data.tar.gz: b53ecf93c6bdad21da923f939e99428f91fcfdc398f1b82743e97576a262bc863eae96fdfed93fd820845d7db06768b80e102657830e9321b53f442ae42176e9
6
+ metadata.gz: a07ec54acf0b402ee1e76a2997c9d2271715adf57295adb503ad4749af50acbddaa07820c7b9861260be5c99fec9160e93f75a944e5cec29cac0a21d8de84ae9
7
+ data.tar.gz: a4bdf8e3625b2f74d989a01af14df266f390057ebd24b0797a9b198d47f42c5debbc118d2e66b42342794e4cdcdfe1e2183e4355e441a79b1b0156825a67057d
data/Gemfile.lock CHANGED
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- flipper-notifications (0.1.2)
4
+ flipper-notifications (0.1.4)
5
5
  activesupport (~> 7.0)
6
- flipper (~> 0.24)
6
+ flipper (>= 0.24, < 2.0)
7
7
  httparty (~> 0.17)
8
8
 
9
9
  GEM
@@ -21,7 +21,7 @@ GEM
21
21
  public_suffix (>= 2.0.2, < 6.0)
22
22
  ast (2.4.2)
23
23
  bundler-gem_version_tasks (0.2.1)
24
- concurrent-ruby (1.1.10)
24
+ concurrent-ruby (1.2.3)
25
25
  crack (0.4.5)
26
26
  rexml
27
27
  debug (1.7.1)
@@ -29,7 +29,7 @@ GEM
29
29
  reline (>= 0.3.1)
30
30
  diff-lcs (1.5.0)
31
31
  docile (1.4.0)
32
- flipper (0.26.0)
32
+ flipper (1.3.0)
33
33
  concurrent-ruby (< 2)
34
34
  globalid (1.0.0)
35
35
  activesupport (>= 5.0)
@@ -37,14 +37,14 @@ GEM
37
37
  httparty (0.21.0)
38
38
  mini_mime (>= 1.0.0)
39
39
  multi_xml (>= 0.5.2)
40
- i18n (1.12.0)
40
+ i18n (1.14.4)
41
41
  concurrent-ruby (~> 1.0)
42
42
  io-console (0.6.0)
43
43
  irb (1.6.2)
44
44
  reline (>= 0.3.0)
45
45
  json (2.6.3)
46
- mini_mime (1.1.2)
47
- minitest (5.16.3)
46
+ mini_mime (1.1.5)
47
+ minitest (5.22.3)
48
48
  multi_xml (0.6.0)
49
49
  parallel (1.22.1)
50
50
  parser (3.1.3.0)
@@ -88,7 +88,7 @@ GEM
88
88
  simplecov_json_formatter (~> 0.1)
89
89
  simplecov-html (0.12.3)
90
90
  simplecov_json_formatter (0.1.4)
91
- tzinfo (2.0.5)
91
+ tzinfo (2.0.6)
92
92
  concurrent-ruby (~> 1.0)
93
93
  unicode-display_width (2.3.0)
94
94
  webmock (3.18.1)
@@ -98,6 +98,7 @@ GEM
98
98
 
99
99
  PLATFORMS
100
100
  arm64-darwin-21
101
+ arm64-darwin-23
101
102
 
102
103
  DEPENDENCIES
103
104
  activejob (~> 7.0)
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
29
29
  spec.require_paths = ["lib"]
30
30
 
31
31
  spec.add_runtime_dependency "activesupport", "~> 7.0"
32
- spec.add_runtime_dependency "flipper", "~> 0.24"
32
+ spec.add_runtime_dependency "flipper", ">= 0.24", "< 2.0"
33
33
  spec.add_runtime_dependency "httparty", "~> 0.17"
34
34
 
35
35
  spec.add_development_dependency "bundler"
@@ -17,7 +17,7 @@ module Flipper
17
17
  retry_on Webhooks::NetworkError,
18
18
  Webhooks::ServerError,
19
19
  attempts: 3,
20
- wait: :exponentially_longer
20
+ wait: ActiveJob.version < "7.1" ? :exponentially_longer : :polynomially_longer
21
21
 
22
22
  def perform(webhook:, **webhook_args)
23
23
  webhook.notify(**webhook_args)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Flipper
4
4
  module Notifications
5
- VERSION = "0.1.2"
5
+ VERSION = "0.1.4"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flipper-notifications
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joel Lubrano
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-03 00:00:00.000000000 Z
11
+ date: 2024-04-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -28,16 +28,22 @@ dependencies:
28
28
  name: flipper
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0.24'
34
+ - - "<"
35
+ - !ruby/object:Gem::Version
36
+ version: '2.0'
34
37
  type: :runtime
35
38
  prerelease: false
36
39
  version_requirements: !ruby/object:Gem::Requirement
37
40
  requirements:
38
- - - "~>"
41
+ - - ">="
39
42
  - !ruby/object:Gem::Version
40
43
  version: '0.24'
44
+ - - "<"
45
+ - !ruby/object:Gem::Version
46
+ version: '2.0'
41
47
  - !ruby/object:Gem::Dependency
42
48
  name: httparty
43
49
  requirement: !ruby/object:Gem::Requirement