twilio-ruby 5.0.0.rc26 → 5.0.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.
Files changed (328) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +21 -0
  3. data/.rubocop_todo.yml +187 -0
  4. data/.travis.yml +13 -0
  5. data/CHANGES.md +4 -0
  6. data/Gemfile +2 -2
  7. data/Makefile +8 -1
  8. data/Rakefile +3 -7
  9. data/examples/examples.rb +12 -10
  10. data/examples/{print-call-log.rb → print_call_log.rb} +4 -4
  11. data/lib/rack/twilio_webhook_authentication.rb +2 -3
  12. data/lib/twilio-ruby/framework/domain.rb +2 -6
  13. data/lib/twilio-ruby/framework/error.rb +0 -1
  14. data/lib/twilio-ruby/framework/helper.rb +1 -1
  15. data/lib/twilio-ruby/framework/page.rb +23 -25
  16. data/lib/twilio-ruby/framework/resource.rb +2 -2
  17. data/lib/twilio-ruby/framework/serialize.rb +5 -12
  18. data/lib/twilio-ruby/framework/twilio_response.rb +1 -1
  19. data/lib/twilio-ruby/framework/values.rb +2 -2
  20. data/lib/twilio-ruby/framework/version.rb +19 -37
  21. data/lib/twilio-ruby/http/http_client.rb +5 -6
  22. data/lib/twilio-ruby/jwt/access_token.rb +27 -41
  23. data/lib/twilio-ruby/jwt/client_capability.rb +11 -16
  24. data/lib/twilio-ruby/jwt/jwt.rb +7 -13
  25. data/lib/twilio-ruby/jwt/task_router.rb +40 -38
  26. data/lib/twilio-ruby/rest/accounts.rb +2 -0
  27. data/lib/twilio-ruby/rest/accounts/v1.rb +2 -0
  28. data/lib/twilio-ruby/rest/accounts/v1/credential.rb +2 -2
  29. data/lib/twilio-ruby/rest/accounts/v1/credential/public_key.rb +12 -7
  30. data/lib/twilio-ruby/rest/api.rb +96 -0
  31. data/lib/twilio-ruby/rest/api/v2010.rb +5 -0
  32. data/lib/twilio-ruby/rest/api/v2010/account.rb +66 -56
  33. data/lib/twilio-ruby/rest/api/v2010/account/address.rb +30 -13
  34. data/lib/twilio-ruby/rest/api/v2010/account/address/dependent_phone_number.rb +22 -8
  35. data/lib/twilio-ruby/rest/api/v2010/account/application.rb +40 -11
  36. data/lib/twilio-ruby/rest/api/v2010/account/authorized_connect_app.rb +20 -9
  37. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number.rb +16 -15
  38. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/local.rb +26 -28
  39. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/mobile.rb +26 -28
  40. data/lib/twilio-ruby/rest/api/v2010/account/available_phone_number/toll_free.rb +26 -28
  41. data/lib/twilio-ruby/rest/api/v2010/account/call.rb +64 -34
  42. data/lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb +12 -4
  43. data/lib/twilio-ruby/rest/api/v2010/account/call/feedback_summary.rb +28 -3
  44. data/lib/twilio-ruby/rest/api/v2010/account/call/notification.rb +37 -16
  45. data/lib/twilio-ruby/rest/api/v2010/account/call/recording.rb +25 -15
  46. data/lib/twilio-ruby/rest/api/v2010/account/conference.rb +28 -27
  47. data/lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb +28 -19
  48. data/lib/twilio-ruby/rest/api/v2010/account/connect_app.rb +22 -9
  49. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number.rb +62 -58
  50. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/local.rb +52 -12
  51. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/mobile.rb +52 -12
  52. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/toll_free.rb +52 -12
  53. data/lib/twilio-ruby/rest/api/v2010/account/key.rb +8 -9
  54. data/lib/twilio-ruby/rest/api/v2010/account/message.rb +47 -20
  55. data/lib/twilio-ruby/rest/api/v2010/account/message/feedback.rb +12 -2
  56. data/lib/twilio-ruby/rest/api/v2010/account/message/media.rb +17 -17
  57. data/lib/twilio-ruby/rest/api/v2010/account/new_key.rb +10 -2
  58. data/lib/twilio-ruby/rest/api/v2010/account/new_signing_key.rb +10 -2
  59. data/lib/twilio-ruby/rest/api/v2010/account/notification.rb +37 -16
  60. data/lib/twilio-ruby/rest/api/v2010/account/outgoing_caller_id.rb +14 -13
  61. data/lib/twilio-ruby/rest/api/v2010/account/queue.rb +20 -10
  62. data/lib/twilio-ruby/rest/api/v2010/account/queue/member.rb +10 -10
  63. data/lib/twilio-ruby/rest/api/v2010/account/recording.rb +37 -21
  64. data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result.rb +22 -13
  65. data/lib/twilio-ruby/rest/api/v2010/account/recording/add_on_result/payload.rb +22 -13
  66. data/lib/twilio-ruby/rest/api/v2010/account/recording/transcription.rb +26 -9
  67. data/lib/twilio-ruby/rest/api/v2010/account/short_code.rb +24 -13
  68. data/lib/twilio-ruby/rest/api/v2010/account/signing_key.rb +8 -9
  69. data/lib/twilio-ruby/rest/api/v2010/account/sip.rb +8 -10
  70. data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list.rb +16 -11
  71. data/lib/twilio-ruby/rest/api/v2010/account/sip/credential_list/credential.rb +14 -9
  72. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain.rb +36 -13
  73. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/credential_list_mapping.rb +14 -10
  74. data/lib/twilio-ruby/rest/api/v2010/account/sip/domain/ip_access_control_list_mapping.rb +14 -10
  75. data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list.rb +16 -11
  76. data/lib/twilio-ruby/rest/api/v2010/account/sip/ip_access_control_list/ip_address.rb +16 -9
  77. data/lib/twilio-ruby/rest/api/v2010/account/token.rb +14 -2
  78. data/lib/twilio-ruby/rest/api/v2010/account/transcription.rb +26 -9
  79. data/lib/twilio-ruby/rest/api/v2010/account/usage.rb +4 -6
  80. data/lib/twilio-ruby/rest/api/v2010/account/usage/record.rb +44 -33
  81. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/all_time.rb +28 -11
  82. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/daily.rb +28 -11
  83. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/last_month.rb +28 -11
  84. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/monthly.rb +28 -11
  85. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/this_month.rb +28 -11
  86. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/today.rb +28 -11
  87. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yearly.rb +28 -11
  88. data/lib/twilio-ruby/rest/api/v2010/account/usage/record/yesterday.rb +28 -11
  89. data/lib/twilio-ruby/rest/api/v2010/account/usage/trigger.rb +32 -15
  90. data/lib/twilio-ruby/rest/api/v2010/account/validation_request.rb +10 -1
  91. data/lib/twilio-ruby/rest/chat.rb +8 -0
  92. data/lib/twilio-ruby/rest/chat/v1.rb +8 -0
  93. data/lib/twilio-ruby/rest/chat/v1/credential.rb +16 -7
  94. data/lib/twilio-ruby/rest/chat/v1/service.rb +48 -13
  95. data/lib/twilio-ruby/rest/chat/v1/service/channel.rb +34 -15
  96. data/lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb +20 -10
  97. data/lib/twilio-ruby/rest/chat/v1/service/channel/member.rb +22 -10
  98. data/lib/twilio-ruby/rest/chat/v1/service/channel/message.rb +26 -10
  99. data/lib/twilio-ruby/rest/chat/v1/service/role.rb +18 -8
  100. data/lib/twilio-ruby/rest/chat/v1/service/user.rb +30 -10
  101. data/lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb +16 -8
  102. data/lib/twilio-ruby/rest/chat/v2.rb +8 -0
  103. data/lib/twilio-ruby/rest/chat/v2/credential.rb +16 -7
  104. data/lib/twilio-ruby/rest/chat/v2/service.rb +46 -13
  105. data/lib/twilio-ruby/rest/chat/v2/service/channel.rb +34 -15
  106. data/lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb +20 -10
  107. data/lib/twilio-ruby/rest/chat/v2/service/channel/member.rb +22 -10
  108. data/lib/twilio-ruby/rest/chat/v2/service/channel/message.rb +26 -10
  109. data/lib/twilio-ruby/rest/chat/v2/service/role.rb +18 -8
  110. data/lib/twilio-ruby/rest/chat/v2/service/user.rb +30 -10
  111. data/lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb +16 -8
  112. data/lib/twilio-ruby/rest/client.rb +94 -45
  113. data/lib/twilio-ruby/rest/ip_messaging.rb +8 -0
  114. data/lib/twilio-ruby/rest/ip_messaging/v1.rb +8 -0
  115. data/lib/twilio-ruby/rest/ip_messaging/v1/credential.rb +16 -7
  116. data/lib/twilio-ruby/rest/ip_messaging/v1/service.rb +48 -13
  117. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel.rb +34 -15
  118. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/invite.rb +20 -10
  119. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/member.rb +22 -10
  120. data/lib/twilio-ruby/rest/ip_messaging/v1/service/channel/message.rb +26 -10
  121. data/lib/twilio-ruby/rest/ip_messaging/v1/service/role.rb +18 -8
  122. data/lib/twilio-ruby/rest/ip_messaging/v1/service/user.rb +30 -10
  123. data/lib/twilio-ruby/rest/ip_messaging/v1/service/user/user_channel.rb +16 -8
  124. data/lib/twilio-ruby/rest/ip_messaging/v2.rb +8 -0
  125. data/lib/twilio-ruby/rest/ip_messaging/v2/credential.rb +16 -7
  126. data/lib/twilio-ruby/rest/ip_messaging/v2/service.rb +46 -13
  127. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel.rb +34 -15
  128. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/invite.rb +20 -10
  129. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/member.rb +22 -10
  130. data/lib/twilio-ruby/rest/ip_messaging/v2/service/channel/message.rb +26 -10
  131. data/lib/twilio-ruby/rest/ip_messaging/v2/service/role.rb +18 -8
  132. data/lib/twilio-ruby/rest/ip_messaging/v2/service/user.rb +30 -10
  133. data/lib/twilio-ruby/rest/ip_messaging/v2/service/user/user_channel.rb +16 -8
  134. data/lib/twilio-ruby/rest/lookups.rb +4 -0
  135. data/lib/twilio-ruby/rest/lookups/v1.rb +9 -5
  136. data/lib/twilio-ruby/rest/lookups/v1/phone_number.rb +14 -1
  137. data/lib/twilio-ruby/rest/monitor.rb +8 -0
  138. data/lib/twilio-ruby/rest/monitor/v1.rb +8 -0
  139. data/lib/twilio-ruby/rest/monitor/v1/alert.rb +34 -10
  140. data/lib/twilio-ruby/rest/monitor/v1/event.rb +28 -13
  141. data/lib/twilio-ruby/rest/pricing.rb +6 -0
  142. data/lib/twilio-ruby/rest/pricing/v1.rb +6 -0
  143. data/lib/twilio-ruby/rest/pricing/v1/messaging.rb +8 -2
  144. data/lib/twilio-ruby/rest/pricing/v1/messaging/country.rb +12 -7
  145. data/lib/twilio-ruby/rest/pricing/v1/phone_number.rb +8 -2
  146. data/lib/twilio-ruby/rest/pricing/v1/phone_number/country.rb +10 -7
  147. data/lib/twilio-ruby/rest/pricing/v1/voice.rb +10 -4
  148. data/lib/twilio-ruby/rest/pricing/v1/voice/country.rb +12 -7
  149. data/lib/twilio-ruby/rest/pricing/v1/voice/number.rb +14 -1
  150. data/lib/twilio-ruby/rest/taskrouter.rb +4 -0
  151. data/lib/twilio-ruby/rest/taskrouter/v1.rb +4 -0
  152. data/lib/twilio-ruby/rest/taskrouter/v1/workspace.rb +46 -24
  153. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/activity.rb +16 -10
  154. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb +30 -17
  155. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task.rb +42 -19
  156. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task/reservation.rb +22 -10
  157. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_channel.rb +16 -8
  158. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue.rb +34 -15
  159. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queue_statistics.rb +12 -3
  160. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/task_queue/task_queues_statistics.rb +10 -11
  161. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker.rb +34 -23
  162. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/reservation.rb +22 -10
  163. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_channel.rb +28 -9
  164. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/worker_statistics.rb +10 -3
  165. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/worker/workers_statistics.rb +10 -2
  166. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow.rb +28 -11
  167. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workflow/workflow_statistics.rb +12 -3
  168. data/lib/twilio-ruby/rest/taskrouter/v1/workspace/workspace_statistics.rb +10 -2
  169. data/lib/twilio-ruby/rest/trunking.rb +4 -0
  170. data/lib/twilio-ruby/rest/trunking/v1.rb +4 -0
  171. data/lib/twilio-ruby/rest/trunking/v1/trunk.rb +36 -15
  172. data/lib/twilio-ruby/rest/trunking/v1/trunk/credential_list.rb +14 -8
  173. data/lib/twilio-ruby/rest/trunking/v1/trunk/ip_access_control_list.rb +14 -8
  174. data/lib/twilio-ruby/rest/trunking/v1/trunk/origination_url.rb +22 -8
  175. data/lib/twilio-ruby/rest/trunking/v1/trunk/phone_number.rb +52 -8
  176. data/lib/twilio-ruby/rest/video.rb +8 -0
  177. data/lib/twilio-ruby/rest/video/v1.rb +8 -0
  178. data/lib/twilio-ruby/rest/video/v1/recording.rb +26 -12
  179. data/lib/twilio-ruby/rest/video/v1/room.rb +34 -13
  180. data/lib/twilio-ruby/rest/video/v1/room/recording.rb +28 -12
  181. data/lib/twilio-ruby/security/request_validator.rb +1 -2
  182. data/lib/twilio-ruby/twiml/messaging_response.rb +7 -19
  183. data/lib/twilio-ruby/twiml/twiml.rb +8 -14
  184. data/lib/twilio-ruby/twiml/voice_response.rb +157 -169
  185. data/lib/twilio-ruby/util.rb +1 -1
  186. data/lib/twilio-ruby/version.rb +1 -1
  187. data/spec/framework/serialize_spec.rb +17 -30
  188. data/spec/holodeck/holodeck.rb +6 -6
  189. data/spec/jwt/access_token_spec.rb +0 -6
  190. data/spec/jwt/client_capability_spec.rb +3 -3
  191. data/spec/jwt/task_router_spec.rb +16 -21
  192. data/spec/rack/twilio_webhook_authentication_spec.rb +12 -16
  193. data/spec/spec_helper.rb +2 -2
  194. data/spec/support/fakeweb.rb +1 -1
  195. data/spec/twiml/voice_response_spec.rb +33 -20
  196. data/twilio-ruby.gemspec +7 -3
  197. metadata +21 -193
  198. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on.rb +0 -420
  199. data/lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb +0 -345
  200. data/lib/twilio-ruby/rest/fax.rb +0 -40
  201. data/lib/twilio-ruby/rest/fax/v1.rb +0 -37
  202. data/lib/twilio-ruby/rest/fax/v1/fax.rb +0 -520
  203. data/lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb +0 -321
  204. data/lib/twilio-ruby/rest/messaging.rb +0 -40
  205. data/lib/twilio-ruby/rest/messaging/v1.rb +0 -37
  206. data/lib/twilio-ruby/rest/messaging/v1/service.rb +0 -604
  207. data/lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb +0 -344
  208. data/lib/twilio-ruby/rest/messaging/v1/service/phone_number.rb +0 -349
  209. data/lib/twilio-ruby/rest/messaging/v1/service/short_code.rb +0 -349
  210. data/lib/twilio-ruby/rest/notify.rb +0 -44
  211. data/lib/twilio-ruby/rest/notify/v1.rb +0 -48
  212. data/lib/twilio-ruby/rest/notify/v1/credential.rb +0 -394
  213. data/lib/twilio-ruby/rest/notify/v1/service.rb +0 -611
  214. data/lib/twilio-ruby/rest/notify/v1/service/binding.rb +0 -414
  215. data/lib/twilio-ruby/rest/notify/v1/service/notification.rb +0 -249
  216. data/lib/twilio-ruby/rest/notify/v1/service/segment.rb +0 -219
  217. data/lib/twilio-ruby/rest/notify/v1/service/user.rb +0 -437
  218. data/lib/twilio-ruby/rest/notify/v1/service/user/segment_memberships.rb +0 -247
  219. data/lib/twilio-ruby/rest/notify/v1/service/user/user_binding.rb +0 -418
  220. data/lib/twilio-ruby/rest/preview.rb +0 -107
  221. data/lib/twilio-ruby/rest/preview/bulk_exports.rb +0 -48
  222. data/lib/twilio-ruby/rest/preview/bulk_exports/export.rb +0 -198
  223. data/lib/twilio-ruby/rest/preview/bulk_exports/export/day.rb +0 -209
  224. data/lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb +0 -232
  225. data/lib/twilio-ruby/rest/preview/hosted_numbers.rb +0 -37
  226. data/lib/twilio-ruby/rest/preview/hosted_numbers/hosted_number_order.rb +0 -539
  227. data/lib/twilio-ruby/rest/preview/marketplace.rb +0 -48
  228. data/lib/twilio-ruby/rest/preview/marketplace/available_add_on.rb +0 -326
  229. data/lib/twilio-ruby/rest/preview/marketplace/available_add_on/available_add_on_extension.rb +0 -297
  230. data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on.rb +0 -427
  231. data/lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb +0 -335
  232. data/lib/twilio-ruby/rest/preview/proxy.rb +0 -37
  233. data/lib/twilio-ruby/rest/preview/proxy/service.rb +0 -489
  234. data/lib/twilio-ruby/rest/preview/proxy/service/phone_number.rb +0 -349
  235. data/lib/twilio-ruby/rest/preview/proxy/service/session.rb +0 -525
  236. data/lib/twilio-ruby/rest/preview/proxy/service/session/interaction.rb +0 -406
  237. data/lib/twilio-ruby/rest/preview/proxy/service/session/participant.rb +0 -495
  238. data/lib/twilio-ruby/rest/preview/proxy/service/session/participant/message_interaction.rb +0 -422
  239. data/lib/twilio-ruby/rest/preview/proxy/service/short_code.rb +0 -349
  240. data/lib/twilio-ruby/rest/preview/sync.rb +0 -37
  241. data/lib/twilio-ruby/rest/preview/sync/service.rb +0 -491
  242. data/lib/twilio-ruby/rest/preview/sync/service/document.rb +0 -431
  243. data/lib/twilio-ruby/rest/preview/sync/service/document/document_permission.rb +0 -390
  244. data/lib/twilio-ruby/rest/preview/sync/service/sync_list.rb +0 -426
  245. data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb +0 -422
  246. data/lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_permission.rb +0 -390
  247. data/lib/twilio-ruby/rest/preview/sync/service/sync_map.rb +0 -426
  248. data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_item.rb +0 -424
  249. data/lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_permission.rb +0 -390
  250. data/lib/twilio-ruby/rest/preview/wireless.rb +0 -59
  251. data/lib/twilio-ruby/rest/preview/wireless/command.rb +0 -371
  252. data/lib/twilio-ruby/rest/preview/wireless/rate_plan.rb +0 -414
  253. data/lib/twilio-ruby/rest/preview/wireless/sim.rb +0 -512
  254. data/lib/twilio-ruby/rest/preview/wireless/sim/usage.rb +0 -220
  255. data/lib/twilio-ruby/rest/sync.rb +0 -40
  256. data/lib/twilio-ruby/rest/sync/v1.rb +0 -37
  257. data/lib/twilio-ruby/rest/sync/v1/service.rb +0 -491
  258. data/lib/twilio-ruby/rest/sync/v1/service/document.rb +0 -431
  259. data/lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb +0 -390
  260. data/lib/twilio-ruby/rest/sync/v1/service/sync_list.rb +0 -426
  261. data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_item.rb +0 -422
  262. data/lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_permission.rb +0 -390
  263. data/lib/twilio-ruby/rest/sync/v1/service/sync_map.rb +0 -426
  264. data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_item.rb +0 -424
  265. data/lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_permission.rb +0 -390
  266. data/lib/twilio-ruby/rest/wireless.rb +0 -48
  267. data/lib/twilio-ruby/rest/wireless/v1.rb +0 -59
  268. data/lib/twilio-ruby/rest/wireless/v1/command.rb +0 -357
  269. data/lib/twilio-ruby/rest/wireless/v1/rate_plan.rb +0 -427
  270. data/lib/twilio-ruby/rest/wireless/v1/sim.rb +0 -516
  271. data/lib/twilio-ruby/rest/wireless/v1/sim/usage_record.rb +0 -235
  272. data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension_spec.rb +0 -135
  273. data/spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on_spec.rb +0 -223
  274. data/spec/integration/fax/v1/fax/fax_media_spec.rb +0 -126
  275. data/spec/integration/fax/v1/fax_spec.rb +0 -272
  276. data/spec/integration/messaging/v1/service/alpha_sender_spec.rb +0 -170
  277. data/spec/integration/messaging/v1/service/phone_number_spec.rb +0 -201
  278. data/spec/integration/messaging/v1/service/short_code_spec.rb +0 -173
  279. data/spec/integration/messaging/v1/service_spec.rb +0 -263
  280. data/spec/integration/notify/v1/credential_spec.rb +0 -223
  281. data/spec/integration/notify/v1/service/binding_spec.rb +0 -227
  282. data/spec/integration/notify/v1/service/notification_spec.rb +0 -97
  283. data/spec/integration/notify/v1/service/segment_spec.rb +0 -84
  284. data/spec/integration/notify/v1/service/user/segment_memberships_spec.rb +0 -118
  285. data/spec/integration/notify/v1/service/user/user_binding_spec.rb +0 -269
  286. data/spec/integration/notify/v1/service/user_spec.rb +0 -213
  287. data/spec/integration/notify/v1/service_spec.rb +0 -280
  288. data/spec/integration/preview/bulk_exports/export/day_spec.rb +0 -56
  289. data/spec/integration/preview/bulk_exports/export_configuration_spec.rb +0 -79
  290. data/spec/integration/preview/bulk_exports/export_spec.rb +0 -43
  291. data/spec/integration/preview/hosted_numbers/hosted_number_order_spec.rb +0 -276
  292. data/spec/integration/preview/marketplace/available_add_on/available_add_on_extension_spec.rb +0 -121
  293. data/spec/integration/preview/marketplace/available_add_on_spec.rb +0 -142
  294. data/spec/integration/preview/marketplace/installed_add_on/installed_add_on_extension_spec.rb +0 -164
  295. data/spec/integration/preview/marketplace/installed_add_on_spec.rb +0 -252
  296. data/spec/integration/preview/proxy/service/phone_number_spec.rb +0 -173
  297. data/spec/integration/preview/proxy/service/session/interaction_spec.rb +0 -104
  298. data/spec/integration/preview/proxy/service/session/participant/message_interaction_spec.rb +0 -164
  299. data/spec/integration/preview/proxy/service/session/participant_spec.rb +0 -226
  300. data/spec/integration/preview/proxy/service/session_spec.rb +0 -216
  301. data/spec/integration/preview/proxy/service/short_code_spec.rb +0 -173
  302. data/spec/integration/preview/proxy/service_spec.rb +0 -200
  303. data/spec/integration/preview/sync/service/document/document_permission_spec.rb +0 -206
  304. data/spec/integration/preview/sync/service/document_spec.rb +0 -254
  305. data/spec/integration/preview/sync/service/sync_list/sync_list_item_spec.rb +0 -256
  306. data/spec/integration/preview/sync/service/sync_list/sync_list_permission_spec.rb +0 -206
  307. data/spec/integration/preview/sync/service/sync_list_spec.rb +0 -207
  308. data/spec/integration/preview/sync/service/sync_map/sync_map_item_spec.rb +0 -257
  309. data/spec/integration/preview/sync/service/sync_map/sync_map_permission_spec.rb +0 -206
  310. data/spec/integration/preview/sync/service/sync_map_spec.rb +0 -207
  311. data/spec/integration/preview/sync/service_spec.rb +0 -244
  312. data/spec/integration/preview/wireless/command_spec.rb +0 -169
  313. data/spec/integration/preview/wireless/rate_plan_spec.rb +0 -260
  314. data/spec/integration/preview/wireless/sim/usage_spec.rb +0 -49
  315. data/spec/integration/preview/wireless/sim_spec.rb +0 -208
  316. data/spec/integration/sync/v1/service/document/document_permission_spec.rb +0 -206
  317. data/spec/integration/sync/v1/service/document_spec.rb +0 -254
  318. data/spec/integration/sync/v1/service/sync_list/sync_list_item_spec.rb +0 -256
  319. data/spec/integration/sync/v1/service/sync_list/sync_list_permission_spec.rb +0 -206
  320. data/spec/integration/sync/v1/service/sync_list_spec.rb +0 -207
  321. data/spec/integration/sync/v1/service/sync_map/sync_map_item_spec.rb +0 -257
  322. data/spec/integration/sync/v1/service/sync_map/sync_map_permission_spec.rb +0 -206
  323. data/spec/integration/sync/v1/service/sync_map_spec.rb +0 -207
  324. data/spec/integration/sync/v1/service_spec.rb +0 -244
  325. data/spec/integration/wireless/v1/command_spec.rb +0 -166
  326. data/spec/integration/wireless/v1/rate_plan_spec.rb +0 -268
  327. data/spec/integration/wireless/v1/sim/usage_record_spec.rb +0 -65
  328. data/spec/integration/wireless/v1/sim_spec.rb +0 -208
