party_bus 0.2.0 → 0.3.0
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/Gemfile.lock +2 -2
- data/README.md +1 -1
- data/lib/party_bus/configuration.rb +1 -1
- data/lib/party_bus/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '0110038615068e66e523892618e01699781d171dba48ff9c3cde8e848da5e733'
|
|
4
|
+
data.tar.gz: 52030ca8f0099a88f91f999edc5ecc4034cd195862c61789b7ad2a58a0d3eff9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8690c05498ce9aa66a0b6d83a0c9f1eb7dfc307c927debde799d1d4750797da8d98c588d735dd833587dd09dd988fc30a6428a420315a3a9b6915e2f888b34af
|
|
7
|
+
data.tar.gz: 40202ab15c221fb616e27b5a6769b52188d3c5250d7c8aae08e8d2a09406eea0ab1696392f9ea5a3ea7da75813fd0d4698c45230b1d776b76c53bf65915af8fb
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
party_bus (0.
|
|
4
|
+
party_bus (0.3.0)
|
|
5
5
|
activerecord (>= 6.0, <= 8.0)
|
|
6
6
|
after_do (~> 0.4.0)
|
|
7
7
|
httparty (~> 0.20.0)
|
|
@@ -37,7 +37,7 @@ GEM
|
|
|
37
37
|
mime-types (3.4.1)
|
|
38
38
|
mime-types-data (~> 3.2015)
|
|
39
39
|
mime-types-data (3.2022.0105)
|
|
40
|
-
minitest (5.16.
|
|
40
|
+
minitest (5.16.3)
|
|
41
41
|
multi_xml (0.6.0)
|
|
42
42
|
pg (1.4.3)
|
|
43
43
|
public_suffix (4.0.7)
|
data/README.md
CHANGED
|
@@ -26,7 +26,7 @@ And then execute:
|
|
|
26
26
|
|
|
27
27
|
Generate project initializer.
|
|
28
28
|
|
|
29
|
-
$ bin/rails generate party_bus <
|
|
29
|
+
$ bin/rails generate party_bus <connection id> <connection secret>
|
|
30
30
|
|
|
31
31
|
Add the helper to any object you would like to observe events. To add the helper to every model in your rails application.
|
|
32
32
|
|
|
@@ -7,7 +7,7 @@ module PartyBus
|
|
|
7
7
|
attr_accessor :stripped_attributes
|
|
8
8
|
|
|
9
9
|
def initialize
|
|
10
|
-
self.api_url = "https://
|
|
10
|
+
self.api_url = "https://partybus-api.aridsoftware.com"
|
|
11
11
|
self.connection_id = nil
|
|
12
12
|
self.enabled = ENV['RUBY_ENV'] != 'test' && ENV['RAILS_ENV'] != 'test'
|
|
13
13
|
self.secret = nil
|
data/lib/party_bus/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: party_bus
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- corey jergensen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-03-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: after_do
|