notifiable-rails 0.5.1 → 0.6.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.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: notifiable-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kamil Kocemba
@@ -177,7 +177,7 @@ files:
177
177
  - config/routes.rb
178
178
  - lib/generators/notifiable/install/install_generator.rb
179
179
  - lib/generators/notifiable/install/templates/create_notifiable_device_tokens.rb
180
- - lib/generators/notifiable/install/templates/create_notifiable_notification_device_tokens.rb
180
+ - lib/generators/notifiable/install/templates/create_notifiable_notification_statuses.rb
181
181
  - lib/generators/notifiable/install/templates/create_notifiable_notifications.rb
182
182
  - lib/generators/notifiable/install/templates/initializer.rb
183
183
  - lib/notifiable/active_record.rb
@@ -186,7 +186,7 @@ files:
186
186
  - lib/notifiable/engine.rb
187
187
  - lib/notifiable/notifiable_concern.rb
188
188
  - lib/notifiable/notification.rb
189
- - lib/notifiable/notification_device_token.rb
189
+ - lib/notifiable/notification_status.rb
190
190
  - lib/notifiable/notifier_base.rb
191
191
  - lib/notifiable/railtie.rb
192
192
  - lib/notifiable/version.rb
@@ -234,7 +234,7 @@ files:
234
234
  - spec/test_app/db/migrate/20131210115648_create_users.rb
235
235
  - spec/test_app/db/migrate/20131228225139_create_notifiable_device_tokens.rb
236
236
  - spec/test_app/db/migrate/20131228225140_create_notifiable_notifications.rb
237
- - spec/test_app/db/migrate/20131229104039_create_notifiable_notification_device_tokens.rb
237
+ - spec/test_app/db/migrate/20131229104039_create_notifiable_notification_statuses.rb
238
238
  - spec/test_app/db/schema.rb
239
239
  - spec/test_app/db/test.sqlite3
240
240
  - spec/test_app/log/development.log
@@ -310,7 +310,7 @@ test_files:
310
310
  - spec/test_app/db/migrate/20131210115648_create_users.rb
311
311
  - spec/test_app/db/migrate/20131228225139_create_notifiable_device_tokens.rb
312
312
  - spec/test_app/db/migrate/20131228225140_create_notifiable_notifications.rb
313
- - spec/test_app/db/migrate/20131229104039_create_notifiable_notification_device_tokens.rb
313
+ - spec/test_app/db/migrate/20131229104039_create_notifiable_notification_statuses.rb
314
314
  - spec/test_app/db/schema.rb
315
315
  - spec/test_app/db/test.sqlite3
316
316
  - spec/test_app/log/development.log
@@ -1,11 +0,0 @@
1
- class CreateNotifiableNotificationDeviceTokens < ActiveRecord::Migration
2
-
3
- def change
4
- create_table :notifiable_notification_device_tokens do |t|
5
- t.references :notification
6
- t.references :device_token
7
- t.timestamps
8
- end
9
- end
10
-
11
- end
@@ -1,11 +0,0 @@
1
- class CreateNotifiableNotificationDeviceTokens < ActiveRecord::Migration
2
-
3
- def change
4
- create_table :notifiable_notification_device_tokens do |t|
5
- t.references :notification
6
- t.references :device_token
7
- t.timestamps
8
- end
9
- end
10
-
11
- end