data/twilio-ruby.gemspec CHANGED
@@ -1,4 +1,5 @@
1
1
  # coding: utf-8
2
+
2
3
  lib = File.expand_path('../lib', __FILE__)
3
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
5
  require 'twilio-ruby/version'
@@ -7,11 +8,13 @@ Gem::Specification.new do |spec|
7
8
  spec.name = 'twilio-ruby'
8
9
  spec.version = Twilio::VERSION
9
10
  spec.authors = ['Twilio API Team']
10
- spec.summary = 'A simple library for communicating with the Twilio REST API, building TwiML, and generating Twilio JWT Capability Tokens'
11
- spec.description = 'A simple library for communicating with the Twilio REST API, building TwiML, and generating Twilio JWT Capability Tokens'
11
+ spec.summary = 'A simple library for communicating with the Twilio REST API, '\
12
+ 'building TwiML, and generating Twilio JWT Capability Tokens'
13
+ spec.description = 'A simple library for communicating with the Twilio REST API, '\
14
+ 'building TwiML, and generating Twilio JWT Capability Tokens'
12
15
  spec.homepage = 'http://github.com/twilio/twilio-ruby'
13
16
  spec.license = 'MIT'
14
- spec.metadata["yard.run"] = "yri" # use "yard" to build full HTML docs.
17
+ spec.metadata['yard.run'] = 'yri' # use "yard" to build full HTML docs.
15
18
 
