flipper-notifications 0.1.7 → 0.1.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 +4 -4
- data/.github/workflows/ruby-tests.yml +1 -3
- data/Gemfile.lock +6 -4
- data/README.md +9 -1
- data/flipper-notifications.gemspec +2 -2
- data/lib/flipper/notifications/event_serializer.rb +4 -0
- data/lib/flipper/notifications/railtie.rb +4 -2
- data/lib/flipper/notifications/version.rb +1 -1
- data/lib/flipper/notifications/webhooks/serializer.rb +4 -0
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 125ec86dec5bacf8e5da2931bb87f6a62bdef133e4a703f0132bc5d788bceac3
|
|
4
|
+
data.tar.gz: 90ec89c923006d4cd8fb3abc09e05f415bf04340f674d7ad0aa838987ae9b607
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: edabeb8b4bc73721455f2504a47e8d89663a84af393d8e1d894bf1ad0cfa8c7a6eeb17ed40f2ee4b719aabcce0c66272090e4c540a152c985c989ce9cc77669e
|
|
7
|
+
data.tar.gz: 3a1bcc02e565fb5e7c821667b1d9f3c3119c6072e6fb5a7d6ba0822249c845fd9d0e37dada0cf93f7913440f68da7dea8ba21665cd71dd6493e3ae44e6600e87
|
|
@@ -16,7 +16,6 @@ jobs:
|
|
|
16
16
|
strategy:
|
|
17
17
|
matrix:
|
|
18
18
|
ruby_version:
|
|
19
|
-
- '3.0'
|
|
20
19
|
- '3.1'
|
|
21
20
|
- '3.2'
|
|
22
21
|
steps:
|
|
@@ -25,9 +24,8 @@ jobs:
|
|
|
25
24
|
uses: ruby/setup-ruby@v1
|
|
26
25
|
with:
|
|
27
26
|
ruby-version: ${{ matrix.ruby_version }}
|
|
27
|
+
bundler-cache: true
|
|
28
28
|
- name: Ruby version
|
|
29
29
|
run: ruby -v
|
|
30
|
-
- name: Install dependencies
|
|
31
|
-
run: bundle install
|
|
32
30
|
- name: Run tests
|
|
33
31
|
run: bundle exec rspec
|
data/Gemfile.lock
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
flipper-notifications (0.1.
|
|
5
|
-
activesupport (>= 7, < 8.
|
|
4
|
+
flipper-notifications (0.1.9)
|
|
5
|
+
activesupport (>= 7, < 8.2)
|
|
6
6
|
flipper (>= 0.24, < 2.0)
|
|
7
7
|
httparty (~> 0.17)
|
|
8
8
|
|
|
@@ -103,9 +103,11 @@ GEM
|
|
|
103
103
|
PLATFORMS
|
|
104
104
|
arm64-darwin-21
|
|
105
105
|
arm64-darwin-23
|
|
106
|
+
arm64-darwin-24
|
|
107
|
+
x86_64-linux
|
|
106
108
|
|
|
107
109
|
DEPENDENCIES
|
|
108
|
-
activejob (>= 7, < 8.
|
|
110
|
+
activejob (>= 7, < 8.2)
|
|
109
111
|
bundler
|
|
110
112
|
bundler-gem_version_tasks
|
|
111
113
|
debug
|
|
@@ -117,4 +119,4 @@ DEPENDENCIES
|
|
|
117
119
|
webmock
|
|
118
120
|
|
|
119
121
|
BUNDLED WITH
|
|
120
|
-
2.
|
|
122
|
+
2.6.9
|
data/README.md
CHANGED
|
@@ -24,7 +24,7 @@ Or install it yourself as:
|
|
|
24
24
|
## Dependencies
|
|
25
25
|
|
|
26
26
|
* Ruby 3
|
|
27
|
-
* ActiveSupport 7
|
|
27
|
+
* ActiveSupport 7+
|
|
28
28
|
|
|
29
29
|
This gem is designed to work within a Rails app. At the very least, you will
|
|
30
30
|
need `activesupport` since that library drives instrumentation from Flipper
|
|
@@ -163,3 +163,11 @@ The gem is available as open source under the terms of the
|
|
|
163
163
|
Everyone interacting in the Flipper::Notifications project’s codebases,
|
|
164
164
|
issue trackers, chat rooms and mailing lists is expected to follow the
|
|
165
165
|
[code of conduct](https://github.com/[USERNAME]/flipper-notifications/blob/master/CODE_OF_CONDUCT.md).
|
|
166
|
+
|
|
167
|
+
## Disclaimer
|
|
168
|
+
|
|
169
|
+
This project is provided as open source under the MIT License and is made available on an **"as is"** basis, without warranty of any kind, express or implied.
|
|
170
|
+
|
|
171
|
+
This repository is **not an official Wrapbook product**. Wrapbook makes no commitments regarding ongoing development, maintenance, bug fixes, security updates, or compatibility.
|
|
172
|
+
|
|
173
|
+
Use of this project is at your own risk.
|
|
@@ -28,7 +28,7 @@ Gem::Specification.new do |spec|
|
|
|
28
28
|
spec.executables = []
|
|
29
29
|
spec.require_paths = ["lib"]
|
|
30
30
|
|
|
31
|
-
spec.add_runtime_dependency "activesupport", ">= 7", "< 8.
|
|
31
|
+
spec.add_runtime_dependency "activesupport", ">= 7", "< 8.2"
|
|
32
32
|
spec.add_runtime_dependency "flipper", ">= 0.24", "< 2.0"
|
|
33
33
|
spec.add_runtime_dependency "httparty", "~> 0.17"
|
|
34
34
|
|
|
@@ -41,5 +41,5 @@ Gem::Specification.new do |spec|
|
|
|
41
41
|
spec.add_development_dependency "simplecov"
|
|
42
42
|
spec.add_development_dependency "webmock"
|
|
43
43
|
|
|
44
|
-
spec.add_development_dependency "activejob", ">= 7", "< 8.
|
|
44
|
+
spec.add_development_dependency "activejob", ">= 7", "< 8.2"
|
|
45
45
|
end
|
|
@@ -10,11 +10,13 @@ module Flipper
|
|
|
10
10
|
|
|
11
11
|
initializer "flipper-notifications.configure_rails_initialization" do
|
|
12
12
|
Flipper::Notifications.subscribe!
|
|
13
|
+
end
|
|
13
14
|
|
|
14
|
-
|
|
15
|
+
config.to_prepare do
|
|
16
|
+
ActiveJob::Serializers.add_serializers(
|
|
15
17
|
EventSerializer,
|
|
16
18
|
Webhooks::Serializer
|
|
17
|
-
|
|
19
|
+
)
|
|
18
20
|
end
|
|
19
21
|
|
|
20
22
|
config.after_initialize do
|
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.
|
|
4
|
+
version: 0.1.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Joel Lubrano
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-01-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '7'
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: '8.
|
|
22
|
+
version: '8.2'
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '7'
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: '8.
|
|
32
|
+
version: '8.2'
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: flipper
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -185,7 +185,7 @@ dependencies:
|
|
|
185
185
|
version: '7'
|
|
186
186
|
- - "<"
|
|
187
187
|
- !ruby/object:Gem::Version
|
|
188
|
-
version: '8.
|
|
188
|
+
version: '8.2'
|
|
189
189
|
type: :development
|
|
190
190
|
prerelease: false
|
|
191
191
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -195,7 +195,7 @@ dependencies:
|
|
|
195
195
|
version: '7'
|
|
196
196
|
- - "<"
|
|
197
197
|
- !ruby/object:Gem::Version
|
|
198
|
-
version: '8.
|
|
198
|
+
version: '8.2'
|
|
199
199
|
description:
|
|
200
200
|
email:
|
|
201
201
|
- jlubrano@wrapbook.com
|