bullet_train-incoming_webhooks 1.10.0 → 1.11.0

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: abf49a8fbe15124198901548575641a95ad3545a39a7241b2e7451de141a3434
4
- data.tar.gz: 502893e8f155381f2bdb231774e017cc709a00bd0ec4d4e2076404542843475b
3
+ metadata.gz: cbe32ce411b494998bd64504e9537f29d3cd7ad84b75590acd87aff8bdd0cd57
4
+ data.tar.gz: ac81af8867852e7b97bf6106d32e807232ad489cc7fa72e1976b00860ca0f92f
5
5
  SHA512:
6
- metadata.gz: 3a46654b6f76aa6ade525efbd7f8721c271986494dca920c00787e8a364af4159cd860ca6a10a7d5b430447539035ec2cdf0385d9163575848bb9ce4a3737689
7
- data.tar.gz: c35349be30d61b94d70199bb05703fcf9146e9f214a84b056d9220769a33ad954a810c3da7469223af40833091063aa11faca26c26367cfcdc5a2df6b0ac7cba
6
+ metadata.gz: d9755d4d521274f0416488fe2baa9fbaf0b1fb9cd68965a9331a4b54ed03c80e1c0425c606fb2db4966608efe005ddda70aaa22dbc1667b3308ce52e0a83d779
7
+ data.tar.gz: f6e24baa293a817265719a34da6a8bad8bdcd33868927c79bbfa8f3fdf67e9facee48c3d5da436a37aac03e1574166a884fffdd00bca3e042ca3be224dbc33e2
@@ -1,5 +1,5 @@
1
1
  module BulletTrain
2
2
  module IncomingWebhooks
3
- VERSION = "1.10.0"
3
+ VERSION = "1.11.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bullet_train-incoming_webhooks
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0
4
+ version: 1.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Culver
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-21 00:00:00.000000000 Z
11
+ date: 2024-11-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -110,7 +110,6 @@ files:
110
110
  - app/jobs/webhooks/incoming/webhook_processing_job.rb
111
111
  - app/models/webhooks/incoming/bullet_train_webhook.rb
112
112
  - app/models/webhooks/incoming/webhook.rb
113
- - config/models/roles.yml
114
113
  - config/routes.rb
115
114
  - lib/bullet_train/incoming_webhooks.rb
116
115
  - lib/bullet_train/incoming_webhooks/engine.rb
@@ -1,44 +0,0 @@
1
- # This is a default implementation of this file that we supply to help with gem tests.
2
- # The version from the starter repo will take precedence when running the full app.
3
- # You can think of the file in the starter repo as having been ejected from this gem.
4
-
5
- # This file is here just to allow tests to pass when run from inside this gem directory.
6
- # It wasn't found if I put the file in test/dummy/config/models/webhooks/outgoing, so
7
- # maybe we need a better resolution method?
8
- default:
9
- models:
10
- Team: read
11
- Document: read
12
- Membership:
13
- - read
14
- - search
15
-
16
- crud_role:
17
- models:
18
- Team: crud
19
-
20
- editor:
21
- models:
22
- Scaffolding::AbsolutelyAbstract::CreativeConcept:
23
- - read
24
- - update
25
-
26
- manager:
27
- includes:
28
- - editor
29
-
30
- supervisor:
31
- includes:
32
- - manager
33
-
34
- admin:
35
- includes:
36
- - editor
37
- manageable_roles:
38
- - admin
39
- - editor
40
- models:
41
- Team: manage
42
- Membership: manage
43
- Document: manage
44
- Scaffolding::AbsolutelyAbstract::CreativeConcept: manage