16
19
  spec.files = `git ls-files -z`.split("\x0")
17
20
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
@@ -29,6 +32,7 @@ Gem::Specification.new do |spec|
29
32
  spec.add_dependency('rubysl') if defined?(RUBY_ENGINE) && RUBY_ENGINE == 'rbx'
30
33
 
31
34
  spec.add_development_dependency 'bundler', '~> 1.5'
35
+ spec.add_development_dependency 'rubocop', '~> 0.49.1'
32
36
  spec.add_development_dependency 'yard', '~> 0.9.9'
33
37
  spec.extra_rdoc_files = ['README.md', 'LICENSE.md']
34
38
  spec.rdoc_options = ['--line-numbers', '--inline-source', '--title', 'twilio-ruby', '--main', 'README.md']
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twilio-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.0.rc26
4
+ version: 5.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Twilio API Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-07-08 00:00:00.000000000 Z
11
+ date: 2017-07-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: libxml-ruby
@@ -66,6 +66,20 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '1.5'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rubocop
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 0.49.1
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 0.49.1
69
83
  - !ruby/object:Gem::Dependency
70
84
  name: yard
71
85
  requirement: !ruby/object:Gem::Requirement
@@ -90,6 +104,8 @@ extra_rdoc_files:
90
104
  - LICENSE.md
