actioncable-enhanced-postgresql-adapter 1.0.0 → 1.0.1
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/CHANGELOG.md +4 -0
- data/actioncable-enhanced-postgresql-adapter.gemspec +3 -3
- metadata +7 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cbd2628b1b145c871e94887e1bb56d28733d243bf6fe787ec7ba0cbb2770d714
|
|
4
|
+
data.tar.gz: 73cd7a2f17185647a1abfa342da2fccd9e38e40606412c0c9bdf4e9bc058ee08
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 875d18295fc902eab747ded3e513689d3c61c964bc7f7f470bb00dcd82e708e6eb6a42b8ff8257b887dba1d15cb88fdd7af2ac83e109aa204a5d2797e227b59a
|
|
7
|
+
data.tar.gz: 12fb49a1e1e528bdc182bc22c5e450c534f3416af03c74ed5f10ef5203d10ea39344507c41f4505254932f79b4492830127085d2c64a7d6322359ca60c3f2614
|
data/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Gem::Specification.new do |spec|
|
|
2
2
|
spec.name = "actioncable-enhanced-postgresql-adapter"
|
|
3
|
-
spec.version = "1.0.
|
|
3
|
+
spec.version = "1.0.1"
|
|
4
4
|
spec.authors = ["David Backeus"]
|
|
5
5
|
spec.email = ["david.backeus@mynewsdesk.com"]
|
|
6
6
|
|
|
7
7
|
spec.summary = "ActionCable adapter for PostgreSQL that enhances the default."
|
|
8
|
-
spec.description = "
|
|
9
|
-
spec.homepage = "https://github.com/
|
|
8
|
+
spec.description = "Enhances ActionCable's built in Postgres adapter with handling of the 8000 byte limit for PostgreSQL NOTIFY payloads and allows usage without ActiveRecord."
|
|
9
|
+
spec.homepage = "https://github.com/reclaim-the-stack/actioncable-enhanced-postgresql-adapter"
|
|
10
10
|
spec.license = "MIT"
|
|
11
11
|
spec.required_ruby_version = ">= 2.7.0"
|
|
12
12
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: actioncable-enhanced-postgresql-adapter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Backeus
|
|
@@ -52,7 +52,8 @@ dependencies:
|
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '1.5'
|
|
55
|
-
description:
|
|
55
|
+
description: Enhances ActionCable's built in Postgres adapter with handling of the
|
|
56
|
+
8000 byte limit for PostgreSQL NOTIFY payloads and allows usage without ActiveRecord.
|
|
56
57
|
email:
|
|
57
58
|
- david.backeus@mynewsdesk.com
|
|
58
59
|
executables: []
|
|
@@ -65,13 +66,13 @@ files:
|
|
|
65
66
|
- lib/action_cable/subscription_adapter/enhanced_postgresql.rb
|
|
66
67
|
- lib/actioncable-enhanced-postgresql-adapter.rb
|
|
67
68
|
- lib/railtie.rb
|
|
68
|
-
homepage: https://github.com/
|
|
69
|
+
homepage: https://github.com/reclaim-the-stack/actioncable-enhanced-postgresql-adapter
|
|
69
70
|
licenses:
|
|
70
71
|
- MIT
|
|
71
72
|
metadata:
|
|
72
|
-
homepage_uri: https://github.com/
|
|
73
|
-
source_code_uri: https://github.com/
|
|
74
|
-
changelog_uri: https://github.com/
|
|
73
|
+
homepage_uri: https://github.com/reclaim-the-stack/actioncable-enhanced-postgresql-adapter
|
|
74
|
+
source_code_uri: https://github.com/reclaim-the-stack/actioncable-enhanced-postgresql-adapter
|
|
75
|
+
changelog_uri: https://github.com/reclaim-the-stack/actioncable-enhanced-postgresql-adapter/CHANGELOG.md
|
|
75
76
|
post_install_message:
|
|
76
77
|
rdoc_options: []
|
|
77
78
|
require_paths:
|