notifiable-rails 0.28.1 → 0.29.0
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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3f85de44140c5c9b4fac635511af09885d4b3f4b
|
4
|
+
data.tar.gz: 596aaa1c50f3c6ee1688125b831309fbbf1dcbb7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f923297cdc25561cc950740c50a60c6c45692538f3603103ddfa92205c3047aa963e7099566c7fc428c0d3b4e6d59cd33bfada0e60c516fd201ae506c7250f9d
|
7
|
+
data.tar.gz: a1dc1dabf7dad4658606fa253d11bc8e4adab8f834de4d40896f287a87ba1cdde80be14d0a0a650e2bdf6ea6881d1f13ec422b9c281fd89736ef3f62792733f1
|
data/lib/notifiable/version.rb
CHANGED
data/spec/test_app/db/schema.rb
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
#
|
11
11
|
# It's strongly recommended that you check this file into your version control system.
|
12
12
|
|
13
|
-
ActiveRecord::Schema.define(version:
|
13
|
+
ActiveRecord::Schema.define(version: 201806242135000) do
|
14
14
|
|
15
15
|
# These are extensions that must be enabled in order to support this database
|
16
16
|
enable_extension "plpgsql"
|
@@ -34,7 +34,7 @@ ActiveRecord::Schema.define(version: 201806182135000) do
|
|
34
34
|
t.string "name"
|
35
35
|
t.geography "lonlat", limit: {:srid=>4326, :type=>"st_point", :geographic=>true}
|
36
36
|
t.string "language"
|
37
|
-
t.string "
|
37
|
+
t.string "region"
|
38
38
|
t.index ["app_id", "token"], name: "index_notifiable_device_tokens_on_app_id_and_token", unique: true
|
39
39
|
t.index ["user_alias"], name: "index_notifiable_device_tokens_on_user_alias"
|
40
40
|
end
|
@@ -56,7 +56,8 @@ ActiveRecord::Schema.define(version: 201806182135000) do
|
|
56
56
|
t.integer "badge_count"
|
57
57
|
t.text "last_error_message"
|
58
58
|
t.string "title"
|
59
|
-
t.string "
|
59
|
+
t.string "thread_id"
|
60
|
+
t.string "category"
|
60
61
|
end
|
61
62
|
|
62
63
|
create_table "notifiable_statuses", id: :serial, force: :cascade do |t|
|
@@ -235,3 +235,24 @@ Migrating to AddLanguageAndRegionToDeviceTokens (201805292135000)
|
|
235
235
|
[1m[35m (0.4ms)[0m [1m[35mCOMMIT[0m
|
236
236
|
[1m[35m (0.3ms)[0m [1m[34mSELECT pg_advisory_unlock(1477033930387646610)[0m
|
237
237
|
[1m[35m (0.2ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
238
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT pg_try_advisory_lock(1477033930387646610)[0m
|
239
|
+
[1m[35m (3.0ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
240
|
+
Migrating to AddThreadIdToNotifications (201806182135000)
|
241
|
+
[1m[35m (0.6ms)[0m [1m[35mBEGIN[0m
|
242
|
+
[1m[35m (10.2ms)[0m [1m[35mALTER TABLE "notifiable_notifications" ADD "thread_id" character varying[0m
|
243
|
+
[1m[35mSQL (2.9ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "201806182135000"]]
|
244
|
+
[1m[35m (1.1ms)[0m [1m[35mCOMMIT[0m
|
245
|
+
Migrating to AddCategoryToNotifications (201806242135000)
|
246
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT pg_advisory_unlock(1477033930387646610)[0m
|
247
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT pg_try_advisory_lock(1477033930387646610)[0m
|
248
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
249
|
+
Migrating to AddCategoryToNotifications (201806242135000)
|
250
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
251
|
+
[1m[35m (0.7ms)[0m [1m[35mALTER TABLE "notifiable_notifications" ADD "category" character varying[0m
|
252
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "201806242135000"]]
|
253
|
+
[1m[35m (6.3ms)[0m [1m[35mCOMMIT[0m
|
254
|
+
[1m[36mActiveRecord::InternalMetadata Load (3.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
255
|
+
[1m[35m (0.3ms)[0m [1m[35mBEGIN[0m
|
256
|
+
[1m[35m (0.2ms)[0m [1m[35mCOMMIT[0m
|
257
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT pg_advisory_unlock(1477033930387646610)[0m
|
258
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
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.
|
4
|
+
version: 0.29.0
|
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: 2018-06-
|
11
|
+
date: 2018-06-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -200,6 +200,7 @@ files:
|
|
200
200
|
- db/migrate/201803142135000_add_title_to_notifications.rb
|
201
201
|
- db/migrate/201805292135000_add_language_and_country_to_device_tokens.rb
|
202
202
|
- db/migrate/201806182135000_add_thread_id_to_notifications.rb
|
203
|
+
- db/migrate/201806242135000_add_category_to_notifications.rb
|
203
204
|
- lib/generators/notifiable/install/install_generator.rb
|
204
205
|
- lib/generators/notifiable/install/templates/initializer.rb
|
205
206
|
- lib/notifiable.rb
|