91
105
  files:
92
106
  - ".gitignore"
107
+ - ".rubocop.yml"
108
+ - ".rubocop_todo.yml"
93
109
  - ".travis.yml"
94
110
  - AUTHORS.md
95
111
  - CHANGES.md
@@ -101,7 +117,7 @@ files:
101
117
  - VERSIONS.md
102
118
  - conf/cacert.pem
103
119
  - examples/examples.rb
104
- - examples/print-call-log.rb
120
+ - examples/print_call_log.rb
105
121
  - lib/rack/twilio_webhook_authentication.rb
106
122
  - lib/twilio-ruby.rb
107
123
  - lib/twilio-ruby/framework/domain.rb
@@ -142,8 +158,6 @@ files:
142
158
  - lib/twilio-ruby/rest/api/v2010/account/conference/participant.rb
143
159
  - lib/twilio-ruby/rest/api/v2010/account/connect_app.rb
144
160
  - lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number.rb
145
- - lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on.rb
146
- - lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension.rb
147
161
  - lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/local.rb
148
162
  - lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/mobile.rb
149
163
  - lib/twilio-ruby/rest/api/v2010/account/incoming_phone_number/toll_free.rb
@@ -207,10 +221,6 @@ files:
207
221
  - lib/twilio-ruby/rest/chat/v2/service/user.rb
208
222
  - lib/twilio-ruby/rest/chat/v2/service/user/user_channel.rb
209
223
  - lib/twilio-ruby/rest/client.rb
210
- - lib/twilio-ruby/rest/fax.rb
211
- - lib/twilio-ruby/rest/fax/v1.rb
212
- - lib/twilio-ruby/rest/fax/v1/fax.rb
213
- - lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb
214
224
  - lib/twilio-ruby/rest/ip_messaging.rb
215
225
  - lib/twilio-ruby/rest/ip_messaging/v1.rb
216
226
  - lib/twilio-ruby/rest/ip_messaging/v1/credential.rb
@@ -235,61 +245,10 @@ files:
235
245
  - lib/twilio-ruby/rest/lookups.rb
236
246
  - lib/twilio-ruby/rest/lookups/v1.rb
237
247
  - lib/twilio-ruby/rest/lookups/v1/phone_number.rb
238
- - lib/twilio-ruby/rest/messaging.rb
239
- - lib/twilio-ruby/rest/messaging/v1.rb
240
- - lib/twilio-ruby/rest/messaging/v1/service.rb
241
- - lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb
242
- - lib/twilio-ruby/rest/messaging/v1/service/phone_number.rb
243
- - lib/twilio-ruby/rest/messaging/v1/service/short_code.rb
244
248
  - lib/twilio-ruby/rest/monitor.rb
245
249
  - lib/twilio-ruby/rest/monitor/v1.rb
246
250
  - lib/twilio-ruby/rest/monitor/v1/alert.rb
247
251
  - lib/twilio-ruby/rest/monitor/v1/event.rb
