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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a35c124322fb4164c6ad19fc6617a4bfdfa6f176c41653e6570aabd0bf38854d
4
- data.tar.gz: 9f76b8c375ca124460a38f4ca33eb21630034bd615e45ae2d7a66d51338c2e71
3
+ metadata.gz: '0110038615068e66e523892618e01699781d171dba48ff9c3cde8e848da5e733'
4
+ data.tar.gz: 52030ca8f0099a88f91f999edc5ecc4034cd195862c61789b7ad2a58a0d3eff9
5
5
  SHA512:
6
- metadata.gz: '097f076dc927a87e0938f2f6d53b302bc86aff677211b39a849623989adadf4edae244ef1bcb3eb275e6a70288544d27c930fc1fd80cb1f0b3e42e488bc234c0'
7
- data.tar.gz: 85e86b6f85a1bfa12a33ce22d1d92a3921e72d25e046a960ecd00018fe66d30a2eedea4c83fb97fceda4ec610fef12a3dc353a777cb284fbc3ca1cd5bfa96bb8
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.2.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.2)
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 <api key>
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://party-bus.gigalixirapp.com"
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
@@ -1,3 +1,3 @@
1
1
  module PartyBus
2
- VERSION = "0.2.0"
2
+ VERSION = "0.3.0"
3
3
  end
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.2.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: 2022-09-28 00:00:00.000000000 Z
11
+ date: 2023-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: after_do