party_bus 0.1.13 → 0.1.14
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/.gitignore +1 -0
- data/Gemfile +2 -0
- data/Gemfile.lock +14 -8
- data/lib/party_bus/models/concerns/publishable.rb +3 -1
- data/lib/party_bus/version.rb +1 -1
- data/lib/party_bus.rb +3 -2
- data/party_bus.gemspec +3 -2
- metadata +8 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c228d6031860eeca517099606bd0facff10aa221756a00f7a5e38b5c45dcd1e6
|
4
|
+
data.tar.gz: 6726a5ceed2f88018396edf15a56b27906c1e0e7db399e2139168b60740e8bc8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b4ef76db08b4a1f90844067b0710af6301d01d299937d0a84a70c635ae6935ae7395db3ffd244034b19529ad1b4980554ad50e99204d3ea93ee0e43cc0c4179
|
7
|
+
data.tar.gz: d47e6080052b07f76e6554023e4ed5b7ba2d090264b483b09be1ef582164fe5c2cf400754915ae06c59ba1d9956038c7f2e2addb8ee02e256a3c4116d2bd5908
|
data/.gitignore
CHANGED
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -2,17 +2,19 @@ PATH
|
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
4
|
party_bus (0.1.13)
|
5
|
-
|
6
|
-
activesupport (>= 6.0)
|
5
|
+
activerecord (>= 6.0)
|
7
6
|
after_do (~> 0.4.0)
|
8
7
|
httparty (~> 0.20.0)
|
9
8
|
|
10
9
|
GEM
|
11
10
|
remote: https://rubygems.org/
|
12
11
|
specs:
|
13
|
-
activemodel (7.0.
|
14
|
-
activesupport (= 7.0.
|
15
|
-
|
12
|
+
activemodel (7.0.3.1)
|
13
|
+
activesupport (= 7.0.3.1)
|
14
|
+
activerecord (7.0.3.1)
|
15
|
+
activemodel (= 7.0.3.1)
|
16
|
+
activesupport (= 7.0.3.1)
|
17
|
+
activesupport (7.0.3.1)
|
16
18
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
17
19
|
i18n (>= 1.6, < 2)
|
18
20
|
minitest (>= 5.1)
|
@@ -25,17 +27,19 @@ GEM
|
|
25
27
|
crack (0.4.5)
|
26
28
|
rexml
|
27
29
|
diff-lcs (1.5.0)
|
30
|
+
dotenv (2.8.1)
|
28
31
|
hashdiff (1.0.1)
|
29
32
|
httparty (0.20.0)
|
30
33
|
mime-types (~> 3.0)
|
31
34
|
multi_xml (>= 0.5.2)
|
32
|
-
i18n (1.
|
35
|
+
i18n (1.12.0)
|
33
36
|
concurrent-ruby (~> 1.0)
|
34
37
|
mime-types (3.4.1)
|
35
38
|
mime-types-data (~> 3.2015)
|
36
39
|
mime-types-data (3.2022.0105)
|
37
|
-
minitest (5.
|
40
|
+
minitest (5.16.2)
|
38
41
|
multi_xml (0.6.0)
|
42
|
+
pg (1.4.3)
|
39
43
|
public_suffix (4.0.7)
|
40
44
|
rake (12.3.3)
|
41
45
|
rexml (3.2.5)
|
@@ -52,7 +56,7 @@ GEM
|
|
52
56
|
diff-lcs (>= 1.2.0, < 2.0)
|
53
57
|
rspec-support (~> 3.10.0)
|
54
58
|
rspec-support (3.10.3)
|
55
|
-
tzinfo (2.0.
|
59
|
+
tzinfo (2.0.5)
|
56
60
|
concurrent-ruby (~> 1.0)
|
57
61
|
webmock (3.14.0)
|
58
62
|
addressable (>= 2.8.0)
|
@@ -64,7 +68,9 @@ PLATFORMS
|
|
64
68
|
|
65
69
|
DEPENDENCIES
|
66
70
|
byebug (~> 11.1)
|
71
|
+
dotenv
|
67
72
|
party_bus!
|
73
|
+
pg (>= 0.18, < 2.0)
|
68
74
|
rake (~> 12.0)
|
69
75
|
rspec (~> 3.0)
|
70
76
|
webmock (~> 3.14)
|
@@ -34,7 +34,9 @@ module Publishable
|
|
34
34
|
end
|
35
35
|
|
36
36
|
def self.pb_create_event(attributes)
|
37
|
-
|
37
|
+
PartyBus::Events::Create.perform_using(**attributes)
|
38
|
+
rescue
|
39
|
+
puts "PartyBus: Something went wrong"
|
38
40
|
end
|
39
41
|
|
40
42
|
# This method is overrideable in case the resource name in party bus differs
|
data/lib/party_bus/version.rb
CHANGED
data/lib/party_bus.rb
CHANGED
data/party_bus.gemspec
CHANGED
@@ -27,6 +27,7 @@ Gem::Specification.new do |spec|
|
|
27
27
|
|
28
28
|
spec.add_runtime_dependency("after_do", '~> 0.4.0')
|
29
29
|
spec.add_runtime_dependency("httparty", '~> 0.20.0')
|
30
|
-
spec.add_runtime_dependency("
|
31
|
-
spec.add_runtime_dependency("
|
30
|
+
spec.add_runtime_dependency("activerecord", ">= 6.0", "<= 8.0")
|
31
|
+
# spec.add_runtime_dependency("activemodel", ">= 6.0")
|
32
|
+
# spec.add_runtime_dependency("activesupport", ">= 6.0")
|
32
33
|
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.1.
|
4
|
+
version: 0.1.14
|
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-
|
11
|
+
date: 2022-08-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: after_do
|
@@ -39,26 +39,15 @@ dependencies:
|
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: 0.20.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
42
|
+
name: activerecord
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '6.0'
|
48
|
-
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - ">="
|
48
|
+
- - "<="
|
53
49
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: activesupport
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - ">="
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '6.0'
|
50
|
+
version: '8.0'
|
62
51
|
type: :runtime
|
63
52
|
prerelease: false
|
64
53
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -66,6 +55,9 @@ dependencies:
|
|
66
55
|
- - ">="
|
67
56
|
- !ruby/object:Gem::Version
|
68
57
|
version: '6.0'
|
58
|
+
- - "<="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '8.0'
|
69
61
|
description: This is the gem for PartyBus.
|
70
62
|
email:
|
71
63
|
- corey@aridsoftware.com
|