248
- - lib/twilio-ruby/rest/notify.rb
249
- - lib/twilio-ruby/rest/notify/v1.rb
250
- - lib/twilio-ruby/rest/notify/v1/credential.rb
251
- - lib/twilio-ruby/rest/notify/v1/service.rb
252
- - lib/twilio-ruby/rest/notify/v1/service/binding.rb
253
- - lib/twilio-ruby/rest/notify/v1/service/notification.rb
254
- - lib/twilio-ruby/rest/notify/v1/service/segment.rb
255
- - lib/twilio-ruby/rest/notify/v1/service/user.rb
256
- - lib/twilio-ruby/rest/notify/v1/service/user/segment_memberships.rb
257
- - lib/twilio-ruby/rest/notify/v1/service/user/user_binding.rb
258
- - lib/twilio-ruby/rest/preview.rb
259
- - lib/twilio-ruby/rest/preview/bulk_exports.rb
260
- - lib/twilio-ruby/rest/preview/bulk_exports/export.rb
261
- - lib/twilio-ruby/rest/preview/bulk_exports/export/day.rb
262
- - lib/twilio-ruby/rest/preview/bulk_exports/export_configuration.rb
263
- - lib/twilio-ruby/rest/preview/hosted_numbers.rb
264
- - lib/twilio-ruby/rest/preview/hosted_numbers/hosted_number_order.rb
265
- - lib/twilio-ruby/rest/preview/marketplace.rb
266
- - lib/twilio-ruby/rest/preview/marketplace/available_add_on.rb
267
- - lib/twilio-ruby/rest/preview/marketplace/available_add_on/available_add_on_extension.rb
268
- - lib/twilio-ruby/rest/preview/marketplace/installed_add_on.rb
269
- - lib/twilio-ruby/rest/preview/marketplace/installed_add_on/installed_add_on_extension.rb
270
- - lib/twilio-ruby/rest/preview/proxy.rb
271
- - lib/twilio-ruby/rest/preview/proxy/service.rb
272
- - lib/twilio-ruby/rest/preview/proxy/service/phone_number.rb
273
- - lib/twilio-ruby/rest/preview/proxy/service/session.rb
274
- - lib/twilio-ruby/rest/preview/proxy/service/session/interaction.rb
275
- - lib/twilio-ruby/rest/preview/proxy/service/session/participant.rb
276
- - lib/twilio-ruby/rest/preview/proxy/service/session/participant/message_interaction.rb
277
- - lib/twilio-ruby/rest/preview/proxy/service/short_code.rb
278
- - lib/twilio-ruby/rest/preview/sync.rb
279
- - lib/twilio-ruby/rest/preview/sync/service.rb
280
- - lib/twilio-ruby/rest/preview/sync/service/document.rb
281
- - lib/twilio-ruby/rest/preview/sync/service/document/document_permission.rb
282
- - lib/twilio-ruby/rest/preview/sync/service/sync_list.rb
283
- - lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb
284
- - lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_permission.rb
285
- - lib/twilio-ruby/rest/preview/sync/service/sync_map.rb
286
- - lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_item.rb
287
- - lib/twilio-ruby/rest/preview/sync/service/sync_map/sync_map_permission.rb
288
- - lib/twilio-ruby/rest/preview/wireless.rb
289
- - lib/twilio-ruby/rest/preview/wireless/command.rb
290
- - lib/twilio-ruby/rest/preview/wireless/rate_plan.rb
291
- - lib/twilio-ruby/rest/preview/wireless/sim.rb
292
- - lib/twilio-ruby/rest/preview/wireless/sim/usage.rb
293
252
  - lib/twilio-ruby/rest/pricing.rb
294
253
  - lib/twilio-ruby/rest/pricing/v1.rb
295
254
  - lib/twilio-ruby/rest/pricing/v1/messaging.rb
@@ -299,17 +258,6 @@ files:
299
258
  - lib/twilio-ruby/rest/pricing/v1/voice.rb
300
259
  - lib/twilio-ruby/rest/pricing/v1/voice/country.rb
301
260
  - lib/twilio-ruby/rest/pricing/v1/voice/number.rb
302
- - lib/twilio-ruby/rest/sync.rb
303
- - lib/twilio-ruby/rest/sync/v1.rb
304
- - lib/twilio-ruby/rest/sync/v1/service.rb
305
- - lib/twilio-ruby/rest/sync/v1/service/document.rb
306
- - lib/twilio-ruby/rest/sync/v1/service/document/document_permission.rb
307
- - lib/twilio-ruby/rest/sync/v1/service/sync_list.rb
308
- - lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_item.rb
309
- - lib/twilio-ruby/rest/sync/v1/service/sync_list/sync_list_permission.rb
310
- - lib/twilio-ruby/rest/sync/v1/service/sync_map.rb
311
- - lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_item.rb
312
- - lib/twilio-ruby/rest/sync/v1/service/sync_map/sync_map_permission.rb
313
261
  - lib/twilio-ruby/rest/taskrouter.rb
314
262
  - lib/twilio-ruby/rest/taskrouter/v1.rb
315
263
  - lib/twilio-ruby/rest/taskrouter/v1/workspace.rb
@@ -341,12 +289,6 @@ files:
341
289
  - lib/twilio-ruby/rest/video/v1/recording.rb
342
290
  - lib/twilio-ruby/rest/video/v1/room.rb
343
291
  - lib/twilio-ruby/rest/video/v1/room/recording.rb
344
- - lib/twilio-ruby/rest/wireless.rb
345
- - lib/twilio-ruby/rest/wireless/v1.rb
346
- - lib/twilio-ruby/rest/wireless/v1/command.rb
347
- - lib/twilio-ruby/rest/wireless/v1/rate_plan.rb
348
- - lib/twilio-ruby/rest/wireless/v1/sim.rb
349
- - lib/twilio-ruby/rest/wireless/v1/sim/usage_record.rb
350
292
  - lib/twilio-ruby/security/request_validator.rb
351
293
  - lib/twilio-ruby/twiml/messaging_response.rb
352
294
  - lib/twilio-ruby/twiml/twiml.rb
@@ -375,8 +317,6 @@ files:
375
317
  - spec/integration/api/v2010/account/conference/participant_spec.rb
376
318
  - spec/integration/api/v2010/account/conference_spec.rb
377
319
  - spec/integration/api/v2010/account/connect_app_spec.rb
378
- - spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension_spec.rb
379
- - spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on_spec.rb
380
320
  - spec/integration/api/v2010/account/incoming_phone_number/local_spec.rb
381
321
  - spec/integration/api/v2010/account/incoming_phone_number/mobile_spec.rb
382
322
  - spec/integration/api/v2010/account/incoming_phone_number/toll_free_spec.rb
@@ -438,8 +378,6 @@ files:
438
378
  - spec/integration/chat/v2/service/user/user_channel_spec.rb
439
379
  - spec/integration/chat/v2/service/user_spec.rb
440
380
  - spec/integration/chat/v2/service_spec.rb
441
- - spec/integration/fax/v1/fax/fax_media_spec.rb
442
- - spec/integration/fax/v1/fax_spec.rb
443
381
  - spec/integration/ip_messaging/v1/credential_spec.rb
444
382
  - spec/integration/ip_messaging/v1/service/channel/invite_spec.rb
445
383
  - spec/integration/ip_messaging/v1/service/channel/member_spec.rb
@@ -459,48 +397,8 @@ files:
459
397
  - spec/integration/ip_messaging/v2/service/user_spec.rb
460
398
  - spec/integration/ip_messaging/v2/service_spec.rb
461
399
  - spec/integration/lookups/v1/phone_number_spec.rb
462
- - spec/integration/messaging/v1/service/alpha_sender_spec.rb
463
- - spec/integration/messaging/v1/service/phone_number_spec.rb
464
- - spec/integration/messaging/v1/service/short_code_spec.rb
465
- - spec/integration/messaging/v1/service_spec.rb
466
400
  - spec/integration/monitor/v1/alert_spec.rb
467
401
  - spec/integration/monitor/v1/event_spec.rb
468
- - spec/integration/notify/v1/credential_spec.rb
469
- - spec/integration/notify/v1/service/binding_spec.rb
470
- - spec/integration/notify/v1/service/notification_spec.rb
471
- - spec/integration/notify/v1/service/segment_spec.rb
472
- - spec/integration/notify/v1/service/user/segment_memberships_spec.rb
473
- - spec/integration/notify/v1/service/user/user_binding_spec.rb
474
- - spec/integration/notify/v1/service/user_spec.rb
475
- - spec/integration/notify/v1/service_spec.rb
476
- - spec/integration/preview/bulk_exports/export/day_spec.rb
477
- - spec/integration/preview/bulk_exports/export_configuration_spec.rb
478
- - spec/integration/preview/bulk_exports/export_spec.rb
479
- - spec/integration/preview/hosted_numbers/hosted_number_order_spec.rb
480
- - spec/integration/preview/marketplace/available_add_on/available_add_on_extension_spec.rb
481
- - spec/integration/preview/marketplace/available_add_on_spec.rb
482
- - spec/integration/preview/marketplace/installed_add_on/installed_add_on_extension_spec.rb
483
- - spec/integration/preview/marketplace/installed_add_on_spec.rb
484
- - spec/integration/preview/proxy/service/phone_number_spec.rb
485
- - spec/integration/preview/proxy/service/session/interaction_spec.rb
486
- - spec/integration/preview/proxy/service/session/participant/message_interaction_spec.rb
487
- - spec/integration/preview/proxy/service/session/participant_spec.rb
488
- - spec/integration/preview/proxy/service/session_spec.rb
489
- - spec/integration/preview/proxy/service/short_code_spec.rb
490
- - spec/integration/preview/proxy/service_spec.rb
491
- - spec/integration/preview/sync/service/document/document_permission_spec.rb
492
- - spec/integration/preview/sync/service/document_spec.rb
493
- - spec/integration/preview/sync/service/sync_list/sync_list_item_spec.rb
494
- - spec/integration/preview/sync/service/sync_list/sync_list_permission_spec.rb
495
- - spec/integration/preview/sync/service/sync_list_spec.rb
496
- - spec/integration/preview/sync/service/sync_map/sync_map_item_spec.rb
497
- - spec/integration/preview/sync/service/sync_map/sync_map_permission_spec.rb
498
- - spec/integration/preview/sync/service/sync_map_spec.rb
499
- - spec/integration/preview/sync/service_spec.rb
500
- - spec/integration/preview/wireless/command_spec.rb
501
- - spec/integration/preview/wireless/rate_plan_spec.rb
502
- - spec/integration/preview/wireless/sim/usage_spec.rb
503
- - spec/integration/preview/wireless/sim_spec.rb
504
402
  - spec/integration/pricing/v1/messaging/country_spec.rb
