twilio-test-toolkit 3.3.0 → 3.4.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -162,7 +162,23 @@ A common thing you'll want to do is inspect the various Say elements, and check
162
162
  @call.has_dial?("911") # Returns true if there's a <Dial> in the current scope
163
163
  # for the number. Partial matches are OK.
164
164
  @call.has_hangup? # Returns true if there's a <Hangup> in the current scope.
165
-
165
+
166
+ You can check the existence of any element by using the `#has_foo?` pattern
167
+ where `foo` is your element. Pass in an optional string to check that the string
168
+ is found in the element's inner text:
169
+
170
+ @call.has_sms?("Please make sure you foo the bar.")
171
+
172
+ You can also check that a given attribute exists on any element using
173
+ a `#has_bar_on_foo?` pattern:
174
+
175
+ @call.has_from_on_sms?("+18885551234")
176
+
177
+ Or for camel case attributes you can do either of the following:
178
+
179
+ @call.has_finishOnKey_on_record?("#")
180
+ @call.has_finish_on_key_on_record?("#")
181
+
166
182
  These methods are available on any CallScope.
167
183
 
168
184
  Gathers
@@ -241,4 +257,4 @@ Running Tests
241
257
  Credits
242
258
  ================
243
259
 
244
- TTT was put together by Jack Nichols [@jmongol](http://twitter.com/jmongol). MIT license.
260
+ TTT was put together by Jack Nichols [@jmongol](http://twitter.com/jmongol). MIT license.
@@ -1,6 +1,22 @@
1
1
  module TwilioTestToolkit
2
2
  # Models a scope within a call.
3
3
  class CallScope
4
+
5
+ # Note that el is case sensitive and must match the desired
6
+ # TwiML element. eg. Play (correct) vs play (incorrect).
7
+ def self.has_element(el, options = {})
8
+ define_method "has_#{el.downcase}?" do |inner = nil|
9
+ return has_element?(el, inner, options)
10
+ end
11
+ end
12
+
13
+ # method_missing? will take care of most cases, but for elements
14
+ # where the preference is to have exact matching, just add a
15
+ # definition like:
16
+ #
17
+ # has_element "Foo", :exact_inner_match => true
18
+ has_element "Play", :exact_inner_match => true
19
+
4
20
  # Stuff for redirects
5
21
  def has_redirect_to?(url)
6
22
  el = get_redirect_node
@@ -22,59 +38,6 @@ module TwilioTestToolkit
22
38
  request_for_twiml!(normalize_redirect_path(el.text), { :method => el[:method] }.merge(options))
23
39
  end
24
40
 
25
- # Stuff for Says
26
- def has_say?(say)
27
- @xml.xpath("Say").each do |s|
28
- return true if s.inner_text.include?(say)
29
- end
30
-
31
- return false
32
- end
33
-
34
- # Stuff for Plays
35
- def has_play?(play)
36
- @xml.xpath("Play").each do |s|
37
- return true if s.inner_text == play
38
- end
39
-
40
- return false
41
- end
42
-
43
- # Stuff for Dials
44
- def has_dial?(number)
45
- @xml.xpath("Dial").each do |s|
46
- return true if s.inner_text.include?(number)
47
- end
48
-
49
- return false
50
- end
51
-
52
- #Matches the specified action with action attribute on the dial element
53
- def has_action_on_dial?(action)
54
- action_on_dial = @xml.xpath("Dial").attribute("action")
55
- !!action_on_dial && action_on_dial.value == action
56
- end
57
-
58
- # Stuff for hangups
59
- def has_redirect?
60
- return !(@xml.at_xpath("Redirect").nil?)
61
- end
62
-
63
- def has_hangup?
64
- return !(@xml.at_xpath("Hangup").nil?)
65
- end
66
-
67
- def has_gather?
68
- return !(@xml.at_xpath("Gather").nil?)
69
- end
70
-
71
- # Within gather returns a scope that's tied to the specified gather.
72
- def within_gather(&block)
73
- gather_el = get_gather_node
74
- raise "No gather in scope" if gather_el.nil?
75
- yield(CallScope.from_xml(self, gather_el))
76
- end
77
-
78
41
  # Stuff for gatherers
79
42
  def gather?
80
43
  @xml.name == "Gather"
@@ -105,6 +68,48 @@ module TwilioTestToolkit
105
68
  root_call.request_for_twiml!(path, :digits => digits, :method => gather_method, :finish_on_key => gather_finish_on_key)
106
69
  end
107
70
 
71
+ # Make this easier to support TwiML elements...
72
+ def method_missing(meth, *args, &block)
73
+ # support any check for a given attribute on a given element
74
+ #
75
+ # eg. has_action_on_dial?, has_method_on_sip?, etc.
76
+ #
77
+ # Attribute-checking appears to be case-sensitive, which x means:
78
+ #
79
+ # has_finishOnKey_on_record?("#")
80
+ #
81
+ # I'm not crazy about this mixed case, so we can also do a more
82
+ # Rubyish way:
83
+ #
84
+ # has_finish_on_key_on_record?("#")
85
+ #
86
+ if meth.to_s =~ /^has_([a-zA-Z_]+)_on_([a-zA-Z]+)\?$/
87
+ has_attr_on_element?($2, $1, *args, &block)
88
+
89
+ # support any check for the existence of a given element
90
+ # with an optional check on the inner_text.
91
+ elsif meth.to_s =~ /^has_([a-zA-Z]+)\?$/
92
+ has_element?($1, *args, &block)
93
+
94
+ # get a given element node
95
+ elsif meth.to_s =~ /^get_([a-z]+)_node$/
96
+ get_element_node($1, *args, &block)
97
+
98
+ # run a block within a given node context
99
+ elsif meth.to_s =~ /^within_([a-z]+)$/
100
+ within_element($1, *args, &block)
101
+
102
+ else
103
+ super # You *must* call super if you don't handle the
104
+ # method, otherwise you'll mess up Ruby's method
105
+ # lookup.
106
+ end
107
+ end
108
+
109
+ def respond_to_missing?(method_name, include_private = false)
110
+ method_name.to_s.match(/^(has_|get_[a-z]+_node|within_)/) || super
111
+ end
112
+
108
113
  # Some basic accessors
109
114
  def current_path
110
115
  @current_path
@@ -119,14 +124,6 @@ module TwilioTestToolkit
119
124
  end
120
125
 
121
126
  private
122
- def get_redirect_node
123
- @xml.at_xpath("Redirect")
124
- end
125
-
126
- def get_gather_node
127
- @xml.at_xpath("Gather")
128
- end
129
-
130
127
  def formatted_digits(digits, options = {})
131
128
  if digits.nil?
132
129
  ''
@@ -137,6 +134,49 @@ module TwilioTestToolkit
137
134
  end
138
135
  end
139
136
 
137
+ def get_element_node(el)
138
+ el[0] = el[0,1].upcase
139
+ @xml.at_xpath(el)
140
+ end
141
+
142
+ # Within element returns a scope that's tied to the specified element
143
+ def within_element(el, &block)
144
+ element_node = get_element_node(el)
145
+
146
+ raise "No el in scope" if element_node.nil?
147
+ yield(CallScope.from_xml(self, element_node))
148
+ end
149
+
150
+ def has_attr_on_element?(el, attr, value)
151
+ el[0] = el[0,1].upcase
152
+ # convert snake case to lower camelCase
153
+ if attr.match(/_/)
154
+ attr = camel_case_lower(attr)
155
+ end
156
+
157
+ attr_on_el = @xml.xpath(el).attribute(attr)
158
+ !!attr_on_el && attr_on_el.value == value
159
+ end
160
+
161
+ def has_element?(el, inner = nil, options = {})
162
+ el[0] = el[0,1].upcase
163
+ return !(@xml.at_xpath(el).nil?) if inner.nil?
164
+
165
+ @xml.xpath(el).each do |s|
166
+ if !options[:exact_inner_match].nil? && options[:exact_inner_match] == true
167
+ return true if s.inner_text.strip == inner
168
+ else
169
+ return true if s.inner_text.include?(inner)
170
+ end
171
+ end
172
+
173
+ return false
174
+ end
175
+
176
+ def camel_case_lower(subject)
177
+ subject.split('_').inject([]){ |buffer,e| buffer.push(buffer.empty? ? e : e.capitalize) }.join
178
+ end
179
+
140
180
  protected
141
181
  # New object creation
142
182
  def self.from_xml(parent, xml)
@@ -1,3 +1,3 @@
1
1
  module TwilioTestToolkit
2
- VERSION = "3.3.0"
2
+ VERSION = "3.4.0"
3
3
  end
@@ -0,0 +1,6 @@
1
+ <Dial>
2
+ <Sip>
3
+ <Uri username="foo" password="bar">18885551234@sip.foo.bar</Uri>
4
+ </Sip>
5
+ </Dial>
6
+
@@ -0,0 +1,2 @@
1
+ <Record action="http://example.org:3000/record_this_call" maxLength="20" finishOnKey="*" />
2
+
@@ -7,8 +7,10 @@ Dummy::Application.routes.draw do
7
7
  post "test_hangup", :on => :collection
8
8
  post "test_dial_with_no_action", :on => :collection
9
9
  post "test_dial_with_action", :on => :collection
10
+ post "test_dial_with_sip", :on => :collection
10
11
  post "test_redirect", :on => :collection
11
12
  post "test_say", :on => :collection
12
13
  post "test_play", :on => :collection
14
+ post "test_record", :on => :collection
13
15
  end
14
16
  end
@@ -0,0 +1,16 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 0) do
15
+
16
+ end
Binary file
@@ -0,0 +1,15 @@
1
+ Connecting to database specified by database.yml
2
+  (0.1ms) select sqlite_version(*)
3
+  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
6
+ Connecting to database specified by database.yml
7
+  (0.0ms) select sqlite_version(*)
8
+  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
9
+ Connecting to database specified by database.yml
10
+  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
11
+  (0.0ms) select sqlite_version(*)
12
+  (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
13
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
14
+  (0.0ms) SELECT version FROM "schema_migrations"
15
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
@@ -2622,3 +2622,765 @@ Started GET "/twilio/test_start?format=xml&CallSid=1234567&From=2065551212&Digit
2622
2622
  Processing by TwilioController#test_start as XML
2623
2623
  Parameters: {"CallSid"=>"1234567", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"machine", "CallStatus"=>"in-progress"}
2624
2624
  Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2625
+ Connecting to database specified by database.yml
2626
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2627
+ Processing by TwilioController#test_start as XML
2628
+ Parameters: {"CallSid"=>"826566cd-00d4-40b2-8b1f-9f998ee05ff0", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2629
+ Rendered twilio/test_start.xml.erb within layouts/twilio.layout (1.8ms)
2630
+ Completed 200 OK in 31ms (Views: 30.2ms | ActiveRecord: 0.0ms)
2631
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2632
+ Processing by TwilioController#test_start as XML
2633
+ Parameters: {"CallSid"=>"a16340ea-edb3-45d4-b66e-16f3dfee687d", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2634
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2635
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2636
+ Processing by TwilioController#test_start as XML
2637
+ Parameters: {"CallSid"=>"57c0279c-c95f-4297-bb62-a8ad5b310e2a", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2638
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2639
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2640
+ Processing by TwilioController#test_start as XML
2641
+ Parameters: {"CallSid"=>"07bba5c7-ece1-499b-9d20-053697496972", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2642
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2643
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2644
+ Processing by TwilioController#test_start as XML
2645
+ Parameters: {"CallSid"=>"dc26ddc9-63ac-4f02-af77-8d64c4d38fb7", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2646
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2647
+ Started POST "/twilio/test_redirect" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2648
+ Processing by TwilioController#test_redirect as XML
2649
+ Parameters: {"CallSid"=>"1845abd2-4a49-4cc4-90f1-91cd60fe4262", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2650
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
2651
+ Started POST "/twilio/test_redirect" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2652
+ Processing by TwilioController#test_redirect as XML
2653
+ Parameters: {"CallSid"=>"33356d28-76be-458c-a008-50ffe234b3a1", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2654
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2655
+ Started POST "/twilio/test_redirect" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2656
+ Processing by TwilioController#test_redirect as XML
2657
+ Parameters: {"CallSid"=>"48131404-1e8a-4df5-a7fa-b020364890ec", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2658
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2659
+ Started POST "/twilio/test_redirect" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2660
+ Processing by TwilioController#test_redirect as XML
2661
+ Parameters: {"CallSid"=>"0b628098-fd88-4de7-acaf-423db9e9bc53", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2662
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2663
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2664
+ Processing by TwilioController#test_start as XML
2665
+ Parameters: {"CallSid"=>"0b628098-fd88-4de7-acaf-423db9e9bc53", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2666
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2667
+ Started POST "/twilio/test_redirect" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2668
+ Processing by TwilioController#test_redirect as XML
2669
+ Parameters: {"CallSid"=>"d8e4cdbe-849e-49d3-b2dd-53e1b7a8a99e", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2670
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2671
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2672
+ Processing by TwilioController#test_start as XML
2673
+ Parameters: {"CallSid"=>"d8e4cdbe-849e-49d3-b2dd-53e1b7a8a99e", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2674
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2675
+ Started POST "/twilio/test_redirect" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2676
+ Processing by TwilioController#test_redirect as XML
2677
+ Parameters: {"CallSid"=>"d042ffdd-4f72-4897-acba-a03e38feea53", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2678
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2679
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2680
+ Processing by TwilioController#test_start as XML
2681
+ Parameters: {"CallSid"=>"d042ffdd-4f72-4897-acba-a03e38feea53", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2682
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2683
+ Started POST "/twilio/test_redirect" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2684
+ Processing by TwilioController#test_redirect as XML
2685
+ Parameters: {"CallSid"=>"0359906f-cca2-4b1b-b572-577da95a143b", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2686
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2687
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2688
+ Processing by TwilioController#test_start as XML
2689
+ Parameters: {"CallSid"=>"0359906f-cca2-4b1b-b572-577da95a143b", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"completed"}
2690
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2691
+ Started POST "/twilio/test_redirect" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2692
+ Processing by TwilioController#test_redirect as XML
2693
+ Parameters: {"CallSid"=>"e1f24f27-2ab9-4492-9537-cdba08fed04e", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2694
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2695
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2696
+ Processing by TwilioController#test_start as XML
2697
+ Parameters: {"CallSid"=>"e1f24f27-2ab9-4492-9537-cdba08fed04e", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"completed"}
2698
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2699
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2700
+ Processing by TwilioController#test_say as XML
2701
+ Parameters: {"CallSid"=>"bde26c41-9c2b-422a-af19-014d9c11cb7d", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2702
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
2703
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2704
+ Processing by TwilioController#test_say as XML
2705
+ Parameters: {"CallSid"=>"fe52952f-6a94-4f50-bf71-5070f884c947", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2706
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2707
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2708
+ Processing by TwilioController#test_say as XML
2709
+ Parameters: {"CallSid"=>"ffed12b8-bdd5-43a0-8528-c0ea4cc29dae", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2710
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2711
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2712
+ Processing by TwilioController#test_say as XML
2713
+ Parameters: {"CallSid"=>"29fd7aea-7084-4762-9908-c269a2cee8da", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2714
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2715
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2716
+ Processing by TwilioController#test_say as XML
2717
+ Parameters: {"CallSid"=>"e7c309cd-4a2f-40df-9615-3de4e4407367", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2718
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2719
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2720
+ Processing by TwilioController#test_say as XML
2721
+ Parameters: {"CallSid"=>"5021886b-e119-44b7-988c-24a1165313d3", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2722
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2723
+ Started POST "/twilio/test_play" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2724
+ Processing by TwilioController#test_play as XML
2725
+ Parameters: {"CallSid"=>"ebe393d8-efab-46bd-9a68-ae262f22d32f", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2726
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
2727
+ Started POST "/twilio/test_play" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2728
+ Processing by TwilioController#test_play as XML
2729
+ Parameters: {"CallSid"=>"a95a46c6-c724-4420-adc7-152d3319b81f", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2730
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2731
+ Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2732
+ Processing by TwilioController#test_dial_with_action as XML
2733
+ Parameters: {"CallSid"=>"618f823b-ec56-47d0-9778-0291ad3add54", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2734
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
2735
+ Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2736
+ Processing by TwilioController#test_dial_with_action as XML
2737
+ Parameters: {"CallSid"=>"ffb72e7f-b97b-4d15-8b13-24c3e0749af7", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2738
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2739
+ Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2740
+ Processing by TwilioController#test_dial_with_action as XML
2741
+ Parameters: {"CallSid"=>"f32a118c-57ad-4708-83b8-0836e0128370", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2742
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2743
+ Started POST "/twilio/test_dial_with_no_action" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2744
+ Processing by TwilioController#test_dial_with_no_action as XML
2745
+ Parameters: {"CallSid"=>"c820071c-ddc3-41e3-9a82-6b1723461969", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2746
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
2747
+ Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2748
+ Processing by TwilioController#test_dial_with_action as XML
2749
+ Parameters: {"CallSid"=>"119a7529-94c2-444b-9266-5128cbe2fda2", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2750
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2751
+ Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2752
+ Processing by TwilioController#test_dial_with_action as XML
2753
+ Parameters: {"CallSid"=>"9545da4e-6c97-4e8a-910d-99d107233f51", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2754
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2755
+ Started POST "/twilio/test_hangup" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2756
+ Processing by TwilioController#test_hangup as XML
2757
+ Parameters: {"CallSid"=>"f79ddafb-1ae1-4b0d-8e0f-b7655482b3fb", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2758
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
2759
+ Started POST "/twilio/test_hangup" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2760
+ Processing by TwilioController#test_hangup as XML
2761
+ Parameters: {"CallSid"=>"88e83966-49dd-4cac-851e-2772527b6dd6", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2762
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2763
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2764
+ Processing by TwilioController#test_start as XML
2765
+ Parameters: {"CallSid"=>"e0e6181a-e037-4d1f-ab86-9ab0fa6dd487", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2766
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2767
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2768
+ Processing by TwilioController#test_start as XML
2769
+ Parameters: {"CallSid"=>"76fe80c8-22a1-4695-912c-9731ea9622c8", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2770
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2771
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2772
+ Processing by TwilioController#test_start as XML
2773
+ Parameters: {"CallSid"=>"767880a8-855a-4028-87ed-b7105ee59c71", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2774
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2775
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2776
+ Processing by TwilioController#test_start as XML
2777
+ Parameters: {"CallSid"=>"2eeafda9-2f77-4298-bb90-a7a347220ff3", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2778
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2779
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2780
+ Processing by TwilioController#test_start as XML
2781
+ Parameters: {"CallSid"=>"23cb80dd-3509-4669-ac26-d11f5000db72", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2782
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2783
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2784
+ Processing by TwilioController#test_start as XML
2785
+ Parameters: {"CallSid"=>"87283ac3-c815-48a5-baff-b39cdea8a2de", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2786
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2787
+ Started POST "/twilio/test_action" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2788
+ Processing by TwilioController#test_action as XML
2789
+ Parameters: {"CallSid"=>"87283ac3-c815-48a5-baff-b39cdea8a2de", "From"=>"2065551212", "Digits"=>"98765", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2790
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2791
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2792
+ Processing by TwilioController#test_start as XML
2793
+ Parameters: {"CallSid"=>"90ad740d-cd0c-47a2-b8ae-ab21a14edf74", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2794
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2795
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2796
+ Processing by TwilioController#test_start as XML
2797
+ Parameters: {"CallSid"=>"f22e5f04-d371-4221-9492-db2a1fafbb75", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2798
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2799
+ Started POST "/twilio/test_action" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2800
+ Processing by TwilioController#test_action as XML
2801
+ Parameters: {"CallSid"=>"f22e5f04-d371-4221-9492-db2a1fafbb75", "From"=>"2065551212", "Digits"=>"98765", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2802
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2803
+ Started POST "/twilio/test_gather_finish_on_asterisk" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2804
+ Processing by TwilioController#test_gather_finish_on_asterisk as XML
2805
+ Parameters: {"CallSid"=>"ee04de57-2109-41ec-b769-d3c8631abbb5", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2806
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
2807
+ Started POST "/twilio/test_action" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2808
+ Processing by TwilioController#test_action as XML
2809
+ Parameters: {"CallSid"=>"ee04de57-2109-41ec-b769-d3c8631abbb5", "From"=>"2065551212", "Digits"=>"98765", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2810
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2811
+ Started POST "/twilio/test_gather_finish_on_asterisk" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2812
+ Processing by TwilioController#test_gather_finish_on_asterisk as XML
2813
+ Parameters: {"CallSid"=>"170c2375-36f4-4304-bdd1-7915aaf76aa1", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2814
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2815
+ Started POST "/twilio/test_action" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2816
+ Processing by TwilioController#test_action as XML
2817
+ Parameters: {"CallSid"=>"170c2375-36f4-4304-bdd1-7915aaf76aa1", "From"=>"2065551212", "Digits"=>"98765", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2818
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2819
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2820
+ Processing by TwilioController#test_say as XML
2821
+ Parameters: {"CallSid"=>"ada0bcf8-1dbb-4278-aa4c-b755fb719e45", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2822
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2823
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2824
+ Processing by TwilioController#test_say as XML
2825
+ Parameters: {"CallSid"=>"8d86eb18-15cf-42ba-9d3f-f0c93284be33", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2826
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2827
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2828
+ Processing by TwilioController#test_say as XML
2829
+ Parameters: {"CallSid"=>"faf8eb1e-3d08-43e8-9747-c064f9858ced", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2830
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2831
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2832
+ Processing by TwilioController#test_say as XML
2833
+ Parameters: {"CallSid"=>"5526fd6b-8332-483c-af1f-3e41c5d2c21b", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2834
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2835
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2836
+ Processing by TwilioController#test_start as XML
2837
+ Parameters: {"CallSid"=>"85558ad5-21fc-4be2-aefd-78c7b1d2310d", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2838
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2839
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2840
+ Processing by TwilioController#test_start as XML
2841
+ Parameters: {"CallSid"=>"4eeb1de1-4e4a-44da-8c64-6c27ae61fe1a", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2842
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2843
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2844
+ Processing by TwilioController#test_start as XML
2845
+ Parameters: {"CallSid"=>"d44a27d8-3683-4a99-b4f9-2dd1972d8918", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2846
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2847
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2848
+ Processing by TwilioController#test_start as XML
2849
+ Parameters: {"CallSid"=>"d5202717-dbdf-4608-82b1-3ceedd067e3e", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2850
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2851
+ Started GET "/twilio/test_start?format=xml&CallSid=1234567&From=2065551212&Digits=&To=2065553434&AnsweredBy=machine&CallStatus=in-progress" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2852
+ Processing by TwilioController#test_start as XML
2853
+ Parameters: {"CallSid"=>"1234567", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"machine", "CallStatus"=>"in-progress"}
2854
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2855
+ Started GET "/twilio/test_start?format=xml&CallSid=1234567&From=2065551212&Digits=&To=2065553434&AnsweredBy=machine&CallStatus=in-progress" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2856
+ Processing by TwilioController#test_start as XML
2857
+ Parameters: {"CallSid"=>"1234567", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"machine", "CallStatus"=>"in-progress"}
2858
+ Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2859
+ Started GET "/twilio/test_start?format=xml&CallSid=1234567&From=2065551212&Digits=&To=2065553434&AnsweredBy=machine&CallStatus=in-progress" for 127.0.0.1 at 2013-11-20 19:59:36 -0800
2860
+ Processing by TwilioController#test_start as XML
2861
+ Parameters: {"CallSid"=>"1234567", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"machine", "CallStatus"=>"in-progress"}
2862
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2863
+ Connecting to database specified by database.yml
2864
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2865
+ Processing by TwilioController#test_start as XML
2866
+ Parameters: {"CallSid"=>"217cfd4b-187f-4991-93fa-0d66b3e084ae", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2867
+ Rendered twilio/test_start.xml.erb within layouts/twilio.layout (18.1ms)
2868
+ Completed 200 OK in 24.2ms (Views: 24.0ms | ActiveRecord: 0.0ms)
2869
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2870
+ Processing by TwilioController#test_start as XML
2871
+ Parameters: {"CallSid"=>"3c745f33-a80b-4b82-83ac-8488745950de", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2872
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2873
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2874
+ Processing by TwilioController#test_start as XML
2875
+ Parameters: {"CallSid"=>"79580164-2d4c-4df1-8106-932c3c1dda3a", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2876
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2877
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2878
+ Processing by TwilioController#test_start as XML
2879
+ Parameters: {"CallSid"=>"437b421c-c5a7-476f-81b4-a1199b812524", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2880
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2881
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2882
+ Processing by TwilioController#test_start as XML
2883
+ Parameters: {"CallSid"=>"99df9b32-e794-45b3-8952-276f0d98c256", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2884
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2885
+ Started POST "/twilio/test_redirect" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2886
+ Processing by TwilioController#test_redirect as XML
2887
+ Parameters: {"CallSid"=>"ee94fea4-3a04-4419-a104-002f81a263f5", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2888
+ Completed 200 OK in 1.1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
2889
+ Started POST "/twilio/test_redirect" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2890
+ Processing by TwilioController#test_redirect as XML
2891
+ Parameters: {"CallSid"=>"dd503191-6630-48bb-9b42-186bb16ed3de", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2892
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2893
+ Started POST "/twilio/test_redirect" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2894
+ Processing by TwilioController#test_redirect as XML
2895
+ Parameters: {"CallSid"=>"92d11dc4-f205-44f7-aa23-e4840e77bd3e", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2896
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2897
+ Started POST "/twilio/test_redirect" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2898
+ Processing by TwilioController#test_redirect as XML
2899
+ Parameters: {"CallSid"=>"dfbf9b35-cfd3-4de0-8820-49e5078c293a", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2900
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2901
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2902
+ Processing by TwilioController#test_start as XML
2903
+ Parameters: {"CallSid"=>"dfbf9b35-cfd3-4de0-8820-49e5078c293a", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2904
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2905
+ Started POST "/twilio/test_redirect" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2906
+ Processing by TwilioController#test_redirect as XML
2907
+ Parameters: {"CallSid"=>"94f4d1f3-00d6-45a4-bebd-aa9e2ee94c1a", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2908
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2909
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2910
+ Processing by TwilioController#test_start as XML
2911
+ Parameters: {"CallSid"=>"94f4d1f3-00d6-45a4-bebd-aa9e2ee94c1a", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2912
+ Completed 200 OK in 0.3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2913
+ Started POST "/twilio/test_redirect" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2914
+ Processing by TwilioController#test_redirect as XML
2915
+ Parameters: {"CallSid"=>"79db1d4a-e97f-443a-9d2f-2f5466b861ff", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2916
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2917
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2918
+ Processing by TwilioController#test_start as XML
2919
+ Parameters: {"CallSid"=>"79db1d4a-e97f-443a-9d2f-2f5466b861ff", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2920
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2921
+ Started POST "/twilio/test_redirect" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2922
+ Processing by TwilioController#test_redirect as XML
2923
+ Parameters: {"CallSid"=>"ed4bc01b-9af9-4f5d-b14b-06b47fe3e4b3", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2924
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2925
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2926
+ Processing by TwilioController#test_start as XML
2927
+ Parameters: {"CallSid"=>"ed4bc01b-9af9-4f5d-b14b-06b47fe3e4b3", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"completed"}
2928
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2929
+ Started POST "/twilio/test_redirect" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2930
+ Processing by TwilioController#test_redirect as XML
2931
+ Parameters: {"CallSid"=>"9e950848-6ffe-4a2e-a2b8-652aa42f2705", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2932
+ Completed 200 OK in 0.6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2933
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2934
+ Processing by TwilioController#test_start as XML
2935
+ Parameters: {"CallSid"=>"9e950848-6ffe-4a2e-a2b8-652aa42f2705", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"completed"}
2936
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2937
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2938
+ Processing by TwilioController#test_say as XML
2939
+ Parameters: {"CallSid"=>"67b188c3-dcb9-4d5c-9e92-4f1c069a1f37", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2940
+ Completed 200 OK in 1.0ms (Views: 0.8ms | ActiveRecord: 0.0ms)
2941
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2942
+ Processing by TwilioController#test_say as XML
2943
+ Parameters: {"CallSid"=>"de6a61e9-b201-4883-a2e6-6a59b85ef5ba", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2944
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2945
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2946
+ Processing by TwilioController#test_say as XML
2947
+ Parameters: {"CallSid"=>"a93b1900-c75d-4683-9d60-1b84a12e71e2", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2948
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2949
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2950
+ Processing by TwilioController#test_say as XML
2951
+ Parameters: {"CallSid"=>"657372e0-aef4-40e1-9468-a8750686531a", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2952
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2953
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2954
+ Processing by TwilioController#test_say as XML
2955
+ Parameters: {"CallSid"=>"77e80998-8588-4de4-b4cd-7770484edbed", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2956
+ Completed 200 OK in 0.3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2957
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2958
+ Processing by TwilioController#test_say as XML
2959
+ Parameters: {"CallSid"=>"b8191ecd-cd98-4392-899c-757f3dde140b", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2960
+ Completed 200 OK in 0.3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2961
+ Started POST "/twilio/test_play" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2962
+ Processing by TwilioController#test_play as XML
2963
+ Parameters: {"CallSid"=>"d0a7557f-111a-434a-99d8-f98d331e6a0f", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2964
+ Completed 200 OK in 1.1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
2965
+ Started POST "/twilio/test_play" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2966
+ Processing by TwilioController#test_play as XML
2967
+ Parameters: {"CallSid"=>"51b202fb-2757-4996-b3b1-28187b5af019", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2968
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2969
+ Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2970
+ Processing by TwilioController#test_dial_with_action as XML
2971
+ Parameters: {"CallSid"=>"33ffd7ac-36d9-4893-bf7a-6b82e0f4fae0", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2972
+ Completed 200 OK in 1.1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
2973
+ Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2974
+ Processing by TwilioController#test_dial_with_action as XML
2975
+ Parameters: {"CallSid"=>"92ec1853-8096-4f9e-800f-9e5b4aadb63b", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2976
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2977
+ Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2978
+ Processing by TwilioController#test_dial_with_action as XML
2979
+ Parameters: {"CallSid"=>"0e4d0283-243c-4c8d-851b-d94e38316e32", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2980
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2981
+ Started POST "/twilio/test_dial_with_no_action" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2982
+ Processing by TwilioController#test_dial_with_no_action as XML
2983
+ Parameters: {"CallSid"=>"cf7c91e5-a9c5-49c0-96fd-f3527553486d", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2984
+ Completed 200 OK in 1.0ms (Views: 0.7ms | ActiveRecord: 0.0ms)
2985
+ Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2986
+ Processing by TwilioController#test_dial_with_action as XML
2987
+ Parameters: {"CallSid"=>"1fbb9779-eeb0-46fc-85ac-880b933e92bb", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2988
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2989
+ Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2990
+ Processing by TwilioController#test_dial_with_action as XML
2991
+ Parameters: {"CallSid"=>"31dee30b-8b61-4f55-9fc9-71eda35d828c", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2992
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2993
+ Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2994
+ Processing by TwilioController#test_dial_with_action as XML
2995
+ Parameters: {"CallSid"=>"07366cd4-a13f-4d11-8fde-5e818182af7b", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
2996
+ Completed 200 OK in 0.3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2997
+ Started POST "/twilio/test_dial_with_sip" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
2998
+ Processing by TwilioController#test_dial_with_sip as XML
2999
+ Parameters: {"CallSid"=>"42973a6d-36db-406a-8782-5e24c108847d", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3000
+ Completed 200 OK in 1.0ms (Views: 0.7ms | ActiveRecord: 0.0ms)
3001
+ Started POST "/twilio/test_hangup" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
3002
+ Processing by TwilioController#test_hangup as XML
3003
+ Parameters: {"CallSid"=>"85be9c17-6c4c-4958-a488-97e0fad5851c", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3004
+ Completed 200 OK in 1.1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
3005
+ Started POST "/twilio/test_hangup" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
3006
+ Processing by TwilioController#test_hangup as XML
3007
+ Parameters: {"CallSid"=>"577f09c3-e361-4dbd-9ee0-5284304e11ad", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3008
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3009
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
3010
+ Processing by TwilioController#test_start as XML
3011
+ Parameters: {"CallSid"=>"3d26eb4c-45a8-481c-acff-50a1266aed1c", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3012
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3013
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
3014
+ Processing by TwilioController#test_start as XML
3015
+ Parameters: {"CallSid"=>"3777067b-ce1c-4a05-a2ca-a91fa00b4de3", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3016
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3017
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
3018
+ Processing by TwilioController#test_start as XML
3019
+ Parameters: {"CallSid"=>"7a537b86-d66b-4210-bd64-c30d5dfc4fa0", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3020
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3021
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:22:47 -0800
3022
+ Processing by TwilioController#test_start as XML
3023
+ Parameters: {"CallSid"=>"d95efba5-8f4c-4d24-bfd2-e864c226ff34", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3024
+ Completed 200 OK in 0.7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
3025
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:22:48 -0800
3026
+ Processing by TwilioController#test_start as XML
3027
+ Parameters: {"CallSid"=>"f78d75d0-4fec-47e7-a5a8-b6a0e31dd55a", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3028
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3029
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:22:48 -0800
3030
+ Processing by TwilioController#test_start as XML
3031
+ Parameters: {"CallSid"=>"d0f18457-bb6a-45e7-9ad7-d4f437a60450", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3032
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3033
+ Started POST "/twilio/test_action" for 127.0.0.1 at 2014-01-13 21:22:48 -0800
3034
+ Processing by TwilioController#test_action as XML
3035
+ Parameters: {"CallSid"=>"d0f18457-bb6a-45e7-9ad7-d4f437a60450", "From"=>"2065551212", "Digits"=>"98765", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3036
+ Completed 200 OK in 1.4ms (Views: 1.1ms | ActiveRecord: 0.0ms)
3037
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:22:48 -0800
3038
+ Processing by TwilioController#test_start as XML
3039
+ Parameters: {"CallSid"=>"60a0b2ca-5e81-4b94-a968-12e423246a29", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3040
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3041
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:22:48 -0800
3042
+ Processing by TwilioController#test_start as XML
3043
+ Parameters: {"CallSid"=>"b6db92f8-ec18-4f88-9968-b53f3c4fe9a0", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3044
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3045
+ Started POST "/twilio/test_action" for 127.0.0.1 at 2014-01-13 21:22:48 -0800
3046
+ Processing by TwilioController#test_action as XML
3047
+ Parameters: {"CallSid"=>"b6db92f8-ec18-4f88-9968-b53f3c4fe9a0", "From"=>"2065551212", "Digits"=>"98765", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3048
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3049
+ Started POST "/twilio/test_gather_finish_on_asterisk" for 127.0.0.1 at 2014-01-13 21:22:48 -0800
3050
+ Processing by TwilioController#test_gather_finish_on_asterisk as XML
3051
+ Parameters: {"CallSid"=>"c68b85a6-37bc-4d8a-98f7-621e00f6c73d", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3052
+ Completed 200 OK in 1.2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
3053
+ Started POST "/twilio/test_action" for 127.0.0.1 at 2014-01-13 21:22:48 -0800
3054
+ Processing by TwilioController#test_action as XML
3055
+ Parameters: {"CallSid"=>"c68b85a6-37bc-4d8a-98f7-621e00f6c73d", "From"=>"2065551212", "Digits"=>"98765", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3056
+ Completed 200 OK in 0.4ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3057
+ Started POST "/twilio/test_gather_finish_on_asterisk" for 127.0.0.1 at 2014-01-13 21:22:48 -0800
3058
+ Processing by TwilioController#test_gather_finish_on_asterisk as XML
3059
+ Parameters: {"CallSid"=>"36562ab0-201b-4b7b-845a-89020a19cd13", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3060
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3061
+ Started POST "/twilio/test_action" for 127.0.0.1 at 2014-01-13 21:22:48 -0800
3062
+ Processing by TwilioController#test_action as XML
3063
+ Parameters: {"CallSid"=>"36562ab0-201b-4b7b-845a-89020a19cd13", "From"=>"2065551212", "Digits"=>"98765", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3064
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3065
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2014-01-13 21:22:48 -0800
3066
+ Processing by TwilioController#test_say as XML
3067
+ Parameters: {"CallSid"=>"5faaf0f3-a9f5-4ff2-ab89-52c2ac957207", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3068
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3069
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2014-01-13 21:22:48 -0800
3070
+ Processing by TwilioController#test_say as XML
3071
+ Parameters: {"CallSid"=>"6093e7dd-cac5-4c22-82a2-a04ef2abf2a2", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3072
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3073
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2014-01-13 21:22:48 -0800
3074
+ Processing by TwilioController#test_say as XML
3075
+ Parameters: {"CallSid"=>"184ee53c-7443-4702-afbb-771f512d38e2", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3076
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3077
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2014-01-13 21:22:48 -0800
3078
+ Processing by TwilioController#test_say as XML
3079
+ Parameters: {"CallSid"=>"a797bc98-9e01-4d1c-9112-df5d8d606b4a", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3080
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3081
+ Started POST "/twilio/test_record" for 127.0.0.1 at 2014-01-13 21:22:48 -0800
3082
+ Processing by TwilioController#test_record as XML
3083
+ Parameters: {"CallSid"=>"bd796c43-c27a-4353-8cbf-f354478e46b2", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3084
+ Completed 200 OK in 1.0ms (Views: 0.7ms | ActiveRecord: 0.0ms)
3085
+ Started POST "/twilio/test_record" for 127.0.0.1 at 2014-01-13 21:22:48 -0800
3086
+ Processing by TwilioController#test_record as XML
3087
+ Parameters: {"CallSid"=>"3fe0be4d-fab3-4411-8db1-bd2895d940c0", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3088
+ Completed 200 OK in 0.3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3089
+ Started POST "/twilio/test_record" for 127.0.0.1 at 2014-01-13 21:22:48 -0800
3090
+ Processing by TwilioController#test_record as XML
3091
+ Parameters: {"CallSid"=>"bef2d166-cd82-405d-bd0b-ca07436619cd", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3092
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3093
+ Started POST "/twilio/test_record" for 127.0.0.1 at 2014-01-13 21:22:48 -0800
3094
+ Processing by TwilioController#test_record as XML
3095
+ Parameters: {"CallSid"=>"c6cb81a9-8785-417c-9c92-36fd4ee95a97", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3096
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3097
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:22:48 -0800
3098
+ Processing by TwilioController#test_start as XML
3099
+ Parameters: {"CallSid"=>"eeccfa86-7b73-4332-95e4-6f2a2b841bc4", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3100
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3101
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:22:48 -0800
3102
+ Processing by TwilioController#test_start as XML
3103
+ Parameters: {"CallSid"=>"3d12561d-a0ef-4c57-bf29-ce60f3d94489", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3104
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3105
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:22:48 -0800
3106
+ Processing by TwilioController#test_start as XML
3107
+ Parameters: {"CallSid"=>"5029e611-7964-4e2e-b92d-b6bea27f6c28", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3108
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3109
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:22:48 -0800
3110
+ Processing by TwilioController#test_start as XML
3111
+ Parameters: {"CallSid"=>"404342fe-1784-429a-8067-79171df6822e", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3112
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3113
+ Started GET "/twilio/test_start?format=xml&CallSid=1234567&From=2065551212&Digits=&To=2065553434&AnsweredBy=machine&CallStatus=in-progress" for 127.0.0.1 at 2014-01-13 21:22:48 -0800
3114
+ Processing by TwilioController#test_start as XML
3115
+ Parameters: {"CallSid"=>"1234567", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"machine", "CallStatus"=>"in-progress"}
3116
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3117
+ Started GET "/twilio/test_start?format=xml&CallSid=1234567&From=2065551212&Digits=&To=2065553434&AnsweredBy=machine&CallStatus=in-progress" for 127.0.0.1 at 2014-01-13 21:22:48 -0800
3118
+ Processing by TwilioController#test_start as XML
3119
+ Parameters: {"CallSid"=>"1234567", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"machine", "CallStatus"=>"in-progress"}
3120
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3121
+ Started GET "/twilio/test_start?format=xml&CallSid=1234567&From=2065551212&Digits=&To=2065553434&AnsweredBy=machine&CallStatus=in-progress" for 127.0.0.1 at 2014-01-13 21:22:48 -0800
3122
+ Processing by TwilioController#test_start as XML
3123
+ Parameters: {"CallSid"=>"1234567", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"machine", "CallStatus"=>"in-progress"}
3124
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3125
+ Connecting to database specified by database.yml
3126
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3127
+ Processing by TwilioController#test_start as XML
3128
+ Parameters: {"CallSid"=>"6890fbc2-bf48-4a76-8c9e-66e58fdefe23", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3129
+ Rendered twilio/test_start.xml.erb within layouts/twilio.layout (18.2ms)
3130
+ Completed 200 OK in 24.4ms (Views: 24.2ms | ActiveRecord: 0.0ms)
3131
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3132
+ Processing by TwilioController#test_start as XML
3133
+ Parameters: {"CallSid"=>"316627f1-3b2a-4f97-8df4-537da799df28", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3134
+ Completed 200 OK in 0.6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
3135
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3136
+ Processing by TwilioController#test_start as XML
3137
+ Parameters: {"CallSid"=>"77e383a1-164c-49fb-a987-6380c2830658", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3138
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3139
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3140
+ Processing by TwilioController#test_start as XML
3141
+ Parameters: {"CallSid"=>"2b2fb83d-4678-489a-ae21-7b26632699dc", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3142
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3143
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3144
+ Processing by TwilioController#test_start as XML
3145
+ Parameters: {"CallSid"=>"d00ac5d6-fdf3-4dc5-91fc-a12fd9cfb628", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3146
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3147
+ Started POST "/twilio/test_redirect" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3148
+ Processing by TwilioController#test_redirect as XML
3149
+ Parameters: {"CallSid"=>"9d9e1539-58da-486e-bdb9-23d18c588231", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3150
+ Completed 200 OK in 1.2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
3151
+ Started POST "/twilio/test_redirect" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3152
+ Processing by TwilioController#test_redirect as XML
3153
+ Parameters: {"CallSid"=>"c686ebdc-ce56-48b4-a19f-072610ff772f", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3154
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3155
+ Started POST "/twilio/test_redirect" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3156
+ Processing by TwilioController#test_redirect as XML
3157
+ Parameters: {"CallSid"=>"2102eeb5-587f-49da-b04f-4b2a767d615c", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3158
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3159
+ Started POST "/twilio/test_redirect" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3160
+ Processing by TwilioController#test_redirect as XML
3161
+ Parameters: {"CallSid"=>"27ece452-f776-49dc-92f1-b00c25d37be2", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3162
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3163
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3164
+ Processing by TwilioController#test_start as XML
3165
+ Parameters: {"CallSid"=>"27ece452-f776-49dc-92f1-b00c25d37be2", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3166
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3167
+ Started POST "/twilio/test_redirect" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3168
+ Processing by TwilioController#test_redirect as XML
3169
+ Parameters: {"CallSid"=>"d23cb14d-0213-4e8a-96db-9f57a4d03597", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3170
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3171
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3172
+ Processing by TwilioController#test_start as XML
3173
+ Parameters: {"CallSid"=>"d23cb14d-0213-4e8a-96db-9f57a4d03597", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3174
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3175
+ Started POST "/twilio/test_redirect" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3176
+ Processing by TwilioController#test_redirect as XML
3177
+ Parameters: {"CallSid"=>"75eabe09-b431-4586-8484-53b21d49e21b", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3178
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3179
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3180
+ Processing by TwilioController#test_start as XML
3181
+ Parameters: {"CallSid"=>"75eabe09-b431-4586-8484-53b21d49e21b", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3182
+ Completed 200 OK in 0.5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
3183
+ Started POST "/twilio/test_redirect" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3184
+ Processing by TwilioController#test_redirect as XML
3185
+ Parameters: {"CallSid"=>"399c5e26-5a48-4711-9510-ef345fdbda0d", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3186
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3187
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3188
+ Processing by TwilioController#test_start as XML
3189
+ Parameters: {"CallSid"=>"399c5e26-5a48-4711-9510-ef345fdbda0d", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"completed"}
3190
+ Completed 200 OK in 0.5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
3191
+ Started POST "/twilio/test_redirect" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3192
+ Processing by TwilioController#test_redirect as XML
3193
+ Parameters: {"CallSid"=>"67fd1c3d-f07a-4ee4-a15e-12966133e998", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3194
+ Completed 200 OK in 0.6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
3195
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3196
+ Processing by TwilioController#test_start as XML
3197
+ Parameters: {"CallSid"=>"67fd1c3d-f07a-4ee4-a15e-12966133e998", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"completed"}
3198
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3199
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3200
+ Processing by TwilioController#test_say as XML
3201
+ Parameters: {"CallSid"=>"f58d9dd8-396d-4161-b661-7f3fb678d678", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3202
+ Completed 200 OK in 1.2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
3203
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3204
+ Processing by TwilioController#test_say as XML
3205
+ Parameters: {"CallSid"=>"7618e1d2-01aa-4dd1-965d-91c8b7e4e92e", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3206
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3207
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3208
+ Processing by TwilioController#test_say as XML
3209
+ Parameters: {"CallSid"=>"846b416b-437c-4c6b-817a-4b129dea67b0", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3210
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3211
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3212
+ Processing by TwilioController#test_say as XML
3213
+ Parameters: {"CallSid"=>"5bdaf04e-1c83-4afe-b8bb-fa1b0e73ce64", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3214
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3215
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3216
+ Processing by TwilioController#test_say as XML
3217
+ Parameters: {"CallSid"=>"a53b5bc8-da48-4311-85ba-698313b288d6", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3218
+ Completed 200 OK in 0.3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3219
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3220
+ Processing by TwilioController#test_say as XML
3221
+ Parameters: {"CallSid"=>"ac50f5d8-771f-45d3-b5b8-7e34a7793f80", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3222
+ Completed 200 OK in 0.3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3223
+ Started POST "/twilio/test_play" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3224
+ Processing by TwilioController#test_play as XML
3225
+ Parameters: {"CallSid"=>"dc7521c3-e88b-4e83-b0ac-b7ba8f6ac1d0", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3226
+ Completed 200 OK in 1.1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
3227
+ Started POST "/twilio/test_play" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3228
+ Processing by TwilioController#test_play as XML
3229
+ Parameters: {"CallSid"=>"e6f0b3e9-0054-40bb-9458-8804c48eaf20", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3230
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3231
+ Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3232
+ Processing by TwilioController#test_dial_with_action as XML
3233
+ Parameters: {"CallSid"=>"7464e621-e84a-4447-8201-084908ca6412", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3234
+ Completed 200 OK in 1.1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
3235
+ Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3236
+ Processing by TwilioController#test_dial_with_action as XML
3237
+ Parameters: {"CallSid"=>"181a1b62-efe8-4637-8be3-2d078a2798a8", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3238
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3239
+ Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3240
+ Processing by TwilioController#test_dial_with_action as XML
3241
+ Parameters: {"CallSid"=>"4c347950-4438-488a-962d-0c3339cebf97", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3242
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3243
+ Started POST "/twilio/test_dial_with_no_action" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3244
+ Processing by TwilioController#test_dial_with_no_action as XML
3245
+ Parameters: {"CallSid"=>"68e4c76f-1b0c-4123-8588-7c86f0a3ee12", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3246
+ Completed 200 OK in 1.0ms (Views: 0.8ms | ActiveRecord: 0.0ms)
3247
+ Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3248
+ Processing by TwilioController#test_dial_with_action as XML
3249
+ Parameters: {"CallSid"=>"61f252db-fd32-413f-969f-c79394e2e0e9", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3250
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3251
+ Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3252
+ Processing by TwilioController#test_dial_with_action as XML
3253
+ Parameters: {"CallSid"=>"d0fb2103-227e-4bd0-b602-ee7252f50010", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3254
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3255
+ Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3256
+ Processing by TwilioController#test_dial_with_action as XML
3257
+ Parameters: {"CallSid"=>"8244a146-6376-463e-9571-eec7daddb69b", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3258
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3259
+ Started POST "/twilio/test_dial_with_sip" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3260
+ Processing by TwilioController#test_dial_with_sip as XML
3261
+ Parameters: {"CallSid"=>"6e761b23-64c3-4ef0-a937-1f9ec537d16a", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3262
+ Completed 200 OK in 1.0ms (Views: 0.8ms | ActiveRecord: 0.0ms)
3263
+ Started POST "/twilio/test_hangup" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3264
+ Processing by TwilioController#test_hangup as XML
3265
+ Parameters: {"CallSid"=>"fd4c3214-5f4f-4e2a-b7cf-f69d2e66ebe4", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3266
+ Completed 200 OK in 1.0ms (Views: 0.8ms | ActiveRecord: 0.0ms)
3267
+ Started POST "/twilio/test_hangup" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3268
+ Processing by TwilioController#test_hangup as XML
3269
+ Parameters: {"CallSid"=>"31b8cfb9-3a47-4ec4-9138-3b8cb5047d3d", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3270
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3271
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3272
+ Processing by TwilioController#test_start as XML
3273
+ Parameters: {"CallSid"=>"39dfa127-2d5a-4905-a9d2-6587a8583fc2", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3274
+ Completed 200 OK in 0.6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
3275
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3276
+ Processing by TwilioController#test_start as XML
3277
+ Parameters: {"CallSid"=>"27d99716-bf35-441d-9da0-fdb3f29da431", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3278
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3279
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3280
+ Processing by TwilioController#test_start as XML
3281
+ Parameters: {"CallSid"=>"03e535eb-55df-4613-98c6-b39f451ef94b", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3282
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3283
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3284
+ Processing by TwilioController#test_start as XML
3285
+ Parameters: {"CallSid"=>"f0d30c18-0759-413a-ade4-6c594630d6e1", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3286
+ Completed 200 OK in 0.6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
3287
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3288
+ Processing by TwilioController#test_start as XML
3289
+ Parameters: {"CallSid"=>"d6c2f207-5d4b-4a15-ba2f-5744d1de2dd2", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3290
+ Completed 200 OK in 0.6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
3291
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3292
+ Processing by TwilioController#test_start as XML
3293
+ Parameters: {"CallSid"=>"39d3cd33-da99-4d81-aa88-4c32c3248f42", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3294
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3295
+ Started POST "/twilio/test_action" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3296
+ Processing by TwilioController#test_action as XML
3297
+ Parameters: {"CallSid"=>"39d3cd33-da99-4d81-aa88-4c32c3248f42", "From"=>"2065551212", "Digits"=>"98765", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3298
+ Completed 200 OK in 1.3ms (Views: 1.1ms | ActiveRecord: 0.0ms)
3299
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3300
+ Processing by TwilioController#test_start as XML
3301
+ Parameters: {"CallSid"=>"6bc7b978-e168-4b99-884c-5c17275f864a", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3302
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3303
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3304
+ Processing by TwilioController#test_start as XML
3305
+ Parameters: {"CallSid"=>"a8d332bb-5842-43fa-a856-422689f186b2", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3306
+ Completed 200 OK in 0.6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
3307
+ Started POST "/twilio/test_action" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3308
+ Processing by TwilioController#test_action as XML
3309
+ Parameters: {"CallSid"=>"a8d332bb-5842-43fa-a856-422689f186b2", "From"=>"2065551212", "Digits"=>"98765", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3310
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3311
+ Started POST "/twilio/test_gather_finish_on_asterisk" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3312
+ Processing by TwilioController#test_gather_finish_on_asterisk as XML
3313
+ Parameters: {"CallSid"=>"94899e03-5c56-4739-935c-a2c3a2cde305", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3314
+ Completed 200 OK in 1.3ms (Views: 1.1ms | ActiveRecord: 0.0ms)
3315
+ Started POST "/twilio/test_action" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3316
+ Processing by TwilioController#test_action as XML
3317
+ Parameters: {"CallSid"=>"94899e03-5c56-4739-935c-a2c3a2cde305", "From"=>"2065551212", "Digits"=>"98765", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3318
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3319
+ Started POST "/twilio/test_gather_finish_on_asterisk" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3320
+ Processing by TwilioController#test_gather_finish_on_asterisk as XML
3321
+ Parameters: {"CallSid"=>"fae7f57a-295b-4db6-b53e-4b838dbaba5c", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3322
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3323
+ Started POST "/twilio/test_action" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3324
+ Processing by TwilioController#test_action as XML
3325
+ Parameters: {"CallSid"=>"fae7f57a-295b-4db6-b53e-4b838dbaba5c", "From"=>"2065551212", "Digits"=>"98765", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3326
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3327
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3328
+ Processing by TwilioController#test_say as XML
3329
+ Parameters: {"CallSid"=>"b8b223ab-7c5e-4e5e-bfa1-420fe24f3374", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3330
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3331
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3332
+ Processing by TwilioController#test_say as XML
3333
+ Parameters: {"CallSid"=>"814fa701-1070-418b-9ee1-25d276f0aedc", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3334
+ Completed 200 OK in 0.3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3335
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3336
+ Processing by TwilioController#test_say as XML
3337
+ Parameters: {"CallSid"=>"d43f82b9-646a-4a6c-8029-6f06b6ad1924", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3338
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3339
+ Started POST "/twilio/test_say" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3340
+ Processing by TwilioController#test_say as XML
3341
+ Parameters: {"CallSid"=>"dfb3a54b-5d78-4e2c-968b-43b1dbde7398", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3342
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3343
+ Started POST "/twilio/test_record" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3344
+ Processing by TwilioController#test_record as XML
3345
+ Parameters: {"CallSid"=>"23a9d942-a1d0-4e75-8314-af9c80918711", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3346
+ Completed 200 OK in 1.0ms (Views: 0.8ms | ActiveRecord: 0.0ms)
3347
+ Started POST "/twilio/test_record" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3348
+ Processing by TwilioController#test_record as XML
3349
+ Parameters: {"CallSid"=>"e2ef879c-e7fc-46e5-802f-373f8dd087a9", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3350
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3351
+ Started POST "/twilio/test_record" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3352
+ Processing by TwilioController#test_record as XML
3353
+ Parameters: {"CallSid"=>"519693be-b00e-452b-b802-49df8a0c1853", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3354
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3355
+ Started POST "/twilio/test_record" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3356
+ Processing by TwilioController#test_record as XML
3357
+ Parameters: {"CallSid"=>"89953e62-beb0-473a-b5e0-2f8974d68e7b", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3358
+ Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3359
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3360
+ Processing by TwilioController#test_start as XML
3361
+ Parameters: {"CallSid"=>"0b263f1f-6056-4701-9ca1-f1a81409afed", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3362
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3363
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3364
+ Processing by TwilioController#test_start as XML
3365
+ Parameters: {"CallSid"=>"0d568910-b064-4385-8fe8-1cf296213678", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3366
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3367
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3368
+ Processing by TwilioController#test_start as XML
3369
+ Parameters: {"CallSid"=>"3e27a922-0645-4865-b465-a6c0e1f36628", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3370
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3371
+ Started POST "/twilio/test_start" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3372
+ Processing by TwilioController#test_start as XML
3373
+ Parameters: {"CallSid"=>"54cc2ed8-5df5-4003-944f-a293c6385cac", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human", "CallStatus"=>"in-progress"}
3374
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3375
+ Started GET "/twilio/test_start?format=xml&CallSid=1234567&From=2065551212&Digits=&To=2065553434&AnsweredBy=machine&CallStatus=in-progress" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3376
+ Processing by TwilioController#test_start as XML
3377
+ Parameters: {"CallSid"=>"1234567", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"machine", "CallStatus"=>"in-progress"}
3378
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3379
+ Started GET "/twilio/test_start?format=xml&CallSid=1234567&From=2065551212&Digits=&To=2065553434&AnsweredBy=machine&CallStatus=in-progress" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3380
+ Processing by TwilioController#test_start as XML
3381
+ Parameters: {"CallSid"=>"1234567", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"machine", "CallStatus"=>"in-progress"}
3382
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3383
+ Started GET "/twilio/test_start?format=xml&CallSid=1234567&From=2065551212&Digits=&To=2065553434&AnsweredBy=machine&CallStatus=in-progress" for 127.0.0.1 at 2014-01-13 21:24:03 -0800
3384
+ Processing by TwilioController#test_start as XML
3385
+ Parameters: {"CallSid"=>"1234567", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"machine", "CallStatus"=>"in-progress"}
3386
+ Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)