push_routes 0.0.6 → 0.0.7
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/lib/push_routes.rb +10 -0
- data/lib/push_routes/push_route.rb +1 -9
- data/lib/push_routes/version.rb +1 -1
- data/test/dummy/log/test.log +242 -0
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0b6ad2fe0f61744703ed792941851361b60145b6
|
4
|
+
data.tar.gz: 32098dd6a7914c565398a4dfc8b535d8b7fc2c12
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 824f034d6af434fa8a22f963f81caf4677505c2314c4348bd624e7621f592e3916cfe4585359a736d977d8387fb79793df538a3759e2f3f3fb6e4ecca78b8559
|
7
|
+
data.tar.gz: 73b05c9554af038cb4079c5028e39c86f2c1ad5d5aba7ce7f4540251eafff56f182b2af822e5a38105e8dbba4f77811118157f60d2deb10adae04f418d00795d
|
data/lib/push_routes.rb
CHANGED
@@ -32,6 +32,16 @@ module PushRoutes
|
|
32
32
|
@@redis.client.options[:url] if @@redis
|
33
33
|
end
|
34
34
|
|
35
|
+
def self.trigger(route, type: '', data: 'placeholder')
|
36
|
+
begin
|
37
|
+
#TODO: Abstract away redis server as a transport
|
38
|
+
#This try catch repetition is bad
|
39
|
+
PushRoutes.redis.publish 'rt-change', {channel: route, type: type, data: data}.to_json
|
40
|
+
rescue Redis::CannotConnectError => e
|
41
|
+
warn "PushRoutes cannot reach the redis server"
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
35
45
|
def self.REDIS_URL= (x)
|
36
46
|
begin
|
37
47
|
@@redis = Redis.new(:url => x);
|
@@ -131,15 +131,7 @@ module PushRoute
|
|
131
131
|
if (result)
|
132
132
|
result = [result] unless result.kind_of?(Array)
|
133
133
|
result.each do |params|
|
134
|
-
|
135
|
-
msg = {channel: update_path, type: "", data: "placeholder"}
|
136
|
-
begin
|
137
|
-
#TODO: Abstract away redis server as a transport
|
138
|
-
#This try catch repetition is bad
|
139
|
-
PushRoutes.redis.publish 'rt-change', msg.to_json
|
140
|
-
rescue Redis::CannotConnectError => e
|
141
|
-
warn "PushRoutes cannot reach the redis server"
|
142
|
-
end
|
134
|
+
PushRoutes.trigger(this.push_routes[action].notification_string(params))
|
143
135
|
end
|
144
136
|
end
|
145
137
|
end
|
data/lib/push_routes/version.rb
CHANGED
data/test/dummy/log/test.log
CHANGED
@@ -33951,3 +33951,245 @@ TriggerTest: test_trigger_specific_age
|
|
33951
33951
|
[1m[36mSQL (0.2ms)[0m [1mUPDATE "people" SET "age" = ?, "updated_at" = ? WHERE "people"."id" = ?[0m [["age", 81], ["updated_at", "2017-06-28 14:36:11.199599"], ["id", 1]]
|
33952
33952
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
33953
33953
|
[1m[36m (2.5ms)[0m [1mrollback transaction[0m
|
33954
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
33955
|
+
[1m[35m (0.1ms)[0m begin transaction
|
33956
|
+
----------------------------------------------------
|
33957
|
+
NewGetRouteTest: test_returns_correct_new_get_routes
|
33958
|
+
----------------------------------------------------
|
33959
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
33960
|
+
[1m[35m (0.0ms)[0m begin transaction
|
33961
|
+
----------------------------------
|
33962
|
+
EnableRoutesTest: test_nested_path
|
33963
|
+
----------------------------------
|
33964
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
33965
|
+
[1m[35m (0.0ms)[0m begin transaction
|
33966
|
+
-------------------------------------------------------------------
|
33967
|
+
EnableRoutesTest: test_doesn't_let_you_enable_action_with_no_routes
|
33968
|
+
-------------------------------------------------------------------
|
33969
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
33970
|
+
[1m[35m (0.0ms)[0m begin transaction
|
33971
|
+
-----------------------------------
|
33972
|
+
EnableRoutesTest: test_add_on_twice
|
33973
|
+
-----------------------------------
|
33974
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
33975
|
+
[1m[35m (0.0ms)[0m begin transaction
|
33976
|
+
--------------------------------
|
33977
|
+
EnableRoutesTest: test_added_url
|
33978
|
+
--------------------------------
|
33979
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
33980
|
+
[1m[35m (0.0ms)[0m begin transaction
|
33981
|
+
--------------------------------
|
33982
|
+
EnableRoutesTest: test_basic_url
|
33983
|
+
--------------------------------
|
33984
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
33985
|
+
[1m[35m (0.0ms)[0m begin transaction
|
33986
|
+
--------------------------------------
|
33987
|
+
EnableRoutesTest: test_url_with_params
|
33988
|
+
--------------------------------------
|
33989
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
33990
|
+
[1m[35m (0.0ms)[0m begin transaction
|
33991
|
+
-----------------------------------------------------
|
33992
|
+
EnableRoutesTest: test_can_add_witout_explecit_enable
|
33993
|
+
-----------------------------------------------------
|
33994
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
33995
|
+
[1m[35m (0.0ms)[0m begin transaction
|
33996
|
+
------------------------------------------------
|
33997
|
+
EnableRoutesTest: test_add_on_existing_url_error
|
33998
|
+
------------------------------------------------
|
33999
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
34000
|
+
[1m[35m (0.0ms)[0m begin transaction
|
34001
|
+
---------------------------------
|
34002
|
+
EnableRoutesTest: test_basic_path
|
34003
|
+
---------------------------------
|
34004
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
34005
|
+
[1m[35m (0.0ms)[0m begin transaction
|
34006
|
+
----------------------------------------------------------------------------------------------
|
34007
|
+
NonStandardControllerTest: test_shouldn't_crash_when_there_is_a_controller_in_the_wrong_folder
|
34008
|
+
----------------------------------------------------------------------------------------------
|
34009
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
34010
|
+
[1m[35m (0.0ms)[0m begin transaction
|
34011
|
+
---------------------------------------------
|
34012
|
+
NotificationStringTest: test_params_wrong_key
|
34013
|
+
---------------------------------------------
|
34014
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
34015
|
+
[1m[35m (0.0ms)[0m begin transaction
|
34016
|
+
----------------------------------------
|
34017
|
+
NotificationStringTest: test_params_okay
|
34018
|
+
----------------------------------------
|
34019
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
34020
|
+
[1m[35m (0.0ms)[0m begin transaction
|
34021
|
+
-------------------------------------------
|
34022
|
+
NotificationStringTest: test_no_params_okay
|
34023
|
+
-------------------------------------------
|
34024
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
34025
|
+
[1m[35m (0.0ms)[0m begin transaction
|
34026
|
+
-------------------------------------------------
|
34027
|
+
NotificationStringTest: test_no_params_okay_false
|
34028
|
+
-------------------------------------------------
|
34029
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
34030
|
+
[1m[35m (0.0ms)[0m begin transaction
|
34031
|
+
--------------------------------------------
|
34032
|
+
NotificationStringTest: test_params_not_hash
|
34033
|
+
--------------------------------------------
|
34034
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
34035
|
+
[1m[35m (0.0ms)[0m begin transaction
|
34036
|
+
---------------------------------------
|
34037
|
+
TriggerTest: test_specific_trigger_fail
|
34038
|
+
---------------------------------------
|
34039
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
34040
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "people" ("age", "created_at", "updated_at") VALUES (?, ?, ?) [["age", 100], ["created_at", "2017-08-24 21:55:41.103626"], ["updated_at", "2017-08-24 21:55:41.103626"]]
|
34041
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
34042
|
+
[1m[35mPerson Load (0.1ms)[0m SELECT "people".* FROM "people" ORDER BY "people"."id" DESC LIMIT 1
|
34043
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
34044
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "people" SET "age" = ?, "updated_at" = ? WHERE "people"."id" = ? [["age", 60], ["updated_at", "2017-08-24 21:55:41.116945"], ["id", 1]]
|
34045
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
34046
|
+
[1m[35m (2.6ms)[0m rollback transaction
|
34047
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
34048
|
+
---------------------------------------------------
|
34049
|
+
TriggerTest: test_specific_trigger_function_success
|
34050
|
+
---------------------------------------------------
|
34051
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
34052
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "people" ("age", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["age", 100], ["created_at", "2017-08-24 21:55:42.639992"], ["updated_at", "2017-08-24 21:55:42.639992"]]
|
34053
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
34054
|
+
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" ORDER BY "people"."id" DESC LIMIT 1[0m
|
34055
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
34056
|
+
[1m[36mSQL (0.3ms)[0m [1mUPDATE "people" SET "age" = ?, "updated_at" = ? WHERE "people"."id" = ?[0m [["age", 81], ["updated_at", "2017-08-24 21:55:42.645665"], ["id", 1]]
|
34057
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
34058
|
+
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" ORDER BY "people"."id" DESC LIMIT 1[0m
|
34059
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
34060
|
+
[1m[36mSQL (0.0ms)[0m [1mUPDATE "people" SET "age" = ?, "updated_at" = ? WHERE "people"."id" = ?[0m [["age", 79], ["updated_at", "2017-08-24 21:55:42.650427"], ["id", 1]]
|
34061
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
34062
|
+
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" ORDER BY "people"."id" DESC LIMIT 1[0m
|
34063
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
34064
|
+
[1m[36mSQL (0.0ms)[0m [1mUPDATE "people" SET "age" = ?, "updated_at" = ? WHERE "people"."id" = ?[0m [["age", 78], ["updated_at", "2017-08-24 21:55:42.654698"], ["id", 1]]
|
34065
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
34066
|
+
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" ORDER BY "people"."id" DESC LIMIT 1[0m
|
34067
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
34068
|
+
[1m[36mSQL (0.0ms)[0m [1mUPDATE "people" SET "age" = ?, "updated_at" = ? WHERE "people"."id" = ?[0m [["age", 82], ["updated_at", "2017-08-24 21:55:42.658026"], ["id", 1]]
|
34069
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
34070
|
+
[1m[36m (2.6ms)[0m [1mrollback transaction[0m
|
34071
|
+
[1m[35m (0.1ms)[0m begin transaction
|
34072
|
+
------------------------------------------
|
34073
|
+
TriggerTest: test_specific_trigger_success
|
34074
|
+
------------------------------------------
|
34075
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
34076
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "people" ("age", "created_at", "updated_at") VALUES (?, ?, ?) [["age", 100], ["created_at", "2017-08-24 21:55:44.171249"], ["updated_at", "2017-08-24 21:55:44.171249"]]
|
34077
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
34078
|
+
[1m[35mPerson Load (0.1ms)[0m SELECT "people".* FROM "people" ORDER BY "people"."id" DESC LIMIT 1
|
34079
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
34080
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "people" SET "age" = ?, "updated_at" = ? WHERE "people"."id" = ? [["age", 60], ["updated_at", "2017-08-24 21:55:44.177228"], ["id", 1]]
|
34081
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
34082
|
+
[1m[35mPerson Load (0.1ms)[0m SELECT "people".* FROM "people" ORDER BY "people"."id" DESC LIMIT 1
|
34083
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
34084
|
+
[1m[35mSQL (0.0ms)[0m UPDATE "people" SET "age" = ?, "updated_at" = ? WHERE "people"."id" = ? [["age", 40], ["updated_at", "2017-08-24 21:55:44.182732"], ["id", 1]]
|
34085
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
34086
|
+
[1m[35mPerson Load (0.1ms)[0m SELECT "people".* FROM "people" ORDER BY "people"."id" DESC LIMIT 1
|
34087
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
34088
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
34089
|
+
[1m[36mPerson Load (0.1ms)[0m [1mSELECT "people".* FROM "people" ORDER BY "people"."id" DESC LIMIT 1[0m
|
34090
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
34091
|
+
[1m[36mSQL (0.0ms)[0m [1mUPDATE "people" SET "age" = ?, "updated_at" = ? WHERE "people"."id" = ?[0m [["age", 51], ["updated_at", "2017-08-24 21:55:44.189881"], ["id", 1]]
|
34092
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
34093
|
+
[1m[36m (2.5ms)[0m [1mrollback transaction[0m
|
34094
|
+
[1m[35m (0.1ms)[0m begin transaction
|
34095
|
+
--------------------------------------
|
34096
|
+
TriggerTest: test_trigger_specific_age
|
34097
|
+
--------------------------------------
|
34098
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
34099
|
+
[1m[35mSQL (1.4ms)[0m INSERT INTO "people" ("age", "created_at", "updated_at") VALUES (?, ?, ?) [["age", 100], ["created_at", "2017-08-24 21:55:45.702502"], ["updated_at", "2017-08-24 21:55:45.702502"]]
|
34100
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
34101
|
+
[1m[35mPerson Load (0.1ms)[0m SELECT "people".* FROM "people" ORDER BY "people"."id" DESC LIMIT 1
|
34102
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
34103
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "people" SET "age" = ?, "updated_at" = ? WHERE "people"."id" = ? [["age", 81], ["updated_at", "2017-08-24 21:55:45.709582"], ["id", 1]]
|
34104
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
34105
|
+
[1m[35m (2.6ms)[0m rollback transaction
|
34106
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
34107
|
+
-------------------------------
|
34108
|
+
TriggerTest: test_basic_trigger
|
34109
|
+
-------------------------------
|
34110
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
34111
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "people" ("age", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["age", 100], ["created_at", "2017-08-24 21:55:47.227388"], ["updated_at", "2017-08-24 21:55:47.227388"]]
|
34112
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
34113
|
+
[1m[36m (2.3ms)[0m [1mrollback transaction[0m
|
34114
|
+
[1m[35m (0.1ms)[0m begin transaction
|
34115
|
+
----------------------------------------------
|
34116
|
+
SmarterAddTest: test_allows_adding_id_triggers
|
34117
|
+
----------------------------------------------
|
34118
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
34119
|
+
[1m[35m (0.1ms)[0m begin transaction
|
34120
|
+
----------------------------------------------------------------------------------------
|
34121
|
+
SmarterAddTest: test_the_id_triggers_with_infered_response_type_and_infered_trigger_type
|
34122
|
+
----------------------------------------------------------------------------------------
|
34123
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
34124
|
+
[1m[35mSQL (2.3ms)[0m INSERT INTO "clubs" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2017-08-24 21:55:49.252843"], ["updated_at", "2017-08-24 21:55:49.252843"]]
|
34125
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
34126
|
+
[1m[35m (2.3ms)[0m rollback transaction
|
34127
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
34128
|
+
----------------------------------------------
|
34129
|
+
SmarterAddTest: test_id_triggers_actually_fire
|
34130
|
+
----------------------------------------------
|
34131
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
34132
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "people" ("club_id", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["club_id", 20], ["created_at", "2017-08-24 21:55:50.769573"], ["updated_at", "2017-08-24 21:55:50.769573"]]
|
34133
|
+
[1m[35mClub Load (0.1ms)[0m SELECT "clubs".* FROM "clubs" WHERE "clubs"."id" = ? LIMIT 1 [["id", 20]]
|
34134
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
34135
|
+
[1m[35m (2.3ms)[0m rollback transaction
|
34136
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
34137
|
+
---------------------------------------------------------------
|
34138
|
+
SmarterAddTest: test_the_id_triggers_with_infered_response_type
|
34139
|
+
---------------------------------------------------------------
|
34140
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
34141
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "clubs" ("created_at", "updated_at") VALUES (?, ?)[0m [["created_at", "2017-08-24 21:55:52.292327"], ["updated_at", "2017-08-24 21:55:52.292327"]]
|
34142
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
34143
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
34144
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "people" ("club_id", "created_at", "updated_at") VALUES (?, ?, ?) [["club_id", 1], ["created_at", "2017-08-24 21:55:52.295691"], ["updated_at", "2017-08-24 21:55:52.295691"]]
|
34145
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
34146
|
+
[1m[35m (2.6ms)[0m rollback transaction
|
34147
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
34148
|
+
--------------------------------------------------------------
|
34149
|
+
PushRoutesUrlParamsAssociationsTest: test_works_not_at_the_end
|
34150
|
+
--------------------------------------------------------------
|
34151
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
34152
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
34153
|
+
----------------------------------------------------------------------------------
|
34154
|
+
PushRoutesUrlParamsAssociationsTest: test_works_not_at_the_end_with_trailing_slash
|
34155
|
+
----------------------------------------------------------------------------------
|
34156
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
34157
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
34158
|
+
---------------------------------------------------------------
|
34159
|
+
PushRoutesUrlParamsAssociationsTest: test_finds_multiple_params
|
34160
|
+
---------------------------------------------------------------
|
34161
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
34162
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
34163
|
+
-------------------------------------------------------
|
34164
|
+
PushRoutesUrlParamsAssociationsTest: test_empty_if_none
|
34165
|
+
-------------------------------------------------------
|
34166
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
34167
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
34168
|
+
-----------------------------------------
|
34169
|
+
ReloadTest: test_reloading_keeps_triggers
|
34170
|
+
-----------------------------------------
|
34171
|
+
[1m[35m (0.2ms)[0m begin transaction
|
34172
|
+
-----------------------------------------------
|
34173
|
+
PushRoutesUrlMatcherTest: test_url_matcher_okay
|
34174
|
+
-----------------------------------------------
|
34175
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
34176
|
+
[1m[35m (0.0ms)[0m begin transaction
|
34177
|
+
--------------------------------------------------------------
|
34178
|
+
PushRoutesUrlMatcherTest: test_url_matcher_reject_ending_slash
|
34179
|
+
--------------------------------------------------------------
|
34180
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
34181
|
+
[1m[35m (0.0ms)[0m begin transaction
|
34182
|
+
------------------------------------
|
34183
|
+
PushRoutesUrlMatcherTest: test_truth
|
34184
|
+
------------------------------------
|
34185
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
34186
|
+
[1m[35m (0.0ms)[0m begin transaction
|
34187
|
+
---------------------------------------------------------------
|
34188
|
+
PushRoutesUrlMatcherTest: test_url_matcher_reject_missing_param
|
34189
|
+
---------------------------------------------------------------
|
34190
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
34191
|
+
[1m[35m (0.0ms)[0m begin transaction
|
34192
|
+
-------------------------------
|
34193
|
+
EngineTest: test_class_prefixes
|
34194
|
+
-------------------------------
|
34195
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
metadata
CHANGED
@@ -1,27 +1,27 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: push_routes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matthew Chang
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-08-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '4'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '4'
|
27
27
|
- !ruby/object:Gem::Dependency
|
@@ -42,16 +42,16 @@ dependencies:
|
|
42
42
|
name: sqlite3
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - "
|
45
|
+
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
47
|
+
version: '0'
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - "
|
52
|
+
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
54
|
+
version: '0'
|
55
55
|
description: See summary
|
56
56
|
email:
|
57
57
|
- matthew@callnine.com
|