505
403
  - spec/integration/pricing/v1/messaging_spec.rb
506
404
  - spec/integration/pricing/v1/phone_number/country_spec.rb
@@ -508,15 +406,6 @@ files:
508
406
  - spec/integration/pricing/v1/voice/country_spec.rb
509
407
  - spec/integration/pricing/v1/voice/number_spec.rb
510
408
  - spec/integration/pricing/v1/voice_spec.rb
511
- - spec/integration/sync/v1/service/document/document_permission_spec.rb
512
- - spec/integration/sync/v1/service/document_spec.rb
513
- - spec/integration/sync/v1/service/sync_list/sync_list_item_spec.rb
514
- - spec/integration/sync/v1/service/sync_list/sync_list_permission_spec.rb
515
- - spec/integration/sync/v1/service/sync_list_spec.rb
516
- - spec/integration/sync/v1/service/sync_map/sync_map_item_spec.rb
517
- - spec/integration/sync/v1/service/sync_map/sync_map_permission_spec.rb
518
- - spec/integration/sync/v1/service/sync_map_spec.rb
519
- - spec/integration/sync/v1/service_spec.rb
520
409
  - spec/integration/taskrouter/v1/workspace/activity_spec.rb
521
410
  - spec/integration/taskrouter/v1/workspace/event_spec.rb
522
411
  - spec/integration/taskrouter/v1/workspace/task/reservation_spec.rb
@@ -542,10 +431,6 @@ files:
542
431
  - spec/integration/video/v1/recording_spec.rb
543
432
  - spec/integration/video/v1/room/recording_spec.rb
544
433
  - spec/integration/video/v1/room_spec.rb
545
- - spec/integration/wireless/v1/command_spec.rb
546
- - spec/integration/wireless/v1/rate_plan_spec.rb
547
- - spec/integration/wireless/v1/sim/usage_record_spec.rb
548
- - spec/integration/wireless/v1/sim_spec.rb
549
434
  - spec/jwt/access_token_spec.rb
550
435
  - spec/jwt/client_capability_spec.rb
551
436
  - spec/jwt/task_router_spec.rb
@@ -581,9 +466,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
581
466
  version: 2.0.0
582
467
  required_rubygems_version: !ruby/object:Gem::Requirement
583
468
  requirements:
584
- - - ">"
469
+ - - ">="
585
470
  - !ruby/object:Gem::Version
586
- version: 1.3.1
471
+ version: '0'
587
472
  requirements: []
588
473
  rubyforge_project:
589
474
  rubygems_version: 2.6.11
@@ -613,8 +498,6 @@ test_files:
613
498
  - spec/integration/api/v2010/account/conference/participant_spec.rb
614
499
  - spec/integration/api/v2010/account/conference_spec.rb
615
500
  - spec/integration/api/v2010/account/connect_app_spec.rb
616
- - spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on/assigned_add_on_extension_spec.rb
617
- - spec/integration/api/v2010/account/incoming_phone_number/assigned_add_on_spec.rb
618
501
  - spec/integration/api/v2010/account/incoming_phone_number/local_spec.rb
619
502
  - spec/integration/api/v2010/account/incoming_phone_number/mobile_spec.rb
620
503
  - spec/integration/api/v2010/account/incoming_phone_number/toll_free_spec.rb
@@ -676,8 +559,6 @@ test_files:
676
559
  - spec/integration/chat/v2/service/user/user_channel_spec.rb
677
560
  - spec/integration/chat/v2/service/user_spec.rb
678
561
  - spec/integration/chat/v2/service_spec.rb
679
- - spec/integration/fax/v1/fax/fax_media_spec.rb
680
- - spec/integration/fax/v1/fax_spec.rb
681
562
  - spec/integration/ip_messaging/v1/credential_spec.rb
682
563
  - spec/integration/ip_messaging/v1/service/channel/invite_spec.rb
683
564
  - spec/integration/ip_messaging/v1/service/channel/member_spec.rb
@@ -697,48 +578,8 @@ test_files:
697
578
  - spec/integration/ip_messaging/v2/service/user_spec.rb
698
579
  - spec/integration/ip_messaging/v2/service_spec.rb
699
580
  - spec/integration/lookups/v1/phone_number_spec.rb
700
- - spec/integration/messaging/v1/service/alpha_sender_spec.rb
701
- - spec/integration/messaging/v1/service/phone_number_spec.rb
702
- - spec/integration/messaging/v1/service/short_code_spec.rb
703
- - spec/integration/messaging/v1/service_spec.rb
704
581
  - spec/integration/monitor/v1/alert_spec.rb
705
582
  - spec/integration/monitor/v1/event_spec.rb
706
- - spec/integration/notify/v1/credential_spec.rb
707
- - spec/integration/notify/v1/service/binding_spec.rb
708
- - spec/integration/notify/v1/service/notification_spec.rb
709
- - spec/integration/notify/v1/service/segment_spec.rb
710
- - spec/integration/notify/v1/service/user/segment_memberships_spec.rb
711
- - spec/integration/notify/v1/service/user/user_binding_spec.rb
712
- - spec/integration/notify/v1/service/user_spec.rb
713
- - spec/integration/notify/v1/service_spec.rb
714
- - spec/integration/preview/bulk_exports/export/day_spec.rb
715
- - spec/integration/preview/bulk_exports/export_configuration_spec.rb
716
- - spec/integration/preview/bulk_exports/export_spec.rb
717
- - spec/integration/preview/hosted_numbers/hosted_number_order_spec.rb
718
- - spec/integration/preview/marketplace/available_add_on/available_add_on_extension_spec.rb
719
- - spec/integration/preview/marketplace/available_add_on_spec.rb
720
- - spec/integration/preview/marketplace/installed_add_on/installed_add_on_extension_spec.rb
721
- - spec/integration/preview/marketplace/installed_add_on_spec.rb
722
- - spec/integration/preview/proxy/service/phone_number_spec.rb
723
- - spec/integration/preview/proxy/service/session/interaction_spec.rb
724
- - spec/integration/preview/proxy/service/session/participant/message_interaction_spec.rb
725
- - spec/integration/preview/proxy/service/session/participant_spec.rb
726
- - spec/integration/preview/proxy/service/session_spec.rb
727
- - spec/integration/preview/proxy/service/short_code_spec.rb
728
- - spec/integration/preview/proxy/service_spec.rb
729
- - spec/integration/preview/sync/service/document/document_permission_spec.rb
730
- - spec/integration/preview/sync/service/document_spec.rb
731
- - spec/integration/preview/sync/service/sync_list/sync_list_item_spec.rb
732
- - spec/integration/preview/sync/service/sync_list/sync_list_permission_spec.rb
733
- - spec/integration/preview/sync/service/sync_list_spec.rb
734
- - spec/integration/preview/sync/service/sync_map/sync_map_item_spec.rb
735
- - spec/integration/preview/sync/service/sync_map/sync_map_permission_spec.rb
736
- - spec/integration/preview/sync/service/sync_map_spec.rb
737
- - spec/integration/preview/sync/service_spec.rb
738
- - spec/integration/preview/wireless/command_spec.rb
739
- - spec/integration/preview/wireless/rate_plan_spec.rb
740
- - spec/integration/preview/wireless/sim/usage_spec.rb
741
- - spec/integration/preview/wireless/sim_spec.rb
742
583
  - spec/integration/pricing/v1/messaging/country_spec.rb
