rpush_extended 3.2.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (248) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +365 -0
  3. data/LICENSE +7 -0
  4. data/README.md +393 -0
  5. data/bin/rpush +4 -0
  6. data/lib/generators/rpush_config_generator.rb +7 -0
  7. data/lib/generators/rpush_migration_generator.rb +66 -0
  8. data/lib/generators/templates/add_adm.rb +23 -0
  9. data/lib/generators/templates/add_alert_is_json_to_rapns_notifications.rb +9 -0
  10. data/lib/generators/templates/add_app_to_rapns.rb +11 -0
  11. data/lib/generators/templates/add_fail_after_to_rpush_notifications.rb +9 -0
  12. data/lib/generators/templates/add_gcm.rb +117 -0
  13. data/lib/generators/templates/add_rpush.rb +402 -0
  14. data/lib/generators/templates/add_wpns.rb +16 -0
  15. data/lib/generators/templates/create_rapns_apps.rb +16 -0
  16. data/lib/generators/templates/create_rapns_feedback.rb +25 -0
  17. data/lib/generators/templates/create_rapns_notifications.rb +36 -0
  18. data/lib/generators/templates/rename_rapns_to_rpush.rb +87 -0
  19. data/lib/generators/templates/rpush.rb +135 -0
  20. data/lib/generators/templates/rpush_2_0_0_updates.rb +79 -0
  21. data/lib/generators/templates/rpush_2_1_0_updates.rb +11 -0
  22. data/lib/generators/templates/rpush_2_6_0_updates.rb +10 -0
  23. data/lib/generators/templates/rpush_2_7_0_updates.rb +12 -0
  24. data/lib/generators/templates/rpush_3_0_0_updates.rb +11 -0
  25. data/lib/generators/templates/rpush_3_0_1_updates.rb +13 -0
  26. data/lib/generators/templates/rpush_3_1_0_add_pushy.rb +9 -0
  27. data/lib/generators/templates/rpush_3_1_1_updates.rb +15 -0
  28. data/lib/generators/templates/rpush_3_2_0_add_apns_p8.rb +15 -0
  29. data/lib/generators/templates/rpush_3_2_4_updates.rb +9 -0
  30. data/lib/generators/templates/rpush_3_3_0_updates.rb +9 -0
  31. data/lib/generators/templates/rpush_3_3_1_updates.rb +11 -0
  32. data/lib/rpush/apns_feedback.rb +17 -0
  33. data/lib/rpush/cli.rb +213 -0
  34. data/lib/rpush/client/active_model/adm/app.rb +23 -0
  35. data/lib/rpush/client/active_model/adm/data_validator.rb +14 -0
  36. data/lib/rpush/client/active_model/adm/notification.rb +28 -0
  37. data/lib/rpush/client/active_model/apns/app.rb +37 -0
  38. data/lib/rpush/client/active_model/apns/binary_notification_validator.rb +16 -0
  39. data/lib/rpush/client/active_model/apns/device_token_format_validator.rb +14 -0
  40. data/lib/rpush/client/active_model/apns/notification.rb +104 -0
  41. data/lib/rpush/client/active_model/apns2/app.rb +15 -0
  42. data/lib/rpush/client/active_model/apns2/notification.rb +9 -0
  43. data/lib/rpush/client/active_model/apnsp8/app.rb +23 -0
  44. data/lib/rpush/client/active_model/apnsp8/notification.rb +9 -0
  45. data/lib/rpush/client/active_model/gcm/app.rb +19 -0
  46. data/lib/rpush/client/active_model/gcm/expiry_collapse_key_mutual_inclusion_validator.rb +14 -0
  47. data/lib/rpush/client/active_model/gcm/notification.rb +59 -0
  48. data/lib/rpush/client/active_model/notification.rb +22 -0
  49. data/lib/rpush/client/active_model/payload_data_size_validator.rb +13 -0
  50. data/lib/rpush/client/active_model/pushy/app.rb +20 -0
  51. data/lib/rpush/client/active_model/pushy/notification.rb +31 -0
  52. data/lib/rpush/client/active_model/pushy/time_to_live_validator.rb +14 -0
  53. data/lib/rpush/client/active_model/registration_ids_count_validator.rb +13 -0
  54. data/lib/rpush/client/active_model/wns/app.rb +23 -0
  55. data/lib/rpush/client/active_model/wns/notification.rb +32 -0
  56. data/lib/rpush/client/active_model/wpns/app.rb +13 -0
  57. data/lib/rpush/client/active_model/wpns/notification.rb +28 -0
  58. data/lib/rpush/client/active_model.rb +34 -0
  59. data/lib/rpush/client/active_record/adm/app.rb +11 -0
  60. data/lib/rpush/client/active_record/adm/notification.rb +11 -0
  61. data/lib/rpush/client/active_record/apns/app.rb +11 -0
  62. data/lib/rpush/client/active_record/apns/feedback.rb +18 -0
  63. data/lib/rpush/client/active_record/apns/notification.rb +40 -0
  64. data/lib/rpush/client/active_record/apns2/app.rb +11 -0
  65. data/lib/rpush/client/active_record/apns2/notification.rb +10 -0
  66. data/lib/rpush/client/active_record/apnsp8/app.rb +11 -0
  67. data/lib/rpush/client/active_record/apnsp8/notification.rb +10 -0
  68. data/lib/rpush/client/active_record/app.rb +13 -0
  69. data/lib/rpush/client/active_record/gcm/app.rb +11 -0
  70. data/lib/rpush/client/active_record/gcm/notification.rb +11 -0
  71. data/lib/rpush/client/active_record/notification.rb +42 -0
  72. data/lib/rpush/client/active_record/pushy/app.rb +11 -0
  73. data/lib/rpush/client/active_record/pushy/notification.rb +11 -0
  74. data/lib/rpush/client/active_record/wns/app.rb +11 -0
  75. data/lib/rpush/client/active_record/wns/badge_notification.rb +15 -0
  76. data/lib/rpush/client/active_record/wns/notification.rb +11 -0
  77. data/lib/rpush/client/active_record/wns/raw_notification.rb +13 -0
  78. data/lib/rpush/client/active_record/wpns/app.rb +11 -0
  79. data/lib/rpush/client/active_record/wpns/notification.rb +11 -0
  80. data/lib/rpush/client/active_record.rb +33 -0
  81. data/lib/rpush/client/redis/adm/app.rb +14 -0
  82. data/lib/rpush/client/redis/adm/notification.rb +11 -0
  83. data/lib/rpush/client/redis/apns/app.rb +11 -0
  84. data/lib/rpush/client/redis/apns/feedback.rb +20 -0
  85. data/lib/rpush/client/redis/apns/notification.rb +11 -0
  86. data/lib/rpush/client/redis/apns2/app.rb +11 -0
  87. data/lib/rpush/client/redis/apns2/notification.rb +11 -0
  88. data/lib/rpush/client/redis/apnsp8/app.rb +11 -0
  89. data/lib/rpush/client/redis/apnsp8/notification.rb +11 -0
  90. data/lib/rpush/client/redis/app.rb +29 -0
  91. data/lib/rpush/client/redis/gcm/app.rb +11 -0
  92. data/lib/rpush/client/redis/gcm/notification.rb +11 -0
  93. data/lib/rpush/client/redis/notification.rb +74 -0
  94. data/lib/rpush/client/redis/pushy/app.rb +16 -0
  95. data/lib/rpush/client/redis/pushy/notification.rb +18 -0
  96. data/lib/rpush/client/redis/wns/app.rb +14 -0
  97. data/lib/rpush/client/redis/wns/badge_notification.rb +15 -0
  98. data/lib/rpush/client/redis/wns/notification.rb +11 -0
  99. data/lib/rpush/client/redis/wns/raw_notification.rb +11 -0
  100. data/lib/rpush/client/redis/wpns/app.rb +11 -0
  101. data/lib/rpush/client/redis/wpns/notification.rb +11 -0
  102. data/lib/rpush/client/redis.rb +56 -0
  103. data/lib/rpush/configuration.rb +115 -0
  104. data/lib/rpush/daemon/adm/delivery.rb +226 -0
  105. data/lib/rpush/daemon/adm.rb +9 -0
  106. data/lib/rpush/daemon/apns/delivery.rb +43 -0
  107. data/lib/rpush/daemon/apns/feedback_receiver.rb +90 -0
  108. data/lib/rpush/daemon/apns.rb +17 -0
  109. data/lib/rpush/daemon/apns2/delivery.rb +127 -0
  110. data/lib/rpush/daemon/apns2.rb +10 -0
  111. data/lib/rpush/daemon/apnsp8/delivery.rb +166 -0
  112. data/lib/rpush/daemon/apnsp8/token.rb +43 -0
  113. data/lib/rpush/daemon/apnsp8.rb +10 -0
  114. data/lib/rpush/daemon/app_runner.rb +190 -0
  115. data/lib/rpush/daemon/batch.rb +138 -0
  116. data/lib/rpush/daemon/constants.rb +59 -0
  117. data/lib/rpush/daemon/delivery.rb +46 -0
  118. data/lib/rpush/daemon/delivery_error.rb +27 -0
  119. data/lib/rpush/daemon/dispatcher/apns_http2.rb +51 -0
  120. data/lib/rpush/daemon/dispatcher/apns_tcp.rb +152 -0
  121. data/lib/rpush/daemon/dispatcher/apnsp8_http2.rb +33 -0
  122. data/lib/rpush/daemon/dispatcher/http.rb +21 -0
  123. data/lib/rpush/daemon/dispatcher/tcp.rb +22 -0
  124. data/lib/rpush/daemon/dispatcher_loop.rb +73 -0
  125. data/lib/rpush/daemon/errors.rb +18 -0
  126. data/lib/rpush/daemon/feeder.rb +69 -0
  127. data/lib/rpush/daemon/gcm/delivery.rb +241 -0
  128. data/lib/rpush/daemon/gcm.rb +9 -0
  129. data/lib/rpush/daemon/interruptible_sleep.rb +24 -0
  130. data/lib/rpush/daemon/loggable.rb +33 -0
  131. data/lib/rpush/daemon/proc_title.rb +17 -0
  132. data/lib/rpush/daemon/pushy/delivery.rb +90 -0
  133. data/lib/rpush/daemon/pushy.rb +9 -0
  134. data/lib/rpush/daemon/queue_payload.rb +12 -0
  135. data/lib/rpush/daemon/retry_header_parser.rb +23 -0
  136. data/lib/rpush/daemon/retryable_error.rb +22 -0
  137. data/lib/rpush/daemon/ring_buffer.rb +16 -0
  138. data/lib/rpush/daemon/rpc/client.rb +27 -0
  139. data/lib/rpush/daemon/rpc/server.rb +82 -0
  140. data/lib/rpush/daemon/rpc.rb +9 -0
  141. data/lib/rpush/daemon/service_config_methods.rb +51 -0
  142. data/lib/rpush/daemon/signal_handler.rb +75 -0
  143. data/lib/rpush/daemon/store/active_record/reconnectable.rb +80 -0
  144. data/lib/rpush/daemon/store/active_record.rb +214 -0
  145. data/lib/rpush/daemon/store/interface.rb +20 -0
  146. data/lib/rpush/daemon/store/redis.rb +166 -0
  147. data/lib/rpush/daemon/string_helpers.rb +15 -0
  148. data/lib/rpush/daemon/synchronizer.rb +62 -0
  149. data/lib/rpush/daemon/tcp_connection.rb +190 -0
  150. data/lib/rpush/daemon/wns/badge_request.rb +32 -0
  151. data/lib/rpush/daemon/wns/delivery.rb +178 -0
  152. data/lib/rpush/daemon/wns/post_request.rb +33 -0
  153. data/lib/rpush/daemon/wns/raw_request.rb +22 -0
  154. data/lib/rpush/daemon/wns/toast_request.rb +54 -0
  155. data/lib/rpush/daemon/wns.rb +9 -0
  156. data/lib/rpush/daemon/wpns/delivery.rb +132 -0
  157. data/lib/rpush/daemon/wpns.rb +9 -0
  158. data/lib/rpush/daemon.rb +179 -0
  159. data/lib/rpush/deprecatable.rb +24 -0
  160. data/lib/rpush/deprecation.rb +26 -0
  161. data/lib/rpush/embed.rb +41 -0
  162. data/lib/rpush/logger.rb +92 -0
  163. data/lib/rpush/multi_json_helper.rb +16 -0
  164. data/lib/rpush/plugin.rb +44 -0
  165. data/lib/rpush/push.rb +11 -0
  166. data/lib/rpush/reflectable.rb +13 -0
  167. data/lib/rpush/reflection_collection.rb +44 -0
  168. data/lib/rpush/reflection_public_methods.rb +11 -0
  169. data/lib/rpush/version.rb +14 -0
  170. data/lib/rpush.rb +43 -0
  171. data/lib/tasks/quality.rake +35 -0
  172. data/lib/tasks/test.rake +69 -0
  173. data/spec/.rubocop.yml +4 -0
  174. data/spec/functional/adm_spec.rb +50 -0
  175. data/spec/functional/apns2_spec.rb +232 -0
  176. data/spec/functional/apns_spec.rb +162 -0
  177. data/spec/functional/cli_spec.rb +36 -0
  178. data/spec/functional/embed_spec.rb +49 -0
  179. data/spec/functional/gcm_spec.rb +46 -0
  180. data/spec/functional/new_app_spec.rb +44 -0
  181. data/spec/functional/pushy_spec.rb +22 -0
  182. data/spec/functional/retry_spec.rb +42 -0
  183. data/spec/functional/synchronization_spec.rb +97 -0
  184. data/spec/functional/wpns_spec.rb +71 -0
  185. data/spec/functional_spec_helper.rb +32 -0
  186. data/spec/spec_helper.rb +69 -0
  187. data/spec/support/active_record_setup.rb +73 -0
  188. data/spec/support/cert_with_password.pem +90 -0
  189. data/spec/support/cert_without_password.pem +59 -0
  190. data/spec/support/config/database.yml +44 -0
  191. data/spec/support/simplecov_helper.rb +24 -0
  192. data/spec/support/simplecov_quality_formatter.rb +12 -0
  193. data/spec/tmp/.gitkeep +0 -0
  194. data/spec/unit/apns_feedback_spec.rb +28 -0
  195. data/spec/unit/client/active_record/adm/app_spec.rb +58 -0
  196. data/spec/unit/client/active_record/adm/notification_spec.rb +43 -0
  197. data/spec/unit/client/active_record/apns/app_spec.rb +29 -0
  198. data/spec/unit/client/active_record/apns/feedback_spec.rb +9 -0
  199. data/spec/unit/client/active_record/apns/notification_spec.rb +324 -0
  200. data/spec/unit/client/active_record/app_spec.rb +30 -0
  201. data/spec/unit/client/active_record/gcm/app_spec.rb +4 -0
  202. data/spec/unit/client/active_record/gcm/notification_spec.rb +67 -0
  203. data/spec/unit/client/active_record/notification_spec.rb +21 -0
  204. data/spec/unit/client/active_record/pushy/app_spec.rb +17 -0
  205. data/spec/unit/client/active_record/pushy/notification_spec.rb +65 -0
  206. data/spec/unit/client/active_record/wns/badge_notification_spec.rb +15 -0
  207. data/spec/unit/client/active_record/wns/raw_notification_spec.rb +26 -0
  208. data/spec/unit/client/active_record/wpns/app_spec.rb +4 -0
  209. data/spec/unit/client/active_record/wpns/notification_spec.rb +21 -0
  210. data/spec/unit/configuration_spec.rb +46 -0
  211. data/spec/unit/daemon/adm/delivery_spec.rb +253 -0
  212. data/spec/unit/daemon/apns/certificate_expired_error_spec.rb +11 -0
  213. data/spec/unit/daemon/apns/delivery_spec.rb +108 -0
  214. data/spec/unit/daemon/apns/feedback_receiver_spec.rb +119 -0
  215. data/spec/unit/daemon/app_runner_spec.rb +188 -0
  216. data/spec/unit/daemon/batch_spec.rb +169 -0
  217. data/spec/unit/daemon/delivery_error_spec.rb +13 -0
  218. data/spec/unit/daemon/delivery_spec.rb +51 -0
  219. data/spec/unit/daemon/dispatcher/http_spec.rb +34 -0
  220. data/spec/unit/daemon/dispatcher/tcp_spec.rb +32 -0
  221. data/spec/unit/daemon/dispatcher_loop_spec.rb +53 -0
  222. data/spec/unit/daemon/feeder_spec.rb +96 -0
  223. data/spec/unit/daemon/gcm/delivery_spec.rb +387 -0
  224. data/spec/unit/daemon/proc_title_spec.rb +11 -0
  225. data/spec/unit/daemon/pushy/delivery_spec.rb +159 -0
  226. data/spec/unit/daemon/retryable_error_spec.rb +14 -0
  227. data/spec/unit/daemon/service_config_methods_spec.rb +36 -0
  228. data/spec/unit/daemon/signal_handler_spec.rb +99 -0
  229. data/spec/unit/daemon/store/active_record/reconnectable_spec.rb +165 -0
  230. data/spec/unit/daemon/store/active_record_spec.rb +357 -0
  231. data/spec/unit/daemon/store/redis_spec.rb +365 -0
  232. data/spec/unit/daemon/tcp_connection_spec.rb +292 -0
  233. data/spec/unit/daemon/wns/delivery_spec.rb +176 -0
  234. data/spec/unit/daemon/wns/post_request_spec.rb +117 -0
  235. data/spec/unit/daemon/wpns/delivery_spec.rb +167 -0
  236. data/spec/unit/daemon_spec.rb +138 -0
  237. data/spec/unit/deprecatable_spec.rb +32 -0
  238. data/spec/unit/deprecation_spec.rb +15 -0
  239. data/spec/unit/embed_spec.rb +47 -0
  240. data/spec/unit/logger_spec.rb +127 -0
  241. data/spec/unit/notification_shared.rb +53 -0
  242. data/spec/unit/plugin_spec.rb +36 -0
  243. data/spec/unit/push_spec.rb +34 -0
  244. data/spec/unit/reflectable_spec.rb +27 -0
  245. data/spec/unit/reflection_collection_spec.rb +26 -0
  246. data/spec/unit/rpush_spec.rb +8 -0
  247. data/spec/unit_spec_helper.rb +26 -0
  248. metadata +709 -0
