notifiable-rails 0.26.0 → 0.26.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/db/migrate/20180302212641_add_last_error_message_to_notifications.rb +5 -0
- data/lib/notifiable/notification.rb +9 -3
- data/lib/notifiable/version.rb +1 -1
- data/spec/model/notification_spec.rb +16 -2
- data/spec/test_app/config/database.yml +0 -2
- data/spec/test_app/db/schema.rb +2 -1
- data/spec/test_app/log/development.log +142 -260
- data/spec/test_app/log/test.log +884 -40774
- metadata +31 -34
- data/spec/test_app/db/development.sqlite3 +0 -0
- data/spec/test_app/db/test.sqlite3 +0 -0
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: notifiable-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.26.
|
4
|
+
version: 0.26.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Brooke-Smith
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-03-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -196,6 +196,7 @@ files:
|
|
196
196
|
- db/migrate/20170108221332_remove_is_valid_from_notifiable_device_tokens.rb
|
197
197
|
- db/migrate/20170108221432_add_app_id_token_index_to_notifiable_device_tokens.rb
|
198
198
|
- db/migrate/20170116212641_add_lat_lon_to_notifiable_device_tokens.rb
|
199
|
+
- db/migrate/20180302212641_add_last_error_message_to_notifications.rb
|
199
200
|
- lib/generators/notifiable/install/install_generator.rb
|
200
201
|
- lib/generators/notifiable/install/templates/initializer.rb
|
201
202
|
- lib/notifiable.rb
|
@@ -246,9 +247,7 @@ files:
|
|
246
247
|
- spec/test_app/config/initializers/wrap_parameters.rb
|
247
248
|
- spec/test_app/config/locales/en.yml
|
248
249
|
- spec/test_app/config/routes.rb
|
249
|
-
- spec/test_app/db/development.sqlite3
|
250
250
|
- spec/test_app/db/schema.rb
|
251
|
-
- spec/test_app/db/test.sqlite3
|
252
251
|
- spec/test_app/log/development.log
|
253
252
|
- spec/test_app/log/test.log
|
254
253
|
- spec/test_app/public/404.html
|
@@ -275,54 +274,52 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
275
274
|
version: '0'
|
276
275
|
requirements: []
|
277
276
|
rubyforge_project:
|
278
|
-
rubygems_version: 2.
|
277
|
+
rubygems_version: 2.6.14
|
279
278
|
signing_key:
|
280
279
|
specification_version: 4
|
281
280
|
summary: Notifiable engine for Rails.
|
282
281
|
test_files:
|
283
|
-
- spec/model/device_token_spec.rb
|
284
|
-
- spec/model/notifiable_app_spec.rb
|
285
|
-
- spec/model/notification_spec.rb
|
286
|
-
- spec/model/notifier_base_spec.rb
|
287
282
|
- spec/spec_helper.rb
|
288
|
-
- spec/
|
289
|
-
- spec/
|
290
|
-
- spec/support/request_helpers.rb
|
283
|
+
- spec/test_app/app/controllers/application_controller.rb
|
284
|
+
- spec/test_app/app/views/layouts/application.html.erb
|
291
285
|
- spec/test_app/app/assets/javascripts/application.js
|
292
286
|
- spec/test_app/app/assets/stylesheets/application.css
|
293
|
-
- spec/test_app/app/controllers/application_controller.rb
|
294
287
|
- spec/test_app/app/helpers/application_helper.rb
|
295
|
-
- spec/test_app/
|
288
|
+
- spec/test_app/bin/rake
|
296
289
|
- spec/test_app/bin/bundle
|
297
290
|
- spec/test_app/bin/rails
|
298
|
-
- spec/test_app/
|
291
|
+
- spec/test_app/config/routes.rb
|
292
|
+
- spec/test_app/config/locales/en.yml
|
299
293
|
- spec/test_app/config/apns-development.pem
|
300
|
-
- spec/test_app/config/application.rb
|
301
|
-
- spec/test_app/config/boot.rb
|
302
|
-
- spec/test_app/config/database.yml
|
303
|
-
- spec/test_app/config/environment.rb
|
304
|
-
- spec/test_app/config/environments/development.rb
|
305
294
|
- spec/test_app/config/environments/production.rb
|
295
|
+
- spec/test_app/config/environments/development.rb
|
306
296
|
- spec/test_app/config/environments/test.rb
|
297
|
+
- spec/test_app/config/environment.rb
|
298
|
+
- spec/test_app/config/application.rb
|
299
|
+
- spec/test_app/config/database.yml
|
300
|
+
- spec/test_app/config/boot.rb
|
307
301
|
- spec/test_app/config/initializers/backtrace_silencers.rb
|
308
|
-
- spec/test_app/config/initializers/filter_parameter_logging.rb
|
309
|
-
- spec/test_app/config/initializers/inflections.rb
|
310
302
|
- spec/test_app/config/initializers/mime_types.rb
|
311
|
-
- spec/test_app/config/initializers/
|
312
|
-
- spec/test_app/config/initializers/secret_token.rb
|
303
|
+
- spec/test_app/config/initializers/filter_parameter_logging.rb
|
313
304
|
- spec/test_app/config/initializers/session_store.rb
|
314
305
|
- spec/test_app/config/initializers/wrap_parameters.rb
|
315
|
-
- spec/test_app/config/
|
316
|
-
- spec/test_app/config/
|
306
|
+
- spec/test_app/config/initializers/secret_token.rb
|
307
|
+
- spec/test_app/config/initializers/inflections.rb
|
308
|
+
- spec/test_app/config/initializers/notifiable.rb
|
317
309
|
- spec/test_app/config.ru
|
318
|
-
- spec/test_app/
|
319
|
-
- spec/test_app/
|
320
|
-
- spec/test_app/db/test.sqlite3
|
321
|
-
- spec/test_app/log/development.log
|
322
|
-
- spec/test_app/log/test.log
|
323
|
-
- spec/test_app/public/404.html
|
310
|
+
- spec/test_app/Rakefile
|
311
|
+
- spec/test_app/public/favicon.ico
|
324
312
|
- spec/test_app/public/422.html
|
325
313
|
- spec/test_app/public/500.html
|
326
|
-
- spec/test_app/public/
|
327
|
-
- spec/test_app/
|
314
|
+
- spec/test_app/public/404.html
|
315
|
+
- spec/test_app/db/schema.rb
|
316
|
+
- spec/test_app/log/test.log
|
317
|
+
- spec/test_app/log/development.log
|
328
318
|
- spec/test_app/README.rdoc
|
319
|
+
- spec/support/engine_controller.rb
|
320
|
+
- spec/support/factories.rb
|
321
|
+
- spec/support/request_helpers.rb
|
322
|
+
- spec/model/notification_spec.rb
|
323
|
+
- spec/model/notifiable_app_spec.rb
|
324
|
+
- spec/model/notifier_base_spec.rb
|
325
|
+
- spec/model/device_token_spec.rb
|
Binary file
|
Binary file
|