743
584
  - spec/integration/pricing/v1/messaging_spec.rb
744
585
  - spec/integration/pricing/v1/phone_number/country_spec.rb
@@ -746,15 +587,6 @@ test_files:
746
587
  - spec/integration/pricing/v1/voice/country_spec.rb
747
588
  - spec/integration/pricing/v1/voice/number_spec.rb
748
589
  - spec/integration/pricing/v1/voice_spec.rb
749
- - spec/integration/sync/v1/service/document/document_permission_spec.rb
750
- - spec/integration/sync/v1/service/document_spec.rb
751
- - spec/integration/sync/v1/service/sync_list/sync_list_item_spec.rb
752
- - spec/integration/sync/v1/service/sync_list/sync_list_permission_spec.rb
753
- - spec/integration/sync/v1/service/sync_list_spec.rb
754
- - spec/integration/sync/v1/service/sync_map/sync_map_item_spec.rb
755
- - spec/integration/sync/v1/service/sync_map/sync_map_permission_spec.rb
756
- - spec/integration/sync/v1/service/sync_map_spec.rb
757
- - spec/integration/sync/v1/service_spec.rb
758
590
  - spec/integration/taskrouter/v1/workspace/activity_spec.rb
759
591
  - spec/integration/taskrouter/v1/workspace/event_spec.rb
760
592
  - spec/integration/taskrouter/v1/workspace/task/reservation_spec.rb
@@ -780,10 +612,6 @@ test_files:
780
612
  - spec/integration/video/v1/recording_spec.rb
781
613
  - spec/integration/video/v1/room/recording_spec.rb
782
614
  - spec/integration/video/v1/room_spec.rb
783
- - spec/integration/wireless/v1/command_spec.rb
784
- - spec/integration/wireless/v1/rate_plan_spec.rb
785
- - spec/integration/wireless/v1/sim/usage_record_spec.rb
786
- - spec/integration/wireless/v1/sim_spec.rb
787
615
  - spec/jwt/access_token_spec.rb
788
616
  - spec/jwt/client_capability_spec.rb
789
617
  - spec/jwt/task_router_spec.rb
