dancroak-twilio 2.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. data/LICENSE +20 -0
  2. data/README.rdoc +39 -0
  3. data/Rakefile +49 -0
  4. data/VERSION.yml +4 -0
  5. data/lib/twilio.rb +42 -0
  6. data/lib/twilio/account.rb +12 -0
  7. data/lib/twilio/call.rb +33 -0
  8. data/lib/twilio/connection.rb +24 -0
  9. data/lib/twilio/incoming_phone_number.rb +16 -0
  10. data/lib/twilio/local_phone_number.rb +21 -0
  11. data/lib/twilio/notification.rb +20 -0
  12. data/lib/twilio/outgoing_caller_id.rb +32 -0
  13. data/lib/twilio/recording.rb +24 -0
  14. data/lib/twilio/toll_free_phone_number.rb +21 -0
  15. data/lib/twilio/twilio_object.rb +16 -0
  16. data/lib/twilio/verb.rb +315 -0
  17. data/test/fixtures/xml/account.xml +11 -0
  18. data/test/fixtures/xml/account_renamed.xml +11 -0
  19. data/test/fixtures/xml/call.xml +18 -0
  20. data/test/fixtures/xml/call_new.xml +14 -0
  21. data/test/fixtures/xml/calls.xml +36 -0
  22. data/test/fixtures/xml/incoming_phone_number.xml +12 -0
  23. data/test/fixtures/xml/incoming_phone_numbers.xml +24 -0
  24. data/test/fixtures/xml/notification.xml +19 -0
  25. data/test/fixtures/xml/notifications.xml +32 -0
  26. data/test/fixtures/xml/outgoing_caller_id.xml +10 -0
  27. data/test/fixtures/xml/outgoing_caller_id_new.xml +7 -0
  28. data/test/fixtures/xml/outgoing_caller_ids.xml +20 -0
  29. data/test/fixtures/xml/recording.xml +10 -0
  30. data/test/fixtures/xml/recordings.xml +20 -0
  31. data/test/fixtures/xml/transcription.xml +13 -0
  32. data/test/fixtures/xml/transcriptions.xml +26 -0
  33. data/test/fixtures/yml/verb_responses.yml +119 -0
  34. data/test/test_helper.rb +29 -0
  35. data/test/twilio/account_test.rb +35 -0
  36. data/test/twilio/call_test.rb +72 -0
  37. data/test/twilio/connection_test.rb +26 -0
  38. data/test/twilio/incoming_phone_number_test.rb +35 -0
  39. data/test/twilio/local_phone_number_test.rb +35 -0
  40. data/test/twilio/notification_test.rb +40 -0
  41. data/test/twilio/outgoing_caller_id_test.rb +51 -0
  42. data/test/twilio/recording_test.rb +53 -0
  43. data/test/twilio/toll_free_phone_number_test.rb +35 -0
  44. data/test/twilio/verb_test.rb +204 -0
  45. metadata +127 -0
metadata ADDED
@@ -0,0 +1,127 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dancroak-twilio
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.3.1
5
+ platform: ruby
6
+ authors:
7
+ - Phil Misiowiec
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-06-22 00:00:00 -07:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: builder
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: httparty
27
+ type: :runtime
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: "0"
34
+ version:
35
+ description:
36
+ email: github@webficient.com
37
+ executables: []
38
+
39
+ extensions: []
40
+
41
+ extra_rdoc_files:
42
+ - LICENSE
43
+ - README.rdoc
44
+ files:
45
+ - LICENSE
46
+ - README.rdoc
47
+ - Rakefile
48
+ - VERSION.yml
49
+ - lib/twilio.rb
50
+ - lib/twilio/account.rb
51
+ - lib/twilio/call.rb
52
+ - lib/twilio/connection.rb
53
+ - lib/twilio/incoming_phone_number.rb
54
+ - lib/twilio/local_phone_number.rb
55
+ - lib/twilio/notification.rb
56
+ - lib/twilio/outgoing_caller_id.rb
57
+ - lib/twilio/recording.rb
58
+ - lib/twilio/toll_free_phone_number.rb
59
+ - lib/twilio/twilio_object.rb
60
+ - lib/twilio/verb.rb
61
+ - test/fixtures/xml/account.xml
62
+ - test/fixtures/xml/account_renamed.xml
63
+ - test/fixtures/xml/call.xml
64
+ - test/fixtures/xml/call_new.xml
65
+ - test/fixtures/xml/calls.xml
66
+ - test/fixtures/xml/incoming_phone_number.xml
67
+ - test/fixtures/xml/incoming_phone_numbers.xml
68
+ - test/fixtures/xml/notification.xml
69
+ - test/fixtures/xml/notifications.xml
70
+ - test/fixtures/xml/outgoing_caller_id.xml
71
+ - test/fixtures/xml/outgoing_caller_id_new.xml
72
+ - test/fixtures/xml/outgoing_caller_ids.xml
73
+ - test/fixtures/xml/recording.xml
74
+ - test/fixtures/xml/recordings.xml
75
+ - test/fixtures/xml/transcription.xml
76
+ - test/fixtures/xml/transcriptions.xml
77
+ - test/fixtures/yml/verb_responses.yml
78
+ - test/test_helper.rb
79
+ - test/twilio/account_test.rb
80
+ - test/twilio/call_test.rb
81
+ - test/twilio/connection_test.rb
82
+ - test/twilio/incoming_phone_number_test.rb
83
+ - test/twilio/local_phone_number_test.rb
84
+ - test/twilio/notification_test.rb
85
+ - test/twilio/outgoing_caller_id_test.rb
86
+ - test/twilio/recording_test.rb
87
+ - test/twilio/toll_free_phone_number_test.rb
88
+ - test/twilio/verb_test.rb
89
+ has_rdoc: true
90
+ homepage: http://github.com/webficient/twilio
91
+ licenses:
92
+ post_install_message:
93
+ rdoc_options:
94
+ - --charset=UTF-8
95
+ require_paths:
96
+ - lib
97
+ required_ruby_version: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - ">="
100
+ - !ruby/object:Gem::Version
101
+ version: "0"
102
+ version:
103
+ required_rubygems_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: "0"
108
+ version:
109
+ requirements: []
110
+
111
+ rubyforge_project:
112
+ rubygems_version: 1.3.5
113
+ signing_key:
114
+ specification_version: 2
115
+ summary: Twilio API Client
116
+ test_files:
117
+ - test/test_helper.rb
118
+ - test/twilio/account_test.rb
119
+ - test/twilio/call_test.rb
120
+ - test/twilio/connection_test.rb
121
+ - test/twilio/incoming_phone_number_test.rb
122
+ - test/twilio/local_phone_number_test.rb
123
+ - test/twilio/notification_test.rb
124
+ - test/twilio/outgoing_caller_id_test.rb
125
+ - test/twilio/recording_test.rb
126
+ - test/twilio/toll_free_phone_number_test.rb
127
+ - test/twilio/verb_test.rb