metadata ADDED
@@ -0,0 +1,709 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rpush_extended
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.2.5
5
+ platform: ruby
6
+ authors:
7
+ - Ian Leitch
8
+ - Chris Okamoto
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2018-11-08 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: multi_json
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: '1.0'
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - "~>"
26
+ - !ruby/object:Gem::Version
27
+ version: '1.0'
28
+ - !ruby/object:Gem::Dependency
29
+ name: net-http-persistent
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ type: :runtime
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ - !ruby/object:Gem::Dependency
43
+ name: net-http2
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - "~>"
47
+ - !ruby/object:Gem::Version
48
+ version: '0.14'
49
+ type: :runtime
50
+ prerelease: false
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - "~>"
54
+ - !ruby/object:Gem::Version
55
+ version: '0.14'
56
+ - !ruby/object:Gem::Dependency
57
+ name: jwt
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: 1.5.6
63
+ type: :runtime
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: 1.5.6
70
+ - !ruby/object:Gem::Dependency
71
+ name: activesupport
72
+ requirement: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ type: :runtime
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: '0'
84
+ - !ruby/object:Gem::Dependency
85
+ name: thor
86
+ requirement: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: 0.18.1
91
+ - - "<"
92
+ - !ruby/object:Gem::Version
93
+ version: '2.0'
94
+ type: :runtime
95
+ prerelease: false
96
+ version_requirements: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ version: 0.18.1
101
+ - - "<"
102
+ - !ruby/object:Gem::Version
103
+ version: '2.0'
104
+ - !ruby/object:Gem::Dependency
105
+ name: railties
106
+ requirement: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ type: :runtime
112
+ prerelease: false
113
+ version_requirements: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ - !ruby/object:Gem::Dependency
119
+ name: ansi
120
+ requirement: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ type: :runtime
126
+ prerelease: false
127
+ version_requirements: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ - !ruby/object:Gem::Dependency
133
+ name: rake
134
+ requirement: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ type: :development
140
+ prerelease: false
141
+ version_requirements: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ - !ruby/object:Gem::Dependency
147
+ name: rspec
148
+ requirement: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: 3.4.0
153
+ type: :development
154
+ prerelease: false
155
+ version_requirements: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - "~>"
158
+ - !ruby/object:Gem::Version
159
+ version: 3.4.0
160
+ - !ruby/object:Gem::Dependency
161
+ name: database_cleaner
162
+ requirement: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ type: :development
168
+ prerelease: false
169
+ version_requirements: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - ">="
172
+ - !ruby/object:Gem::Version
173
+ version: '0'
174
+ - !ruby/object:Gem::Dependency
175
+ name: timecop
176
+ requirement: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - ">="
179
+ - !ruby/object:Gem::Version
180
+ version: '0'
181
+ type: :development
182
+ prerelease: false
183
+ version_requirements: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - ">="
186
+ - !ruby/object:Gem::Version
187
+ version: '0'
188
+ - !ruby/object:Gem::Dependency
189
+ name: stackprof
190
+ requirement: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - ">="
193
+ - !ruby/object:Gem::Version
194
+ version: '0'
195
+ type: :development
196
+ prerelease: false
197
+ version_requirements: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - ">="
200
+ - !ruby/object:Gem::Version
201
+ version: '0'
202
+ - !ruby/object:Gem::Dependency
203
+ name: modis
204
+ requirement: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - "~>"
207
+ - !ruby/object:Gem::Version
208
+ version: '2.0'
209
+ type: :development
210
+ prerelease: false
211
+ version_requirements: !ruby/object:Gem::Requirement
212
+ requirements:
213
+ - - "~>"
214
+ - !ruby/object:Gem::Version
215
+ version: '2.0'
216
+ - !ruby/object:Gem::Dependency
217
+ name: rpush-redis
218
+ requirement: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - "~>"
221
+ - !ruby/object:Gem::Version
222
+ version: '1.0'
223
+ type: :development
224
+ prerelease: false
225
+ version_requirements: !ruby/object:Gem::Requirement
226
+ requirements:
227
+ - - "~>"
228
+ - !ruby/object:Gem::Version
229
+ version: '1.0'
230
+ - !ruby/object:Gem::Dependency
231
+ name: appraisal
232
+ requirement: !ruby/object:Gem::Requirement
233
+ requirements:
234
+ - - ">="
235
+ - !ruby/object:Gem::Version
236
+ version: '0'
237
+ type: :development
238
+ prerelease: false
239
+ version_requirements: !ruby/object:Gem::Requirement
240
+ requirements:
241
+ - - ">="
242
+ - !ruby/object:Gem::Version
243
+ version: '0'
244
+ - !ruby/object:Gem::Dependency
245
+ name: cane
246
+ requirement: !ruby/object:Gem::Requirement
247
+ requirements:
248
+ - - ">="
249
+ - !ruby/object:Gem::Version
250
+ version: '0'
251
+ type: :development
252
+ prerelease: false
253
+ version_requirements: !ruby/object:Gem::Requirement
254
+ requirements:
255
+ - - ">="
256
+ - !ruby/object:Gem::Version
257
+ version: '0'
258
+ - !ruby/object:Gem::Dependency
259
+ name: codeclimate-test-reporter
260
+ requirement: !ruby/object:Gem::Requirement
261
+ requirements:
262
+ - - ">="
263
+ - !ruby/object:Gem::Version
264
+ version: '0'
265
+ type: :development
266
+ prerelease: false
267
+ version_requirements: !ruby/object:Gem::Requirement
268
+ requirements:
269
+ - - ">="
270
+ - !ruby/object:Gem::Version
271
+ version: '0'
272
+ - !ruby/object:Gem::Dependency
273
+ name: simplecov
274
+ requirement: !ruby/object:Gem::Requirement
275
+ requirements:
276
+ - - ">="
277
+ - !ruby/object:Gem::Version
278
+ version: '0'
279
+ type: :development
280
+ prerelease: false
281
+ version_requirements: !ruby/object:Gem::Requirement
282
+ requirements:
283
+ - - ">="
284
+ - !ruby/object:Gem::Version
285
+ version: '0'
286
+ - !ruby/object:Gem::Dependency
287
+ name: rubocop
288
+ requirement: !ruby/object:Gem::Requirement
289
+ requirements:
290
+ - - ">="
291
+ - !ruby/object:Gem::Version
292
+ version: '0'
293
+ type: :development
294
+ prerelease: false
295
+ version_requirements: !ruby/object:Gem::Requirement
296
+ requirements:
297
+ - - ">="
298
+ - !ruby/object:Gem::Version
299
+ version: '0'
300
+ - !ruby/object:Gem::Dependency
301
+ name: byebug
302
+ requirement: !ruby/object:Gem::Requirement
303
+ requirements:
304
+ - - ">="
305
+ - !ruby/object:Gem::Version
306
+ version: '0'
307
+ type: :development
308
+ prerelease: false
309
+ version_requirements: !ruby/object:Gem::Requirement
310
+ requirements:
311
+ - - ">="
312
+ - !ruby/object:Gem::Version
313
+ version: '0'
314
+ - !ruby/object:Gem::Dependency
315
+ name: pg
316
+ requirement: !ruby/object:Gem::Requirement
317
+ requirements:
318
+ - - ">="
319
+ - !ruby/object:Gem::Version
320
+ version: '0'
321
+ type: :development
322
+ prerelease: false
323
+ version_requirements: !ruby/object:Gem::Requirement
324
+ requirements:
325
+ - - ">="
326
+ - !ruby/object:Gem::Version
327
+ version: '0'
328
+ - !ruby/object:Gem::Dependency
329
+ name: mysql2
330
+ requirement: !ruby/object:Gem::Requirement
331
+ requirements:
332
+ - - ">="
333
+ - !ruby/object:Gem::Version
334
+ version: '0'
335
+ type: :development
336
+ prerelease: false
337
+ version_requirements: !ruby/object:Gem::Requirement
338
+ requirements:
339
+ - - ">="
340
+ - !ruby/object:Gem::Version
341
+ version: '0'
342
+ - !ruby/object:Gem::Dependency
343
+ name: sqlite3
344
+ requirement: !ruby/object:Gem::Requirement
345
+ requirements:
346
+ - - ">="
347
+ - !ruby/object:Gem::Version
348
+ version: '0'
349
+ type: :development
350
+ prerelease: false
351
+ version_requirements: !ruby/object:Gem::Requirement
352
+ requirements:
353
+ - - ">="
354
+ - !ruby/object:Gem::Version
355
+ version: '0'
356
+ description: The push notification service for Ruby.
357
+ email:
358
+ - christiane.okamoto@gmail.com
359
+ executables:
360
+ - rpush
361
+ extensions: []
362
+ extra_rdoc_files: []
363
+ files:
364
+ - CHANGELOG.md
365
+ - LICENSE
366
+ - README.md
367
+ - bin/rpush
368
+ - lib/generators/rpush_config_generator.rb
369
+ - lib/generators/rpush_migration_generator.rb
370
+ - lib/generators/templates/add_adm.rb
371
+ - lib/generators/templates/add_alert_is_json_to_rapns_notifications.rb
372
+ - lib/generators/templates/add_app_to_rapns.rb
373
+ - lib/generators/templates/add_fail_after_to_rpush_notifications.rb
374
+ - lib/generators/templates/add_gcm.rb
375
+ - lib/generators/templates/add_rpush.rb
376
+ - lib/generators/templates/add_wpns.rb
377
+ - lib/generators/templates/create_rapns_apps.rb
378
+ - lib/generators/templates/create_rapns_feedback.rb
379
+ - lib/generators/templates/create_rapns_notifications.rb
380
+ - lib/generators/templates/rename_rapns_to_rpush.rb
381
+ - lib/generators/templates/rpush.rb
382
+ - lib/generators/templates/rpush_2_0_0_updates.rb
383
+ - lib/generators/templates/rpush_2_1_0_updates.rb
384
+ - lib/generators/templates/rpush_2_6_0_updates.rb
385
+ - lib/generators/templates/rpush_2_7_0_updates.rb
386
+ - lib/generators/templates/rpush_3_0_0_updates.rb
387
+ - lib/generators/templates/rpush_3_0_1_updates.rb
388
+ - lib/generators/templates/rpush_3_1_0_add_pushy.rb
389
+ - lib/generators/templates/rpush_3_1_1_updates.rb
390
+ - lib/generators/templates/rpush_3_2_0_add_apns_p8.rb
391
+ - lib/generators/templates/rpush_3_2_4_updates.rb
392
+ - lib/generators/templates/rpush_3_3_0_updates.rb
393
+ - lib/generators/templates/rpush_3_3_1_updates.rb
394
+ - lib/rpush.rb
395
+ - lib/rpush/apns_feedback.rb
396
+ - lib/rpush/cli.rb
397
+ - lib/rpush/client/active_model.rb
398
+ - lib/rpush/client/active_model/adm/app.rb
399
+ - lib/rpush/client/active_model/adm/data_validator.rb
400
+ - lib/rpush/client/active_model/adm/notification.rb
401
+ - lib/rpush/client/active_model/apns/app.rb
402
+ - lib/rpush/client/active_model/apns/binary_notification_validator.rb
403
+ - lib/rpush/client/active_model/apns/device_token_format_validator.rb
404
+ - lib/rpush/client/active_model/apns/notification.rb
405
+ - lib/rpush/client/active_model/apns2/app.rb
406
+ - lib/rpush/client/active_model/apns2/notification.rb
407
+ - lib/rpush/client/active_model/apnsp8/app.rb
408
+ - lib/rpush/client/active_model/apnsp8/notification.rb
409
+ - lib/rpush/client/active_model/gcm/app.rb
410
+ - lib/rpush/client/active_model/gcm/expiry_collapse_key_mutual_inclusion_validator.rb
411
+ - lib/rpush/client/active_model/gcm/notification.rb
412
+ - lib/rpush/client/active_model/notification.rb
413
+ - lib/rpush/client/active_model/payload_data_size_validator.rb
414
+ - lib/rpush/client/active_model/pushy/app.rb
415
+ - lib/rpush/client/active_model/pushy/notification.rb
416
+ - lib/rpush/client/active_model/pushy/time_to_live_validator.rb
417
+ - lib/rpush/client/active_model/registration_ids_count_validator.rb
418
+ - lib/rpush/client/active_model/wns/app.rb
419
+ - lib/rpush/client/active_model/wns/notification.rb
420
+ - lib/rpush/client/active_model/wpns/app.rb
421
+ - lib/rpush/client/active_model/wpns/notification.rb
422
+ - lib/rpush/client/active_record.rb
423
+ - lib/rpush/client/active_record/adm/app.rb
424
+ - lib/rpush/client/active_record/adm/notification.rb
425
+ - lib/rpush/client/active_record/apns/app.rb
426
+ - lib/rpush/client/active_record/apns/feedback.rb
427
+ - lib/rpush/client/active_record/apns/notification.rb
428
+ - lib/rpush/client/active_record/apns2/app.rb
429
+ - lib/rpush/client/active_record/apns2/notification.rb
430
+ - lib/rpush/client/active_record/apnsp8/app.rb
431
+ - lib/rpush/client/active_record/apnsp8/notification.rb
432
+ - lib/rpush/client/active_record/app.rb
433
+ - lib/rpush/client/active_record/gcm/app.rb
434
+ - lib/rpush/client/active_record/gcm/notification.rb
435
+ - lib/rpush/client/active_record/notification.rb
436
+ - lib/rpush/client/active_record/pushy/app.rb
437
+ - lib/rpush/client/active_record/pushy/notification.rb
438
+ - lib/rpush/client/active_record/wns/app.rb
439
+ - lib/rpush/client/active_record/wns/badge_notification.rb
440
+ - lib/rpush/client/active_record/wns/notification.rb
441
+ - lib/rpush/client/active_record/wns/raw_notification.rb
442
+ - lib/rpush/client/active_record/wpns/app.rb
443
+ - lib/rpush/client/active_record/wpns/notification.rb
444
+ - lib/rpush/client/redis.rb
445
+ - lib/rpush/client/redis/adm/app.rb
446
+ - lib/rpush/client/redis/adm/notification.rb
447
+ - lib/rpush/client/redis/apns/app.rb
448
+ - lib/rpush/client/redis/apns/feedback.rb
449
+ - lib/rpush/client/redis/apns/notification.rb
450
+ - lib/rpush/client/redis/apns2/app.rb
451
+ - lib/rpush/client/redis/apns2/notification.rb
452
+ - lib/rpush/client/redis/apnsp8/app.rb
453
+ - lib/rpush/client/redis/apnsp8/notification.rb
454
+ - lib/rpush/client/redis/app.rb
455
+ - lib/rpush/client/redis/gcm/app.rb
456
+ - lib/rpush/client/redis/gcm/notification.rb
457
+ - lib/rpush/client/redis/notification.rb
458
+ - lib/rpush/client/redis/pushy/app.rb
459
+ - lib/rpush/client/redis/pushy/notification.rb
460
+ - lib/rpush/client/redis/wns/app.rb
461
+ - lib/rpush/client/redis/wns/badge_notification.rb
462
+ - lib/rpush/client/redis/wns/notification.rb
463
+ - lib/rpush/client/redis/wns/raw_notification.rb
464
+ - lib/rpush/client/redis/wpns/app.rb
465
+ - lib/rpush/client/redis/wpns/notification.rb
466
+ - lib/rpush/configuration.rb
467
+ - lib/rpush/daemon.rb
468
+ - lib/rpush/daemon/adm.rb
469
+ - lib/rpush/daemon/adm/delivery.rb
470
+ - lib/rpush/daemon/apns.rb
471
+ - lib/rpush/daemon/apns/delivery.rb
472
+ - lib/rpush/daemon/apns/feedback_receiver.rb
473
+ - lib/rpush/daemon/apns2.rb
474
+ - lib/rpush/daemon/apns2/delivery.rb
475
+ - lib/rpush/daemon/apnsp8.rb
476
+ - lib/rpush/daemon/apnsp8/delivery.rb
477
+ - lib/rpush/daemon/apnsp8/token.rb
478
+ - lib/rpush/daemon/app_runner.rb
479
+ - lib/rpush/daemon/batch.rb
480
+ - lib/rpush/daemon/constants.rb
481
+ - lib/rpush/daemon/delivery.rb
482
+ - lib/rpush/daemon/delivery_error.rb
483
+ - lib/rpush/daemon/dispatcher/apns_http2.rb
484
+ - lib/rpush/daemon/dispatcher/apns_tcp.rb
485
+ - lib/rpush/daemon/dispatcher/apnsp8_http2.rb
486
+ - lib/rpush/daemon/dispatcher/http.rb
487
+ - lib/rpush/daemon/dispatcher/tcp.rb
488
+ - lib/rpush/daemon/dispatcher_loop.rb
489
+ - lib/rpush/daemon/errors.rb
490
+ - lib/rpush/daemon/feeder.rb
491
+ - lib/rpush/daemon/gcm.rb
492
+ - lib/rpush/daemon/gcm/delivery.rb
493
+ - lib/rpush/daemon/interruptible_sleep.rb
494
+ - lib/rpush/daemon/loggable.rb
495
+ - lib/rpush/daemon/proc_title.rb
496
+ - lib/rpush/daemon/pushy.rb
497
+ - lib/rpush/daemon/pushy/delivery.rb
498
+ - lib/rpush/daemon/queue_payload.rb
499
+ - lib/rpush/daemon/retry_header_parser.rb
500
+ - lib/rpush/daemon/retryable_error.rb
501
+ - lib/rpush/daemon/ring_buffer.rb
502
+ - lib/rpush/daemon/rpc.rb
503
+ - lib/rpush/daemon/rpc/client.rb
504
+ - lib/rpush/daemon/rpc/server.rb
505
+ - lib/rpush/daemon/service_config_methods.rb
506
+ - lib/rpush/daemon/signal_handler.rb
507
+ - lib/rpush/daemon/store/active_record.rb
508
+ - lib/rpush/daemon/store/active_record/reconnectable.rb
509
+ - lib/rpush/daemon/store/interface.rb
510
+ - lib/rpush/daemon/store/redis.rb
511
+ - lib/rpush/daemon/string_helpers.rb
512
+ - lib/rpush/daemon/synchronizer.rb
513
+ - lib/rpush/daemon/tcp_connection.rb
514
+ - lib/rpush/daemon/wns.rb
515
+ - lib/rpush/daemon/wns/badge_request.rb
516
+ - lib/rpush/daemon/wns/delivery.rb
517
+ - lib/rpush/daemon/wns/post_request.rb
518
+ - lib/rpush/daemon/wns/raw_request.rb
519
+ - lib/rpush/daemon/wns/toast_request.rb
520
+ - lib/rpush/daemon/wpns.rb
521
+ - lib/rpush/daemon/wpns/delivery.rb
522
+ - lib/rpush/deprecatable.rb
523
+ - lib/rpush/deprecation.rb
524
+ - lib/rpush/embed.rb
525
+ - lib/rpush/logger.rb
526
+ - lib/rpush/multi_json_helper.rb
527
+ - lib/rpush/plugin.rb
528
+ - lib/rpush/push.rb
529
+ - lib/rpush/reflectable.rb
530
+ - lib/rpush/reflection_collection.rb
531
+ - lib/rpush/reflection_public_methods.rb
532
+ - lib/rpush/version.rb
533
+ - lib/tasks/quality.rake
534
+ - lib/tasks/test.rake
535
+ - spec/.rubocop.yml
536
+ - spec/functional/adm_spec.rb
537
+ - spec/functional/apns2_spec.rb
538
+ - spec/functional/apns_spec.rb
539
+ - spec/functional/cli_spec.rb
540
+ - spec/functional/embed_spec.rb
541
+ - spec/functional/gcm_spec.rb
542
+ - spec/functional/new_app_spec.rb
543
+ - spec/functional/pushy_spec.rb
544
+ - spec/functional/retry_spec.rb
545
+ - spec/functional/synchronization_spec.rb
546
+ - spec/functional/wpns_spec.rb
547
+ - spec/functional_spec_helper.rb
548
+ - spec/spec_helper.rb
549
+ - spec/support/active_record_setup.rb
550
+ - spec/support/cert_with_password.pem
551
+ - spec/support/cert_without_password.pem
552
+ - spec/support/config/database.yml
553
+ - spec/support/simplecov_helper.rb
554
+ - spec/support/simplecov_quality_formatter.rb
555
+ - spec/tmp/.gitkeep
556
+ - spec/unit/apns_feedback_spec.rb
557
+ - spec/unit/client/active_record/adm/app_spec.rb
558
+ - spec/unit/client/active_record/adm/notification_spec.rb
559
+ - spec/unit/client/active_record/apns/app_spec.rb
560
+ - spec/unit/client/active_record/apns/feedback_spec.rb
561
+ - spec/unit/client/active_record/apns/notification_spec.rb
562
+ - spec/unit/client/active_record/app_spec.rb
563
+ - spec/unit/client/active_record/gcm/app_spec.rb
564
+ - spec/unit/client/active_record/gcm/notification_spec.rb
565
+ - spec/unit/client/active_record/notification_spec.rb
566
+ - spec/unit/client/active_record/pushy/app_spec.rb
567
+ - spec/unit/client/active_record/pushy/notification_spec.rb
568
+ - spec/unit/client/active_record/wns/badge_notification_spec.rb
569
+ - spec/unit/client/active_record/wns/raw_notification_spec.rb
570
+ - spec/unit/client/active_record/wpns/app_spec.rb
571
+ - spec/unit/client/active_record/wpns/notification_spec.rb
572
+ - spec/unit/configuration_spec.rb
573
+ - spec/unit/daemon/adm/delivery_spec.rb
574
+ - spec/unit/daemon/apns/certificate_expired_error_spec.rb
575
+ - spec/unit/daemon/apns/delivery_spec.rb
576
+ - spec/unit/daemon/apns/feedback_receiver_spec.rb
577
+ - spec/unit/daemon/app_runner_spec.rb
578
+ - spec/unit/daemon/batch_spec.rb
579
+ - spec/unit/daemon/delivery_error_spec.rb
580
+ - spec/unit/daemon/delivery_spec.rb
581
+ - spec/unit/daemon/dispatcher/http_spec.rb
582
+ - spec/unit/daemon/dispatcher/tcp_spec.rb
583
+ - spec/unit/daemon/dispatcher_loop_spec.rb
584
+ - spec/unit/daemon/feeder_spec.rb
585
+ - spec/unit/daemon/gcm/delivery_spec.rb
586
+ - spec/unit/daemon/proc_title_spec.rb
587
+ - spec/unit/daemon/pushy/delivery_spec.rb
588
+ - spec/unit/daemon/retryable_error_spec.rb
589
+ - spec/unit/daemon/service_config_methods_spec.rb
590
+ - spec/unit/daemon/signal_handler_spec.rb
591
+ - spec/unit/daemon/store/active_record/reconnectable_spec.rb
592
+ - spec/unit/daemon/store/active_record_spec.rb
593
+ - spec/unit/daemon/store/redis_spec.rb
594
+ - spec/unit/daemon/tcp_connection_spec.rb
595
+ - spec/unit/daemon/wns/delivery_spec.rb
596
+ - spec/unit/daemon/wns/post_request_spec.rb
597
+ - spec/unit/daemon/wpns/delivery_spec.rb
598
+ - spec/unit/daemon_spec.rb
599
+ - spec/unit/deprecatable_spec.rb
600
+ - spec/unit/deprecation_spec.rb
601
+ - spec/unit/embed_spec.rb
602
+ - spec/unit/logger_spec.rb
603
+ - spec/unit/notification_shared.rb
604
+ - spec/unit/plugin_spec.rb
605
+ - spec/unit/push_spec.rb
606
+ - spec/unit/reflectable_spec.rb
607
+ - spec/unit/reflection_collection_spec.rb
608
+ - spec/unit/rpush_spec.rb
609
+ - spec/unit_spec_helper.rb
610
+ homepage: https://github.com/chrisokamoto/rpush_extended
611
+ licenses:
612
+ - MIT
613
+ metadata: {}
614
+ post_install_message:
615
+ rdoc_options: []
616
+ require_paths:
617
+ - lib
618
+ required_ruby_version: !ruby/object:Gem::Requirement
619
+ requirements:
620
+ - - ">="
621
+ - !ruby/object:Gem::Version
622
+ version: 2.2.2
623
+ required_rubygems_version: !ruby/object:Gem::Requirement
624
+ requirements:
625
+ - - ">="
626
+ - !ruby/object:Gem::Version
627
+ version: '0'
628
+ requirements: []
629
+ rubyforge_project:
630
+ rubygems_version: 2.6.12
631
+ signing_key:
632
+ specification_version: 4
633
+ summary: The push notification service for Ruby.
634
+ test_files:
635
+ - spec/.rubocop.yml
636
+ - spec/functional/adm_spec.rb
637
+ - spec/functional/apns2_spec.rb
638
+ - spec/functional/apns_spec.rb
639
+ - spec/functional/cli_spec.rb
640
+ - spec/functional/embed_spec.rb
641
+ - spec/functional/gcm_spec.rb
642
+ - spec/functional/new_app_spec.rb
643
+ - spec/functional/pushy_spec.rb
644
+ - spec/functional/retry_spec.rb
645
+ - spec/functional/synchronization_spec.rb
646
+ - spec/functional/wpns_spec.rb
647
+ - spec/functional_spec_helper.rb
648
+ - spec/spec_helper.rb
649
+ - spec/support/active_record_setup.rb
650
+ - spec/support/cert_with_password.pem
651
+ - spec/support/cert_without_password.pem
652
+ - spec/support/config/database.yml
653
+ - spec/support/simplecov_helper.rb
654
+ - spec/support/simplecov_quality_formatter.rb
655
+ - spec/tmp/.gitkeep
656
+ - spec/unit/apns_feedback_spec.rb
657
+ - spec/unit/client/active_record/adm/app_spec.rb
658
+ - spec/unit/client/active_record/adm/notification_spec.rb
659
+ - spec/unit/client/active_record/apns/app_spec.rb
660
+ - spec/unit/client/active_record/apns/feedback_spec.rb
661
+ - spec/unit/client/active_record/apns/notification_spec.rb
662
+ - spec/unit/client/active_record/app_spec.rb
663
+ - spec/unit/client/active_record/gcm/app_spec.rb
664
+ - spec/unit/client/active_record/gcm/notification_spec.rb
665
+ - spec/unit/client/active_record/notification_spec.rb
666
+ - spec/unit/client/active_record/pushy/app_spec.rb
667
+ - spec/unit/client/active_record/pushy/notification_spec.rb
668
+ - spec/unit/client/active_record/wns/badge_notification_spec.rb
669
+ - spec/unit/client/active_record/wns/raw_notification_spec.rb
670
+ - spec/unit/client/active_record/wpns/app_spec.rb
671
+ - spec/unit/client/active_record/wpns/notification_spec.rb
672
+ - spec/unit/configuration_spec.rb
673
+ - spec/unit/daemon/adm/delivery_spec.rb
674
+ - spec/unit/daemon/apns/certificate_expired_error_spec.rb
675
+ - spec/unit/daemon/apns/delivery_spec.rb
676
+ - spec/unit/daemon/apns/feedback_receiver_spec.rb
677
+ - spec/unit/daemon/app_runner_spec.rb
678
+ - spec/unit/daemon/batch_spec.rb
679
+ - spec/unit/daemon/delivery_error_spec.rb
680
+ - spec/unit/daemon/delivery_spec.rb
681
+ - spec/unit/daemon/dispatcher/http_spec.rb
682
+ - spec/unit/daemon/dispatcher/tcp_spec.rb
683
+ - spec/unit/daemon/dispatcher_loop_spec.rb
684
+ - spec/unit/daemon/feeder_spec.rb
685
+ - spec/unit/daemon/gcm/delivery_spec.rb
686
+ - spec/unit/daemon/proc_title_spec.rb
687
+ - spec/unit/daemon/pushy/delivery_spec.rb
688
+ - spec/unit/daemon/retryable_error_spec.rb
689
+ - spec/unit/daemon/service_config_methods_spec.rb
690
+ - spec/unit/daemon/signal_handler_spec.rb
691
+ - spec/unit/daemon/store/active_record/reconnectable_spec.rb
692
+ - spec/unit/daemon/store/active_record_spec.rb
693
+ - spec/unit/daemon/store/redis_spec.rb
694
+ - spec/unit/daemon/tcp_connection_spec.rb
695
+ - spec/unit/daemon/wns/delivery_spec.rb
696
+ - spec/unit/daemon/wns/post_request_spec.rb
697
+ - spec/unit/daemon/wpns/delivery_spec.rb
698
+ - spec/unit/daemon_spec.rb
699
+ - spec/unit/deprecatable_spec.rb
700
+ - spec/unit/deprecation_spec.rb
701
+ - spec/unit/embed_spec.rb
702
+ - spec/unit/logger_spec.rb
703
+ - spec/unit/notification_shared.rb
704
+ - spec/unit/plugin_spec.rb
705
+ - spec/unit/push_spec.rb
706
+ - spec/unit/reflectable_spec.rb
707
+ - spec/unit/reflection_collection_spec.rb
708
+ - spec/unit/rpush_spec.rb
709
+ - spec/unit_spec_helper.rb