@@ -1,420 +0,0 @@
1
- ##
2
- # This code was generated by
3
- # \ / _ _ _| _ _
4
- # | (_)\/(_)(_|\/| |(/_ v1.0.0
5
- # / /
6
-
7
- module Twilio
8
- module REST
9
- class Api < Domain
10
- class V2010 < Version
11
- class AccountContext < InstanceContext
12
- class IncomingPhoneNumberContext < InstanceContext
13
- class AssignedAddOnList < ListResource
14
- ##
15
- # Initialize the AssignedAddOnList
16
- # @param [Version] version Version that contains the resource
17
- # @param [String] account_sid The unique id of the Account that has installed this
18
- # Add-on.
19
- # @param [String] resource_sid The unique id of the Phone Number to which the
20
- # Add-on is assigned.
21
- # @return [AssignedAddOnList] AssignedAddOnList
22
- def initialize(version, account_sid: nil, resource_sid: nil)
23
- super(version)
24
-
25
- # Path Solution
26
- @solution = {
27
- account_sid: account_sid,
28
- resource_sid: resource_sid
29
- }
30
- @uri = "/Accounts/#{@solution[:account_sid]}/IncomingPhoneNumbers/#{@solution[:resource_sid]}/AssignedAddOns.json"
31
- end
32
-
33
- ##
34
- # Lists AssignedAddOnInstance records from the API as a list.
35
- # Unlike stream(), this operation is eager and will load `limit` records into
36
- # memory before returning.
37
- # @param [Integer] limit Upper limit for the number of records to return. stream()
38
- # guarantees to never return more than limit. Default is no limit
39
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
40
- # the default value of 50 records. If no page_size is defined
41
- # but a limit is defined, stream() will attempt to read the
42
- # limit with the most efficient page size, i.e. min(limit, 1000)
43
- # @return [Array] Array of up to limit results
44
- def list(limit: nil, page_size: nil)
45
- self.stream(
46
- limit: limit,
47
- page_size: page_size
48
- ).entries
49
- end
50
-
51
- ##
52
- # Streams AssignedAddOnInstance records from the API as an Enumerable.
53
- # This operation lazily loads records as efficiently as possible until the limit
54
- # is reached.
55
- # @param [Integer] limit Upper limit for the number of records to return. stream()
56
- # guarantees to never return more than limit. Default is no limit
57
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
58
- # the default value of 50 records. If no page_size is defined
59
- # but a limit is defined, stream() will attempt to read the
60
- # limit with the most efficient page size, i.e. min(limit, 1000)
61
- # @return [Enumerable] Enumerable that will yield up to limit results
62
- def stream(limit: nil, page_size: nil)
63
- limits = @version.read_limits(limit, page_size)
64
-
65
- page = self.page(
66
- page_size: limits[:page_size],
67
- )
68
-
69
- @version.stream(page, limit: limits[:limit], page_limit: limits[:page_limit])
70
- end
71
-
72
- ##
73
- # When passed a block, yields AssignedAddOnInstance records from the API.
74
- # This operation lazily loads records as efficiently as possible until the limit
75
- # is reached.
76
- # @param [Integer] limit Upper limit for the number of records to return. stream()
77
- # guarantees to never return more than limit. Default is no limit
78
- # @param [Integer] page_size Number of records to fetch per request, when not set will use
79
- # the default value of 50 records. If no page_size is defined
80
- # but a limit is defined, stream() will attempt to read the
81
- # limit with the most efficient page size, i.e. min(limit, 1000)
82
- def each
83
- limits = @version.read_limits
84
-
85
- page = self.page(
86
- page_size: limits[:page_size],
87
- )
88
-
89
- @version.stream(page,
90
- limit: limits[:limit],
91
- page_limit: limits[:page_limit]).each {|x| yield x}
92
- end
93
-
94
- ##
95
- # Retrieve a single page of AssignedAddOnInstance records from the API.
96
- # Request is executed immediately.
97
- # @param [String] page_token PageToken provided by the API
98
- # @param [Integer] page_number Page Number, this value is simply for client state
99
- # @param [Integer] page_size Number of records to return, defaults to 50
100
- # @return [Page] Page of AssignedAddOnInstance
101
- def page(page_token: :unset, page_number: :unset, page_size: :unset)
102
- params = Twilio::Values.of({
103
- 'PageToken' => page_token,
104
- 'Page' => page_number,
105
- 'PageSize' => page_size,
106
- })
107
- response = @version.page(
108
- 'GET',
109
- @uri,
110
- params
111
- )
112
- AssignedAddOnPage.new(@version, response, @solution)
113
- end
114
-
115
- ##
116
- # Retrieve a single page of AssignedAddOnInstance records from the API.
117
- # Request is executed immediately.
118
- # @param [String] target_url API-generated URL for the requested results page
119
- # @return [Page] Page of AssignedAddOnInstance
120
- def get_page(target_url)
121
- response = @version.domain.request(
122
- 'GET',
123
- target_url
124
- )
125
- AssignedAddOnPage.new(@version, response, @solution)
126
- end
127
-
128
- ##
129
- # Retrieve a single page of AssignedAddOnInstance records from the API.
130
- # Request is executed immediately.
131
- # @param [String] installed_add_on_sid A 34 character string that uniquely
132
- # identifies the Add-on installation.
133
- # @return [AssignedAddOnInstance] Newly created AssignedAddOnInstance
134
- def create(installed_add_on_sid: nil)
135
- data = Twilio::Values.of({
136
- 'InstalledAddOnSid' => installed_add_on_sid,
137
- })
138
-
139
- payload = @version.create(
140
- 'POST',
141
- @uri,
142
- data: data
143
- )
144
-
145
- AssignedAddOnInstance.new(
146
- @version,
147
- payload,
148
- account_sid: @solution[:account_sid],
149
- resource_sid: @solution[:resource_sid],
150
- )
151
- end
152
-
153
- ##
154
- # Provide a user friendly representation
155
- def to_s
156
- '#<Twilio.Api.V2010.AssignedAddOnList>'
157
- end
158
- end
159
-
160
- class AssignedAddOnPage < Page
161
- ##
162
- # Initialize the AssignedAddOnPage
163
- # @param [Version] version Version that contains the resource
164
- # @param [Response] response Response from the API
165
- # @param [Hash] solution Path solution for the resource
166
- # @param [String] account_sid The unique id of the Account that has installed this
167
- # Add-on.
168
- # @param [String] resource_sid The unique id of the Phone Number to which the
169
- # Add-on is assigned.
170
- # @return [AssignedAddOnPage] AssignedAddOnPage
171
- def initialize(version, response, solution)
172
- super(version, response)
173
-
174
- # Path Solution
175
- @solution = solution
176
- end
177
-
178
- ##
179
- # Build an instance of AssignedAddOnInstance
180
- # @param [Hash] payload Payload response from the API
181
- # @return [AssignedAddOnInstance] AssignedAddOnInstance
182
- def get_instance(payload)
183
- AssignedAddOnInstance.new(
184
- @version,
185
- payload,
186
- account_sid: @solution[:account_sid],
187
- resource_sid: @solution[:resource_sid],
188
- )
189
- end
190
-
191
- ##
192
- # Provide a user friendly representation
193
- def to_s
194
- '<Twilio.Api.V2010.AssignedAddOnPage>'
195
- end
196
- end
197
-
198
- class AssignedAddOnContext < InstanceContext
199
- ##
200
- # Initialize the AssignedAddOnContext
201
- # @param [Version] version Version that contains the resource
202
- # @param [String] account_sid The account_sid
203
- # @param [String] resource_sid The resource_sid
204
- # @param [String] sid The Installed Add-on Sid that uniquely identifies the
205
- # assignment
206
- # @return [AssignedAddOnContext] AssignedAddOnContext
207
- def initialize(version, account_sid, resource_sid, sid)
208
- super(version)
209
-
210
- # Path Solution
211
- @solution = {
212
- account_sid: account_sid,
213
- resource_sid: resource_sid,
214
- sid: sid,
215
- }
216
- @uri = "/Accounts/#{@solution[:account_sid]}/IncomingPhoneNumbers/#{@solution[:resource_sid]}/AssignedAddOns/#{@solution[:sid]}.json"
217
-
218
- # Dependents
219
- @extensions = nil
220
- end
221
-
222
- ##
223
- # Fetch a AssignedAddOnInstance
224
- # @return [AssignedAddOnInstance] Fetched AssignedAddOnInstance
225
- def fetch
226
- params = Twilio::Values.of({})
227
-
228
- payload = @version.fetch(
229
- 'GET',
230
- @uri,
231
- params,
232
- )
233
-
234
- AssignedAddOnInstance.new(
235
- @version,
236
- payload,
237
- account_sid: @solution[:account_sid],
238
- resource_sid: @solution[:resource_sid],
239
- sid: @solution[:sid],
240
- )
241
- end
242
-
243
- ##
244
- # Deletes the AssignedAddOnInstance
245
- # @return [Boolean] true if delete succeeds, true otherwise
246
- def delete
247
- @version.delete('delete', @uri)
248
- end
249
-
250
- ##
251
- # Access the extensions
252
- # @return [AssignedAddOnExtensionList] if a(n) AssignedAddOnExtensionList object was created.
253
- # @return [AssignedAddOnExtensionContext] if a(n) AssignedAddOnExtensionContext object was created.
254
- def extensions(sid=:unset)
255
- raise ArgumentError, 'sid cannot be nil' if sid.nil?
256
-
257
- if sid != :unset
258
- return AssignedAddOnExtensionContext.new(
259
- @version,
260
- @solution[:account_sid],
261
- @solution[:resource_sid],
262
- @solution[:sid],
263
- sid,
264
- )
265
- end
266
-
267
- unless @extensions
268
- @extensions = AssignedAddOnExtensionList.new(
269
- @version,
270
- account_sid: @solution[:account_sid],
271
- resource_sid: @solution[:resource_sid],
272
- assigned_add_on_sid: @solution[:sid],
273
- )
274
- end
275
-
276
- @extensions
277
- end
278
-
279
- ##
280
- # Provide a user friendly representation
281
- def to_s
282
- context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
283
- "#<Twilio.Api.V2010.AssignedAddOnContext #{context}>"
284
- end
285
- end
286
-
287
- class AssignedAddOnInstance < InstanceResource
288
- ##
289
- # Initialize the AssignedAddOnInstance
290
- # @param [Version] version Version that contains the resource
291
- # @param [Hash] payload payload that contains response from Twilio
292
- # @param [String] account_sid The unique id of the Account that has installed this
293
- # Add-on.
294
- # @param [String] resource_sid The unique id of the Phone Number to which the
295
- # Add-on is assigned.
296
- # @param [String] sid The Installed Add-on Sid that uniquely identifies the
297
- # assignment
298
- # @return [AssignedAddOnInstance] AssignedAddOnInstance
299
- def initialize(version, payload, account_sid: nil, resource_sid: nil, sid: nil)
300
- super(version)
301
-
302
- # Marshaled Properties
303
- @properties = {
304
- 'sid' => payload['sid'],
305
- 'account_sid' => payload['account_sid'],
306
- 'resource_sid' => payload['resource_sid'],
307
- 'friendly_name' => payload['friendly_name'],
308
- 'description' => payload['description'],
309
- 'configuration' => payload['configuration'],
310
- 'unique_name' => payload['unique_name'],
311
- 'date_created' => Twilio.deserialize_rfc2822(payload['date_created']),
312
- 'date_updated' => Twilio.deserialize_rfc2822(payload['date_updated']),
313
- 'uri' => payload['uri'],
314
- 'subresource_uris' => payload['subresource_uris'],
315
- }
316
-
317
- # Context
318
- @instance_context = nil
319
- @params = {
320
- 'account_sid' => account_sid,
321
- 'resource_sid' => resource_sid,
322
- 'sid' => sid || @properties['sid'],
323
- }
324
- end
325
-
326
- ##
327
- # Generate an instance context for the instance, the context is capable of
328
- # performing various actions. All instance actions are proxied to the context
329
- # @param [Version] version Version that contains the resource
330
- # @return [AssignedAddOnContext] AssignedAddOnContext for this AssignedAddOnInstance
331
- def context
332
- unless @instance_context
333
- @instance_context = AssignedAddOnContext.new(
334
- @version,
335
- @params['account_sid'],
336
- @params['resource_sid'],
337
- @params['sid'],
338
- )
339
- end
340
- @instance_context
341
- end
342
-
343
- def sid
344
- @properties['sid']
345
- end
346
-
347
- def account_sid
348
- @properties['account_sid']
349
- end
350
-
351
- def resource_sid
352
- @properties['resource_sid']
353
- end
354
-
355
- def friendly_name
356
- @properties['friendly_name']
357
- end
358
-
359
- def description
360
- @properties['description']
361
- end
362
-
363
- def configuration
364
- @properties['configuration']
365
- end
366
-
367
- def unique_name
368
- @properties['unique_name']
369
- end
370
-
371
- def date_created
372
- @properties['date_created']
373
- end
374
-
375
- def date_updated
376
- @properties['date_updated']
377
- end
378
-
379
- def uri
380
- @properties['uri']
381
- end
382
-
383
- def subresource_uris
384
- @properties['subresource_uris']
385
- end
386
-
387
- ##
388
- # Fetch a AssignedAddOnInstance
389
- # @return [AssignedAddOnInstance] Fetched AssignedAddOnInstance
390
- def fetch
391
- context.fetch
392
- end
393
-
394
- ##
395
- # Deletes the AssignedAddOnInstance
396
- # @return [Boolean] true if delete succeeds, true otherwise
397
- def delete
398
- context.delete
399
- end
400
-
401
- ##
402
- # Access the extensions
403
- # @return [extensions] extensions
404
- def extensions
405
- context.extensions
406
- end
407
-
408
- ##
409
- # Provide a user friendly representation
410
- def to_s
411
- values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
412
- "<Twilio.Api.V2010.AssignedAddOnInstance #{values}>"
413
- end
414
- end
415
- end
416
- end
417
- end
418
- end
419
- end
420
- end