rpush 3.0.1 → 3.0.2

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: 4d06f84b11c5dcf54b9377a2ff40a917f0b2b60d12cc9bb5f20f4e6e75eaf6ff
4
- data.tar.gz: 67ca2b235af5afe6b76dd503c69e6fc4063bade97635cd79cbfc309ec6a78274
3
+ metadata.gz: f7de52efb63f861275eeec5a6c22d80ae891df704140742127da8709a873b373
4
+ data.tar.gz: e9c82eb246ba4f268f2553d974703c78a8eb8fa2d3df87b603956382f8823aa2
5
5
  SHA512:
6
- metadata.gz: d7a87e736193a8cce907173e0b3bbd6c19c3e0b831136974da7c792b37b8623a214b5a30fece4c9a31116c8f979914206c71d242957e2230474fee4a34b30420
7
- data.tar.gz: a4e9d0971a09443832b7ddea4ea0345dd2a87fe3a7f6f57a5db7b0698173417a745a4f7f80995085439c7a261948ad82514463c5c82f3e601e9dfb5ca37aa334
6
+ metadata.gz: 7d17f2506d4b26c69ddd9b371c55997b7c64a7244597393ee8d2f95542abbc43fe4d1f753020ddb9f9e180c5ca5745926d88406ea07385b0c8a129768cb5df30
7
+ data.tar.gz: 3c222ffb736101b9c8178766402b8adf9f7f41ae94187344ec2c2449ade4ec47a89ea5ef1c9cced95573dd1b896d4ac5be43651aa42d86f04b8e732080c3fd0f
@@ -12,6 +12,13 @@
12
12
 
13
13
  - None
14
14
 
15
+ ## 3.0.2 (2018-01-08)
16
+
17
+ #### Fixes
18
+
19
+ * Fixes migrations added in 3.0.1 ([#396](https://github.com/rpush/rpush/pull/396) by [@grosser](https://github.com/grosser))
20
+ * Actually run these migrations in the test suite ([#399](https://github.com/rpush/rpush/pull/399) by [@aried3r](https://github.com/aried3r))
21
+
15
22
  ## 3.0.1 (2017-11-30)
16
23
 
17
24
  #### Enhancements
@@ -2,12 +2,12 @@ class Rpush301Updates < ActiveRecord::VERSION::MAJOR >= 5 ? ActiveRecord::Migrat
2
2
  def self.up
3
3
  change_column_null :rpush_notifications, :mutable_content, false
4
4
  change_column_null :rpush_notifications, :content_available, false
5
- change_column_null :rapns_notifications, :alert_is_json, false
5
+ change_column_null :rpush_notifications, :alert_is_json, false
6
6
  end
7
7
 
8
8
  def self.down
9
9
  change_column_null :rpush_notifications, :mutable_content, true
10
10
  change_column_null :rpush_notifications, :content_available, true
11
- change_column_null :rapns_notifications, :alert_is_json, true
11
+ change_column_null :rpush_notifications, :alert_is_json, true
12
12
  end
13
13
  end
@@ -2,7 +2,7 @@ module Rpush
2
2
  module VERSION
3
3
  MAJOR = 3
4
4
  MINOR = 0
5
- TINY = 1
5
+ TINY = 2
6
6
  PRE = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".").freeze
@@ -32,8 +32,17 @@ require 'generators/templates/rpush_2_1_0_updates'
32
32
  require 'generators/templates/rpush_2_6_0_updates'
33
33
  require 'generators/templates/rpush_2_7_0_updates'
34
34
  require 'generators/templates/rpush_3_0_0_updates'
35
-
36
- migrations = [AddRpush, Rpush200Updates, Rpush210Updates, Rpush260Updates, Rpush270Updates, Rpush300Updates]
35
+ require 'generators/templates/rpush_3_0_1_updates'
36
+
37
+ migrations = [
38
+ AddRpush,
39
+ Rpush200Updates,
40
+ Rpush210Updates,
41
+ Rpush260Updates,
42
+ Rpush270Updates,
43
+ Rpush300Updates,
44
+ Rpush301Updates
45
+ ]
37
46
 
38
47
  unless ENV['TRAVIS']
39
48
  migrations.reverse_each do |m|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rpush
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 3.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ian Leitch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-30 00:00:00.000000000 Z
11
+ date: 2018-01-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: multi_json