active_pubsub_rails 0.1.0 → 0.2.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: 6bdad702dc5f5c7b7f559897fd91bcbba8172737f0355d3ff4e07d4a864cc7ce
4
- data.tar.gz: 79a65c0ca27809760e87d981e08d1a37985f21e33e7b4d3846f371e0e304b761
3
+ metadata.gz: a1f2c2a33f6781224ee1f3e06a9604ed52f20990272aa10f13a983537f7e742a
4
+ data.tar.gz: eb6a9a6783aa82264cc877a6d828dcb27ce119687dce7e9213791c9be6670bf6
5
5
  SHA512:
6
- metadata.gz: bfc62a703a9c391bcd096fb6fc9cca2accb76ad64354612b233400bf0e96f946c59b12c93c5f91b7a96b1f28119c63421d333ddd2d5f03bb82c4099429cce242
7
- data.tar.gz: 209419fad924d1e5128319c12c46222e0f7a59cffcc1ff0ada18c83dcbfa8b8c60f35c162d4f55666dce422b8dc754d8f710b1093983cbe6bd2fca381685bee4
6
+ metadata.gz: 374f0356b8007b57fe94b3ba698482cb844f293d80817c3803bf3b2c578875bdc3608063cbd26a99ac008f174c51308755761b1537825888cf95c445994f4796
7
+ data.tar.gz: efbc708c9a45bcbbd0d99456a1ed08c90f5d60707382a0839fce39ed37dfab0d8ac8561f30b3204e94041c41d2a59dc653a45a7daf02730e6058f807632b7fb0
data/Gemfile CHANGED
@@ -5,8 +5,8 @@ source "https://rubygems.org"
5
5
  # Specify your gem's dependencies in active_pubsub_rails.gemspec
6
6
  gemspec
7
7
 
8
- gem "rake", "~> 13.0"
9
-
10
8
  gem "minitest", "~> 5.0"
9
+ gem "rails", "~> 6.1.x"
10
+ gem "rake", "~> 13.0"
11
11
 
12
12
  gem "rubocop", "~> 0.80"
data/Gemfile.lock CHANGED
@@ -1,12 +1,65 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- active_pubsub_rails (0.1.0)
4
+ active_pubsub_rails (0.2.0)
5
5
  activesupport (>= 5.2.x)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
+ actioncable (6.1.3.1)
11
+ actionpack (= 6.1.3.1)
12
+ activesupport (= 6.1.3.1)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ actionmailbox (6.1.3.1)
16
+ actionpack (= 6.1.3.1)
17
+ activejob (= 6.1.3.1)
18
+ activerecord (= 6.1.3.1)
19
+ activestorage (= 6.1.3.1)
20
+ activesupport (= 6.1.3.1)
21
+ mail (>= 2.7.1)
22
+ actionmailer (6.1.3.1)
23
+ actionpack (= 6.1.3.1)
24
+ actionview (= 6.1.3.1)
25
+ activejob (= 6.1.3.1)
26
+ activesupport (= 6.1.3.1)
27
+ mail (~> 2.5, >= 2.5.4)
28
+ rails-dom-testing (~> 2.0)
29
+ actionpack (6.1.3.1)
30
+ actionview (= 6.1.3.1)
31
+ activesupport (= 6.1.3.1)
32
+ rack (~> 2.0, >= 2.0.9)
33
+ rack-test (>= 0.6.3)
34
+ rails-dom-testing (~> 2.0)
35
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
36
+ actiontext (6.1.3.1)
37
+ actionpack (= 6.1.3.1)
38
+ activerecord (= 6.1.3.1)
39
+ activestorage (= 6.1.3.1)
40
+ activesupport (= 6.1.3.1)
41
+ nokogiri (>= 1.8.5)
42
+ actionview (6.1.3.1)
43
+ activesupport (= 6.1.3.1)
44
+ builder (~> 3.1)
45
+ erubi (~> 1.4)
46
+ rails-dom-testing (~> 2.0)
47
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
48
+ activejob (6.1.3.1)
49
+ activesupport (= 6.1.3.1)
50
+ globalid (>= 0.3.6)
51
+ activemodel (6.1.3.1)
52
+ activesupport (= 6.1.3.1)
53
+ activerecord (6.1.3.1)
54
+ activemodel (= 6.1.3.1)
55
+ activesupport (= 6.1.3.1)
56
+ activestorage (6.1.3.1)
57
+ actionpack (= 6.1.3.1)
58
+ activejob (= 6.1.3.1)
59
+ activerecord (= 6.1.3.1)
60
+ activesupport (= 6.1.3.1)
61
+ marcel (~> 1.0.0)
62
+ mini_mime (~> 1.0.2)
10
63
  activesupport (6.1.3.1)
