party_bus 0.1.11 → 0.1.12
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 +2 -0
- data/Gemfile.lock +1 -1
- data/README.md +6 -0
- data/lib/party_bus/models/concerns/publishable.rb +1 -1
- data/lib/party_bus/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3d5c8a33c03cc3ec8b6de654e3f46ccb8d7a06cd6bf65ecf3f285c27fae26181
|
4
|
+
data.tar.gz: 28b3151a8d198a7b8111fc2e90b8ad1d9461b278e1d3883d4f84acc1f8755a21
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9741d65cc4428dd37e28979c45956b048129b2a072da072eeafed2a66ef745abd13c98f98b454560bc5e2dd5ab6f3081fe7e7b625f9ba1dbfaaac109a9afde91
|
7
|
+
data.tar.gz: 93f86d42f438aabe3dbaf425a0f6838ec9850a9e1205ded9b5ff5d9c90fee7a940f3af67c2be4aa077396c9a5ed4fdb6b303edad1bb456fcc3eef81ffacb99da
|
data/.gitignore
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -8,6 +8,12 @@ TODO: Delete this and the text above, and describe your gem
|
|
8
8
|
|
9
9
|
Add this line to your application's Gemfile:
|
10
10
|
|
11
|
+
```ruby
|
12
|
+
gem "party_bus"
|
13
|
+
```
|
14
|
+
|
15
|
+
To track the latest development version.
|
16
|
+
|
11
17
|
```ruby
|
12
18
|
gem "party_bus", git: "git@github.com:arid-software/party-bus-ruby.git", branch: "main"
|
13
19
|
```
|
data/lib/party_bus/version.rb
CHANGED