activerecord-postgres_pub_sub 0.4.0.rc0 → 0.4.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 02b340ee1114764133651bfee80b7a52466d451ef90ceb4b30835ea33012a1f3
4
- data.tar.gz: 9ed996ede62c63a16e879e67c47feab88277e4348a5ac47a9907d244925b9736
3
+ metadata.gz: 61cac986438dfe806cac64a98e94deb5d07bae436651e4257d682162568ff5f1
4
+ data.tar.gz: ba98481c1a0e886add3d691093d73a130cb7944201f5b5125fafb2b3975a0edc
5
5
  SHA512:
6
- metadata.gz: bafbb14a6221e885d8b0e1aaa73a0abe96b3b93fffa93bfadca37512cf2214451182757d74ae6833d83f8f523b212e73013f5d50aab3dafdcb0bfaacf6f27b34
7
- data.tar.gz: 5f45a91a953e546da8e2e5fcd22df847502c645744527fe3e4232c79ff6b3126a422cfd1b7113666d3a16e9344b6540bb856106039478baca71126bc257aee8d
6
+ metadata.gz: '05818e6889a123c133c7a76b213d81a6b669e7a56937e8473e8e4e9138cd4b3a4b60cdf3b51e19122a02f53c13b96492344bf030e5796776063868b7b7bed735'
7
+ data.tar.gz: 4adcf2f9264e2812d9b1c13ccd1e2c14a29135eb7284bb8fdd8d8c8344f6ac5f068558627f087a6a4453c67acc88eeb2fcda9a998cb6b2c60bce1f219640b3e1
@@ -2,6 +2,6 @@
2
2
 
3
3
  module ActiveRecord
4
4
  module PostgresPubSub
5
- VERSION = "0.4.0.rc0"
5
+ VERSION = "0.4.0.rc1"
6
6
  end
7
7
  end
@@ -4,7 +4,7 @@ class CreateNotifyOn<%= model_title %>InsertTrigger < ActiveRecord::Migration[5.
4
4
  TABLE_MODULE = "<%= table_module %>".freeze
5
5
 
6
6
  def up
7
- <% if strong_migrations -%>@safe = true<% end -%>
7
+ <% if strong_migrations %>@safe = true<% end %>
8
8
  execute <<-SQL
9
9
  CREATE OR REPLACE FUNCTION notify_#{TABLE_MODULE}_listeners() RETURNS TRIGGER AS $$
10
10
  DECLARE
@@ -25,7 +25,7 @@ class CreateNotifyOn<%= model_title %>InsertTrigger < ActiveRecord::Migration[5.
25
25
  end
26
26
 
27
27
  def down
28
- <% if strong_migrations -%>@safe = true<% end -%>
28
+ <% if strong_migrations %>@safe = true<% end %>
29
29
  execute <<-SQL
30
30
  DROP FUNCTION notify_#{TABLE_MODULE}_listeners() CASCADE
31
31
  SQL
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activerecord-postgres_pub_sub
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0.rc0
4
+ version: 0.4.0.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - ezCater, Inc