11
64
  concurrent-ruby (~> 1.0, >= 1.0.2)
12
65
  i18n (>= 1.6, < 2)
@@ -14,13 +67,59 @@ GEM
14
67
  tzinfo (~> 2.0)
15
68
  zeitwerk (~> 2.3)
16
69
  ast (2.4.2)
70
+ builder (3.2.4)
17
71
  concurrent-ruby (1.1.8)
72
+ crass (1.0.6)
73
+ erubi (1.10.0)
74
+ globalid (0.4.2)
75
+ activesupport (>= 4.2.0)
18
76
  i18n (1.8.10)
19
77
  concurrent-ruby (~> 1.0)
78
+ loofah (2.9.1)
79
+ crass (~> 1.0.2)
80
+ nokogiri (>= 1.5.9)
81
+ mail (2.7.1)
82
+ mini_mime (>= 0.1.1)
83
+ marcel (1.0.1)
84
+ method_source (1.0.0)
85
+ mini_mime (1.0.3)
20
86
  minitest (5.14.4)
87
+ nio4r (2.5.7)
88
+ nokogiri (1.11.3-x86_64-darwin)
89
+ racc (~> 1.4)
21
90
  parallel (1.20.1)
22
91
  parser (3.0.1.0)
23
92
  ast (~> 2.4.1)
93
+ racc (1.5.2)
94
+ rack (2.2.3)
95
+ rack-test (1.1.0)
96
+ rack (>= 1.0, < 3)
97
+ rails (6.1.3.1)
98
+ actioncable (= 6.1.3.1)
99
+ actionmailbox (= 6.1.3.1)
100
+ actionmailer (= 6.1.3.1)
101
+ actionpack (= 6.1.3.1)
102
+ actiontext (= 6.1.3.1)
103
+ actionview (= 6.1.3.1)
104
+ activejob (= 6.1.3.1)
105
+ activemodel (= 6.1.3.1)
106
+ activerecord (= 6.1.3.1)
107
+ activestorage (= 6.1.3.1)
108
+ activesupport (= 6.1.3.1)
109
+ bundler (>= 1.15.0)
110
+ railties (= 6.1.3.1)
111
+ sprockets-rails (>= 2.0.0)
112
+ rails-dom-testing (2.0.3)
113
+ activesupport (>= 4.2.0)
114
+ nokogiri (>= 1.6)
115
+ rails-html-sanitizer (1.3.0)
116
+ loofah (~> 2.3)
117
+ railties (6.1.3.1)
118
+ actionpack (= 6.1.3.1)
119
+ activesupport (= 6.1.3.1)
120
+ method_source
121
+ rake (>= 0.8.7)
122
+ thor (~> 1.0)
24
123
  rainbow (3.0.0)
25
124
  rake (13.0.3)
26
125
  regexp_parser (2.1.1)
@@ -37,9 +136,20 @@ GEM
37
136
  rubocop-ast (1.4.1)
38
137
  parser (>= 2.7.1.5)
39
138
  ruby-progressbar (1.11.0)
139
+ sprockets (4.0.2)
140
+ concurrent-ruby (~> 1.0)
141
+ rack (> 1, < 3)
142
+ sprockets-rails (3.2.2)
143
+ actionpack (>= 4.0)
144
+ activesupport (>= 4.0)
145
+ sprockets (>= 3.0.0)
146
+ thor (1.1.0)
40
147
  tzinfo (2.0.4)
41
148
  concurrent-ruby (~> 1.0)
42
149
  unicode-display_width (1.7.0)
150
+ websocket-driver (0.7.3)
151
+ websocket-extensions (>= 0.1.0)
152
+ websocket-extensions (0.1.5)
43
153
  zeitwerk (2.4.2)
44
154
 
45
155
  PLATFORMS
@@ -48,6 +158,7 @@ PLATFORMS
48
158
  DEPENDENCIES
49
159
  active_pubsub_rails!
50
160
  minitest (~> 5.0)
161
+ rails (~> 6.1.x)
51
162
  rake (~> 13.0)
52
163
  rubocop (~> 0.80)
53
164
 
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "rails"
3
4
  require_relative "adapters/active_support_notifications"
4
5
  require_relative "subscriber_registry"
5
6
  require_relative "configuration"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActivePubsubRails
4
- VERSION = "0.1.0"
4
+ VERSION = "0.2.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_pubsub_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gaurav Tiwari