robocall 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cf64a6be07fa9ea012d4caa86ca3f95d80b7c18a
4
- data.tar.gz: 951b6742c8d2a971477cfcd1f29939f3a0b304f8
3
+ metadata.gz: a3f9de8475f225e303393064465740217f63b81a
4
+ data.tar.gz: ca8d0429aa4a7abed6f9cd188825d239ebab4d8a
5
5
  SHA512:
6
- metadata.gz: ccc90031a3bba27f6403688847eb9d5753c07f84367fcb6d5a50407cb85ddf6257f1847fc047bfae540e6bba714da9acf751b91be215e7022925428649296960
7
- data.tar.gz: 52f5d8185e400022e9627e7fc124a8dca8eabddcf11f8c88853e59927ba433d89c123dd15be60369bf44ecac1117a3e144958f280daf768814645d44f48209cc
6
+ metadata.gz: 0429abcbbfdbc9959d52496feacdee9568df8047c668c41246f7d9ff0d1ab237c13d36cb720e00077354ee2cf8a9cd7c780e91411b431250223ea65e0e9c25cc
7
+ data.tar.gz: ea64c7866fc655ce9900f069c6055cc8310666b36cc5e7bfa58ba41c82c442c87a940c1a1d89e4e58d3ef30545212d87feae5ae1e88993d49f8f731a1c5e4520
data/README.md CHANGED
@@ -1,12 +1,11 @@
1
- ![CircleCI](https://circleci.com/gh/Originate/robocall.png)
1
+ [![Gem Version](https://badge.fury.io/rb/robocall.png)][gem]
2
+ [![CircleCI](https://circleci.com/gh/originate/robocall.png)[circleci]
2
3
 
3
4
 
4
5
  ## About
5
6
 
6
7
  A rails gem to easily add sending synthesized messages from Rails to any phone number.
7
8
 
8
- Does not quite work yet.
9
-
10
9
  ## Install
11
10
 
12
11
  Add the robocall gem to your Gemfile:
@@ -11,14 +11,16 @@ module Robocall
11
11
 
12
12
  def connected_to_caller
13
13
  @r = Robocall.find_by_id(params[:id])
14
- #debugger
14
+
15
15
  error = ''
16
16
  error = "Caller record #{params[:id]} not found" unless @r
17
17
  error = "No token provided" unless params[:token]
18
18
  error = "The token was invalid" unless @r && @r.token == params[:token]
19
19
  if error != ''
20
20
  @error = error
21
- render :xml => "<Say>#{error}</Say>", :content_type => 'application/xml'
21
+ template = File.read('app/views/robocall/robocalls/error.xml.haml')
22
+ xml = Haml::Engine.new(template).to_html(Object.new, {:error => error} )
23
+ render :xml => xml, :content_type => 'application/xml'
22
24
  else
23
25
  render :xml => @r.xml, :content_type => 'application/xml'
24
26
  end
@@ -0,0 +1,3 @@
1
+ <?xml version='1.0' encoding='utf-8' ?>
2
+ %Say{:voice => 'alice', :language => language}
3
+ = text
@@ -1,6 +1,6 @@
1
1
  <?xml version=\"1.0\" encoding=\"UTF-8\"?>
2
- %xml
3
- %Say{:voice => 'woman'}
4
- An error has occured retreieveing your automatic message.
5
- Specifically,
6
- = error
2
+
3
+ %Say{:voice => 'alice'}
4
+ An error has occured retreieveing your automatic message.
5
+ Specifically,
6
+ = error
data/lib/robocall.rb CHANGED
@@ -32,7 +32,11 @@ module Robocall
32
32
 
33
33
  def send_robocall(to: to, text: text, language: :english, from: from_phone_number)
34
34
  # Render XML
35
- xml = "<Say language:#{language}>#{text}</Say>"
35
+ template = File.read('app/views/robocall/robocalls/connected_to_caller.xml.haml')
36
+ data = {}
37
+ data['text'] = text
38
+ data['language'] = language
39
+ xml = Haml::Engine.new(template).to_html(Object.new, data )
36
40
  send_robocall_xml(to: to, xml: xml, from: from)
37
41
  end
38
42
 
@@ -1,3 +1,3 @@
1
1
  module Robocall
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
Binary file
@@ -1222,3 +1222,231 @@ Connecting to database specified by database.yml
1222
1222
   (2.7ms) DROP TABLE "robocall_robocalls"
1223
1223
   (1.8ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1224
1224
   (0.1ms) SELECT version FROM "schema_migrations"
1225
+ Connecting to database specified by database.yml
1226
+  (10.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1227
+  (0.4ms) select sqlite_version(*)
1228
+  (17.8ms) DROP TABLE "robocall_robocalls"
1229
+  (18.8ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1230
+  (0.4ms) SELECT version FROM "schema_migrations"
1231
+ Connecting to database specified by database.yml
1232
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1233
+  (0.4ms) select sqlite_version(*)
1234
+  (84.6ms) DROP TABLE "robocall_robocalls"
1235
+  (13.4ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1236
+  (0.1ms) SELECT version FROM "schema_migrations"
1237
+ Connecting to database specified by database.yml
1238
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1239
+  (0.3ms) select sqlite_version(*)
1240
+  (2.8ms) DROP TABLE "robocall_robocalls"
1241
+  (1.7ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1242
+  (0.1ms) SELECT version FROM "schema_migrations"
1243
+ Connecting to database specified by database.yml
1244
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1245
+  (0.4ms) select sqlite_version(*)
1246
+  (91.3ms) DROP TABLE "robocall_robocalls"
1247
+  (14.4ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1248
+  (0.1ms) SELECT version FROM "schema_migrations"
1249
+ Connecting to database specified by database.yml
1250
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1251
+  (0.3ms) select sqlite_version(*)
1252
+  (2.8ms) DROP TABLE "robocall_robocalls"
1253
+  (1.8ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1254
+  (0.1ms) SELECT version FROM "schema_migrations"
1255
+ Connecting to database specified by database.yml
1256
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1257
+  (0.3ms) select sqlite_version(*)
1258
+  (2.7ms) DROP TABLE "robocall_robocalls"
1259
+  (1.9ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1260
+  (0.2ms) SELECT version FROM "schema_migrations"
1261
+ Connecting to database specified by database.yml
1262
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1263
+  (0.4ms) select sqlite_version(*)
1264
+  (3.6ms) DROP TABLE "robocall_robocalls"
1265
+  (2.1ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1266
+  (0.1ms) SELECT version FROM "schema_migrations"
1267
+ Connecting to database specified by database.yml
1268
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1269
+  (0.4ms) select sqlite_version(*)
1270
+  (2.8ms) DROP TABLE "robocall_robocalls"
1271
+  (1.8ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1272
+  (0.1ms) SELECT version FROM "schema_migrations"
1273
+ Connecting to database specified by database.yml
1274
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1275
+  (0.4ms) select sqlite_version(*)
1276
+  (2.7ms) DROP TABLE "robocall_robocalls"
1277
+  (1.7ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1278
+  (0.2ms) SELECT version FROM "schema_migrations"
1279
+ Connecting to database specified by database.yml
1280
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1281
+  (0.4ms) select sqlite_version(*)
1282
+  (3.2ms) DROP TABLE "robocall_robocalls"
1283
+  (1.8ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1284
+  (0.1ms) SELECT version FROM "schema_migrations"
1285
+ Connecting to database specified by database.yml
1286
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1287
+  (0.3ms) select sqlite_version(*)
1288
+  (3.8ms) DROP TABLE "robocall_robocalls"
1289
+  (1.8ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1290
+  (0.1ms) SELECT version FROM "schema_migrations"
1291
+ Connecting to database specified by database.yml
1292
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1293
+  (0.4ms) select sqlite_version(*)
1294
+  (1.8ms) DROP TABLE "robocall_robocalls"
1295
+  (1.9ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1296
+  (0.1ms) SELECT version FROM "schema_migrations"
1297
+ Connecting to database specified by database.yml
1298
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1299
+  (0.4ms) select sqlite_version(*)
1300
+  (2.6ms) DROP TABLE "robocall_robocalls"
1301
+  (1.9ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1302
+  (0.1ms) SELECT version FROM "schema_migrations"
1303
+ Connecting to database specified by database.yml
1304
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1305
+  (0.4ms) select sqlite_version(*)
1306
+  (12.7ms) DROP TABLE "robocall_robocalls"
1307
+  (13.1ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1308
+  (0.1ms) SELECT version FROM "schema_migrations"
1309
+ Connecting to database specified by database.yml
1310
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1311
+  (0.3ms) select sqlite_version(*)
1312
+  (1.7ms) DROP TABLE "robocall_robocalls"
1313
+  (1.7ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1314
+  (0.1ms) SELECT version FROM "schema_migrations"
1315
+ Connecting to database specified by database.yml
1316
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1317
+  (0.4ms) select sqlite_version(*)
1318
+  (3.1ms) DROP TABLE "robocall_robocalls"
1319
+  (1.5ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1320
+  (0.1ms) SELECT version FROM "schema_migrations"
1321
+ Connecting to database specified by database.yml
1322
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1323
+  (0.4ms) select sqlite_version(*)
1324
+  (2.6ms) DROP TABLE "robocall_robocalls"
1325
+  (1.8ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1326
+  (0.1ms) SELECT version FROM "schema_migrations"
1327
+ Connecting to database specified by database.yml
1328
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1329
+  (0.4ms) select sqlite_version(*)
1330
+  (1.7ms) DROP TABLE "robocall_robocalls"
1331
+  (1.7ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1332
+  (0.1ms) SELECT version FROM "schema_migrations"
1333
+ Connecting to database specified by database.yml
1334
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1335
+  (0.4ms) select sqlite_version(*)
1336
+  (3.6ms) DROP TABLE "robocall_robocalls"
1337
+  (1.8ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1338
+  (0.1ms) SELECT version FROM "schema_migrations"
1339
+ Connecting to database specified by database.yml
1340
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1341
+  (0.4ms) select sqlite_version(*)
1342
+  (2.8ms) DROP TABLE "robocall_robocalls"
1343
+  (1.9ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1344
+  (0.1ms) SELECT version FROM "schema_migrations"
1345
+ Connecting to database specified by database.yml
1346
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1347
+  (0.4ms) select sqlite_version(*)
1348
+  (2.7ms) DROP TABLE "robocall_robocalls"
1349
+  (1.5ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1350
+  (0.1ms) SELECT version FROM "schema_migrations"
1351
+ Connecting to database specified by database.yml
1352
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1353
+  (0.3ms) select sqlite_version(*)
1354
+  (2.8ms) DROP TABLE "robocall_robocalls"
1355
+  (1.6ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1356
+  (0.1ms) SELECT version FROM "schema_migrations"
1357
+ Connecting to database specified by database.yml
1358
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1359
+  (0.3ms) select sqlite_version(*)
1360
+  (3.0ms) DROP TABLE "robocall_robocalls"
1361
+  (1.9ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1362
+  (0.1ms) SELECT version FROM "schema_migrations"
1363
+ Connecting to database specified by database.yml
1364
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1365
+  (0.4ms) select sqlite_version(*)
1366
+  (2.5ms) DROP TABLE "robocall_robocalls"
1367
+  (1.5ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1368
+  (0.1ms) SELECT version FROM "schema_migrations"
1369
+ Connecting to database specified by database.yml
1370
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1371
+  (0.3ms) select sqlite_version(*)
1372
+  (2.7ms) DROP TABLE "robocall_robocalls"
1373
+  (1.8ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1374
+  (0.1ms) SELECT version FROM "schema_migrations"
1375
+ Connecting to database specified by database.yml
1376
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1377
+  (0.3ms) select sqlite_version(*)
1378
+  (2.7ms) DROP TABLE "robocall_robocalls"
1379
+  (2.5ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1380
+  (0.1ms) SELECT version FROM "schema_migrations"
1381
+ Connecting to database specified by database.yml
1382
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1383
+  (0.4ms) select sqlite_version(*)
1384
+  (2.7ms) DROP TABLE "robocall_robocalls"
1385
+  (2.0ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1386
+  (0.1ms) SELECT version FROM "schema_migrations"
1387
+ Connecting to database specified by database.yml
1388
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1389
+  (0.3ms) select sqlite_version(*)
1390
+  (2.5ms) DROP TABLE "robocall_robocalls"
1391
+  (1.9ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1392
+  (0.2ms) SELECT version FROM "schema_migrations"
1393
+ Connecting to database specified by database.yml
1394
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1395
+  (0.3ms) select sqlite_version(*)
1396
+  (3.4ms) DROP TABLE "robocall_robocalls"
1397
+  (2.0ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1398
+  (0.1ms) SELECT version FROM "schema_migrations"
1399
+ Connecting to database specified by database.yml
1400
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1401
+  (0.3ms) select sqlite_version(*)
1402
+  (2.7ms) DROP TABLE "robocall_robocalls"
1403
+  (1.7ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1404
+  (0.1ms) SELECT version FROM "schema_migrations"
1405
+ Connecting to database specified by database.yml
1406
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1407
+  (0.4ms) select sqlite_version(*)
1408
+  (2.7ms) DROP TABLE "robocall_robocalls"
1409
+  (1.7ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1410
+  (0.1ms) SELECT version FROM "schema_migrations"
1411
+ Connecting to database specified by database.yml
1412
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1413
+  (0.4ms) select sqlite_version(*)
1414
+  (2.8ms) DROP TABLE "robocall_robocalls"
1415
+  (2.2ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1416
+  (0.2ms) SELECT version FROM "schema_migrations"
1417
+ Connecting to database specified by database.yml
1418
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1419
+  (0.3ms) select sqlite_version(*)
1420
+  (2.9ms) DROP TABLE "robocall_robocalls"
1421
+  (1.5ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1422
+  (0.1ms) SELECT version FROM "schema_migrations"
1423
+ Connecting to database specified by database.yml
1424
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1425
+  (0.4ms) select sqlite_version(*)
1426
+  (2.6ms) DROP TABLE "robocall_robocalls"
1427
+  (1.8ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1428
+  (0.1ms) SELECT version FROM "schema_migrations"
1429
+ Connecting to database specified by database.yml
1430
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1431
+  (0.4ms) select sqlite_version(*)
1432
+  (3.1ms) DROP TABLE "robocall_robocalls"
1433
+  (1.7ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1434
+  (0.3ms) SELECT version FROM "schema_migrations"
1435
+ Connecting to database specified by database.yml
1436
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1437
+  (0.3ms) select sqlite_version(*)
1438
+  (2.8ms) DROP TABLE "robocall_robocalls"
1439
+  (1.8ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1440
+  (0.1ms) SELECT version FROM "schema_migrations"
1441
+ Connecting to database specified by database.yml
1442
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1443
+  (0.3ms) select sqlite_version(*)
1444
+  (2.8ms) DROP TABLE "robocall_robocalls"
1445
+  (1.9ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1446
+  (0.2ms) SELECT version FROM "schema_migrations"
1447
+ Connecting to database specified by database.yml
1448
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1449
+  (0.4ms) select sqlite_version(*)
1450
+  (2.9ms) DROP TABLE "robocall_robocalls"
1451
+  (2.0ms) CREATE TABLE "robocall_robocalls" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar(255), "xml" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1452
+  (0.1ms) SELECT version FROM "schema_migrations"
@@ -2885,3 +2885,834 @@ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.3ms)
2885
2885
   (0.1ms) rollback transaction
2886
2886
   (0.1ms) begin transaction
2887
2887
   (0.0ms) rollback transaction
2888
+ Connecting to database specified by database.yml
2889
+  (0.1ms) begin transaction
2890
+ SQL (27.3ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 17:42:25 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 17:42:25 UTC +00:00], ["xml", "<foo>"]]
2891
+  (1.5ms) commit transaction
2892
+  (0.1ms) begin transaction
2893
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
2894
+ Parameters: {"token"=>"MyString", "id"=>"1"}
2895
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
2896
+ Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.2ms)
2897
+  (0.1ms) rollback transaction
2898
+  (0.1ms) begin transaction
2899
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
2900
+ Parameters: {"token"=>"warble", "id"=>"1"}
2901
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
2902
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.2ms)
2903
+  (0.1ms) rollback transaction
2904
+  (0.1ms) begin transaction
2905
+  (0.1ms) SAVEPOINT active_record_1
2906
+ SQL (0.5ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 17:42:25 UTC +00:00], ["token", "249f22a14daa73430255f73e678f00ef"], ["updated_at", Mon, 12 Aug 2013 17:42:25 UTC +00:00], ["xml", "<Say language:english>Hello you there</Say>"]]
2907
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2908
+  (0.7ms) rollback transaction
2909
+  (0.1ms) begin transaction
2910
+  (0.1ms) rollback transaction
2911
+ Connecting to database specified by database.yml
2912
+  (0.1ms) begin transaction
2913
+ SQL (4.2ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 17:47:43 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 17:47:43 UTC +00:00], ["xml", "<foo>"]]
2914
+  (186.3ms) commit transaction
2915
+  (0.1ms) begin transaction
2916
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
2917
+ Parameters: {"token"=>"MyString", "id"=>"1"}
2918
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
2919
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms)
2920
+  (0.1ms) rollback transaction
2921
+  (0.1ms) begin transaction
2922
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
2923
+ Parameters: {"token"=>"warble", "id"=>"1"}
2924
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
2925
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
2926
+  (0.1ms) rollback transaction
2927
+  (0.1ms) begin transaction
2928
+ Connecting to database specified by database.yml
2929
+  (0.1ms) begin transaction
2930
+ SQL (4.2ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 17:49:58 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 17:49:58 UTC +00:00], ["xml", "<foo>"]]
2931
+  (2.6ms) commit transaction
2932
+  (0.1ms) begin transaction
2933
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
2934
+ Parameters: {"token"=>"MyString", "id"=>"1"}
2935
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
2936
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)
2937
+  (0.1ms) rollback transaction
2938
+  (0.1ms) begin transaction
2939
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
2940
+ Parameters: {"token"=>"warble", "id"=>"1"}
2941
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
2942
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
2943
+  (0.1ms) rollback transaction
2944
+  (0.1ms) begin transaction
2945
+  (0.1ms) rollback transaction
2946
+  (0.1ms) begin transaction
2947
+ Connecting to database specified by database.yml
2948
+  (0.1ms) begin transaction
2949
+ SQL (4.4ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 17:53:19 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 17:53:19 UTC +00:00], ["xml", "<foo>"]]
2950
+  (2.3ms) commit transaction
2951
+  (0.1ms) begin transaction
2952
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
2953
+ Parameters: {"token"=>"MyString", "id"=>"1"}
2954
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
2955
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)
2956
+  (0.1ms) rollback transaction
2957
+  (0.1ms) begin transaction
2958
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
2959
+ Parameters: {"token"=>"warble", "id"=>"1"}
2960
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
2961
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
2962
+  (0.1ms) rollback transaction
2963
+  (0.1ms) begin transaction
2964
+  (0.2ms) rollback transaction
2965
+  (0.1ms) begin transaction
2966
+  (0.1ms) rollback transaction
2967
+ Connecting to database specified by database.yml
2968
+  (0.1ms) begin transaction
2969
+ SQL (4.9ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 17:54:21 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 17:54:21 UTC +00:00], ["xml", "<foo>"]]
2970
+  (254.0ms) commit transaction
2971
+  (0.1ms) begin transaction
2972
+  (0.1ms) rollback transaction
2973
+  (0.1ms) begin transaction
2974
+  (0.1ms) rollback transaction
2975
+  (0.1ms) begin transaction
2976
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
2977
+ Parameters: {"token"=>"warble", "id"=>"1"}
2978
+ Robocall::Robocall Load (0.3ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
2979
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms)
2980
+  (0.1ms) rollback transaction
2981
+  (0.1ms) begin transaction
2982
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
2983
+ Parameters: {"token"=>"MyString", "id"=>"1"}
2984
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
2985
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
2986
+  (0.1ms) rollback transaction
2987
+ Connecting to database specified by database.yml
2988
+  (0.1ms) begin transaction
2989
+ SQL (4.3ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 17:55:17 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 17:55:17 UTC +00:00], ["xml", "<foo>"]]
2990
+  (2.3ms) commit transaction
2991
+  (0.1ms) begin transaction
2992
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
2993
+ Parameters: {"token"=>"MyString", "id"=>"1"}
2994
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
2995
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)
2996
+  (0.1ms) rollback transaction
2997
+  (0.1ms) begin transaction
2998
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
2999
+ Parameters: {"token"=>"warble", "id"=>"1"}
3000
+ Robocall::Robocall Load (0.3ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3001
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.3ms)
3002
+  (0.1ms) rollback transaction
3003
+  (0.1ms) begin transaction
3004
+  (0.1ms) rollback transaction
3005
+  (0.1ms) begin transaction
3006
+  (0.2ms) rollback transaction
3007
+ Connecting to database specified by database.yml
3008
+  (0.1ms) begin transaction
3009
+ SQL (4.4ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 17:55:59 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 17:55:59 UTC +00:00], ["xml", "<foo>"]]
3010
+  (2.3ms) commit transaction
3011
+  (0.1ms) begin transaction
3012
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3013
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3014
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3015
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3016
+  (0.1ms) rollback transaction
3017
+  (0.1ms) begin transaction
3018
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3019
+ Parameters: {"token"=>"warble", "id"=>"1"}
3020
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3021
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
3022
+  (0.1ms) rollback transaction
3023
+  (0.1ms) begin transaction
3024
+  (0.1ms) rollback transaction
3025
+  (0.1ms) begin transaction
3026
+  (0.2ms) SAVEPOINT active_record_1
3027
+ SQL (0.9ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 17:56:17 UTC +00:00], ["token", "0471b21e2ebe4ac41454f0274b562faf"], ["updated_at", Mon, 12 Aug 2013 17:56:17 UTC +00:00], ["xml", "<Say voice='alice'>\n \n</Say>\n"]]
3028
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3029
+  (0.7ms) rollback transaction
3030
+ Connecting to database specified by database.yml
3031
+  (0.1ms) begin transaction
3032
+ SQL (4.2ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 17:56:24 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 17:56:24 UTC +00:00], ["xml", "<foo>"]]
3033
+  (1.4ms) commit transaction
3034
+  (0.1ms) begin transaction
3035
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3036
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3037
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3038
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3039
+  (0.1ms) rollback transaction
3040
+  (0.1ms) begin transaction
3041
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3042
+ Parameters: {"token"=>"warble", "id"=>"1"}
3043
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3044
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.2ms)
3045
+  (0.1ms) rollback transaction
3046
+  (0.1ms) begin transaction
3047
+  (0.1ms) SAVEPOINT active_record_1
3048
+ SQL (0.8ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 17:56:37 UTC +00:00], ["token", "57b708da26e32cb2503ee5eb42c3e8dd"], ["updated_at", Mon, 12 Aug 2013 17:56:37 UTC +00:00], ["xml", "<Say voice='alice'>\n \n</Say>\n"]]
3049
+  (0.2ms) RELEASE SAVEPOINT active_record_1
3050
+  (0.9ms) rollback transaction
3051
+  (0.1ms) begin transaction
3052
+  (0.2ms) rollback transaction
3053
+ Connecting to database specified by database.yml
3054
+  (0.1ms) begin transaction
3055
+ SQL (4.2ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 17:56:44 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 17:56:44 UTC +00:00], ["xml", "<foo>"]]
3056
+  (2.5ms) commit transaction
3057
+  (0.1ms) begin transaction
3058
+  (0.1ms) SAVEPOINT active_record_1
3059
+ SQL (0.9ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 17:57:37 UTC +00:00], ["token", "1ad45f54d845d177ee7423a6bf91c5df"], ["updated_at", Mon, 12 Aug 2013 17:57:37 UTC +00:00], ["xml", "<Say voice='alice'>\n \n</Say>\n"]]
3060
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3061
+  (0.8ms) rollback transaction
3062
+  (0.1ms) begin transaction
3063
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3064
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3065
+ Robocall::Robocall Load (0.3ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3066
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms)
3067
+  (0.1ms) rollback transaction
3068
+  (0.1ms) begin transaction
3069
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3070
+ Parameters: {"token"=>"warble", "id"=>"1"}
3071
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3072
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3073
+  (0.1ms) rollback transaction
3074
+  (0.1ms) begin transaction
3075
+  (0.1ms) rollback transaction
3076
+ Connecting to database specified by database.yml
3077
+  (0.1ms) begin transaction
3078
+ SQL (4.3ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 17:57:43 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 17:57:43 UTC +00:00], ["xml", "<foo>"]]
3079
+  (2.2ms) commit transaction
3080
+  (0.1ms) begin transaction
3081
+  (0.1ms) rollback transaction
3082
+  (0.1ms) begin transaction
3083
+  (0.2ms) SAVEPOINT active_record_1
3084
+ SQL (0.9ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 17:58:17 UTC +00:00], ["token", "b5f16417ecb99d9037c8ef6957d624d6"], ["updated_at", Mon, 12 Aug 2013 17:58:17 UTC +00:00], ["xml", "<Say voice='alice'>\n \n</Say>\n"]]
3085
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3086
+  (0.6ms) rollback transaction
3087
+  (0.1ms) begin transaction
3088
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3089
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3090
+ Robocall::Robocall Load (0.3ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3091
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms)
3092
+  (0.1ms) rollback transaction
3093
+  (0.1ms) begin transaction
3094
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3095
+ Parameters: {"token"=>"warble", "id"=>"1"}
3096
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3097
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3098
+  (0.1ms) rollback transaction
3099
+ Connecting to database specified by database.yml
3100
+  (0.1ms) begin transaction
3101
+ SQL (4.3ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 17:58:22 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 17:58:22 UTC +00:00], ["xml", "<foo>"]]
3102
+  (1.3ms) commit transaction
3103
+  (0.1ms) begin transaction
3104
+  (0.2ms) SAVEPOINT active_record_1
3105
+ SQL (0.9ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 18:47:23 UTC +00:00], ["token", "bdff9281c3f6f9abab00864968f91a56"], ["updated_at", Mon, 12 Aug 2013 18:47:23 UTC +00:00], ["xml", "<?xml version='1.0' encoding='utf-8' ?>\n<Say voice='alice'>\n \n</Say>\n"]]
3106
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3107
+  (0.7ms) rollback transaction
3108
+  (0.1ms) begin transaction
3109
+  (0.1ms) rollback transaction
3110
+  (0.1ms) begin transaction
3111
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3112
+ Parameters: {"token"=>"warble", "id"=>"1"}
3113
+ Robocall::Robocall Load (0.3ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3114
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms)
3115
+  (0.1ms) rollback transaction
3116
+  (0.1ms) begin transaction
3117
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3118
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3119
+ Robocall::Robocall Load (0.3ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3120
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
3121
+  (0.1ms) rollback transaction
3122
+ Connecting to database specified by database.yml
3123
+  (0.1ms) begin transaction
3124
+ SQL (4.5ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 18:47:33 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 18:47:33 UTC +00:00], ["xml", "<foo>"]]
3125
+  (1.7ms) commit transaction
3126
+  (0.1ms) begin transaction
3127
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3128
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3129
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3130
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3131
+  (0.1ms) rollback transaction
3132
+  (0.1ms) begin transaction
3133
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3134
+ Parameters: {"token"=>"warble", "id"=>"1"}
3135
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3136
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
3137
+  (0.1ms) rollback transaction
3138
+  (0.1ms) begin transaction
3139
+  (0.2ms) SAVEPOINT active_record_1
3140
+ SQL (1.0ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 18:51:53 UTC +00:00], ["token", "09810c3371b96f133fa238577f9e94fa"], ["updated_at", Mon, 12 Aug 2013 18:51:53 UTC +00:00], ["xml", "<?xml version='1.0' encoding='utf-8' ?>\n<Say language='english' voice='alice'>\n Hello you there\n</Say>\n"]]
3141
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3142
+  (0.7ms) rollback transaction
3143
+  (0.1ms) begin transaction
3144
+  (0.1ms) rollback transaction
3145
+ Connecting to database specified by database.yml
3146
+  (0.1ms) begin transaction
3147
+ SQL (4.2ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 18:51:59 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 18:51:59 UTC +00:00], ["xml", "<foo>"]]
3148
+  (2.4ms) commit transaction
3149
+  (0.1ms) begin transaction
3150
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3151
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3152
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3153
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3154
+  (0.1ms) rollback transaction
3155
+  (0.1ms) begin transaction
3156
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3157
+ Parameters: {"token"=>"warble", "id"=>"1"}
3158
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3159
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
3160
+  (0.1ms) rollback transaction
3161
+  (0.1ms) begin transaction
3162
+  (0.1ms) rollback transaction
3163
+  (0.1ms) begin transaction
3164
+  (0.2ms) SAVEPOINT active_record_1
3165
+ SQL (0.9ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 18:52:06 UTC +00:00], ["token", "5de94d1cee506c49291b613bfd5fc363"], ["updated_at", Mon, 12 Aug 2013 18:52:06 UTC +00:00], ["xml", "<?xml version='1.0' encoding='utf-8' ?>\n<Say language='english' voice='alice'>\n Hello you there\n</Say>\n"]]
3166
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3167
+  (0.5ms) rollback transaction
3168
+ Connecting to database specified by database.yml
3169
+  (0.1ms) begin transaction
3170
+ SQL (4.3ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 18:52:42 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 18:52:42 UTC +00:00], ["xml", "<foo>"]]
3171
+  (1.8ms) commit transaction
3172
+  (0.1ms) begin transaction
3173
+  (0.1ms) rollback transaction
3174
+  (0.1ms) begin transaction
3175
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3176
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3177
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3178
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3179
+  (0.1ms) rollback transaction
3180
+  (0.1ms) begin transaction
3181
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3182
+ Parameters: {"token"=>"warble", "id"=>"1"}
3183
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3184
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
3185
+  (0.1ms) rollback transaction
3186
+  (0.1ms) begin transaction
3187
+  (0.1ms) rollback transaction
3188
+ Connecting to database specified by database.yml
3189
+  (0.1ms) begin transaction
3190
+ SQL (4.2ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 18:55:05 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 18:55:05 UTC +00:00], ["xml", "<foo>"]]
3191
+  (2.1ms) commit transaction
3192
+  (0.1ms) begin transaction
3193
+  (0.1ms) rollback transaction
3194
+  (0.1ms) begin transaction
3195
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3196
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3197
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3198
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3199
+  (0.1ms) rollback transaction
3200
+  (0.1ms) begin transaction
3201
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3202
+ Parameters: {"token"=>"warble", "id"=>"1"}
3203
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3204
+ Completed 500 Internal Server Error in 3ms
3205
+  (0.1ms) rollback transaction
3206
+  (0.1ms) begin transaction
3207
+  (0.1ms) SAVEPOINT active_record_1
3208
+ SQL (0.5ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 18:55:05 UTC +00:00], ["token", "37229d3af9ab149af29710d4efd913fe"], ["updated_at", Mon, 12 Aug 2013 18:55:05 UTC +00:00], ["xml", "<?xml version='1.0' encoding='utf-8' ?>\n<Say language='english' voice='alice'>\n Hello you there\n</Say>\n"]]
3209
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3210
+  (0.6ms) rollback transaction
3211
+ Connecting to database specified by database.yml
3212
+  (0.1ms) begin transaction
3213
+ SQL (4.1ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 18:55:36 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 18:55:36 UTC +00:00], ["xml", "<foo>"]]
3214
+  (2.4ms) commit transaction
3215
+  (0.1ms) begin transaction
3216
+  (0.1ms) rollback transaction
3217
+  (0.1ms) begin transaction
3218
+  (0.1ms) SAVEPOINT active_record_1
3219
+ SQL (0.5ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 18:55:36 UTC +00:00], ["token", "fe81d1b9a8003f6083564bdd66d7102d"], ["updated_at", Mon, 12 Aug 2013 18:55:36 UTC +00:00], ["xml", "<?xml version='1.0' encoding='utf-8' ?>\n<Say language='english' voice='alice'>\n Hello you there\n</Say>\n"]]
3220
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3221
+  (0.7ms) rollback transaction
3222
+  (0.1ms) begin transaction
3223
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3224
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3225
+ Robocall::Robocall Load (0.3ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3226
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms)
3227
+  (0.1ms) rollback transaction
3228
+  (0.1ms) begin transaction
3229
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3230
+ Parameters: {"token"=>"warble", "id"=>"1"}
3231
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3232
+ Completed 200 OK in 15ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3233
+  (0.1ms) rollback transaction
3234
+ Connecting to database specified by database.yml
3235
+  (0.1ms) begin transaction
3236
+ SQL (4.2ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 18:57:03 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 18:57:03 UTC +00:00], ["xml", "<foo>"]]
3237
+  (2.3ms) commit transaction
3238
+  (0.1ms) begin transaction
3239
+  (0.1ms) rollback transaction
3240
+  (0.1ms) begin transaction
3241
+  (0.1ms) SAVEPOINT active_record_1
3242
+ SQL (0.6ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 18:57:03 UTC +00:00], ["token", "9c874cf3958dd3a048f568f9eaecfabe"], ["updated_at", Mon, 12 Aug 2013 18:57:03 UTC +00:00], ["xml", "<?xml version='1.0' encoding='utf-8' ?>\n<Say language='english' voice='alice'>\n Hello you there\n</Say>\n"]]
3243
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3244
+  (0.7ms) rollback transaction
3245
+  (0.1ms) begin transaction
3246
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3247
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3248
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3249
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3250
+  (0.1ms) rollback transaction
3251
+  (0.1ms) begin transaction
3252
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3253
+ Parameters: {"token"=>"warble", "id"=>"1"}
3254
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3255
+ Completed 200 OK in 36559ms (Views: 0.3ms | ActiveRecord: 0.2ms)
3256
+  (0.2ms) rollback transaction
3257
+ Connecting to database specified by database.yml
3258
+  (0.1ms) begin transaction
3259
+ SQL (4.3ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 18:58:05 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 18:58:05 UTC +00:00], ["xml", "<foo>"]]
3260
+  (2.3ms) commit transaction
3261
+  (0.1ms) begin transaction
3262
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3263
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3264
+ Robocall::Robocall Load (0.3ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3265
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms)
3266
+  (0.1ms) rollback transaction
3267
+  (0.1ms) begin transaction
3268
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3269
+ Parameters: {"token"=>"warble", "id"=>"1"}
3270
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3271
+ Completed 200 OK in 13988ms (Views: 0.3ms | ActiveRecord: 0.2ms)
3272
+  (0.2ms) rollback transaction
3273
+  (0.1ms) begin transaction
3274
+  (0.1ms) SAVEPOINT active_record_1
3275
+ SQL (0.7ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 18:58:19 UTC +00:00], ["token", "eb7bfa2db7ac6807b666ab086c431ec5"], ["updated_at", Mon, 12 Aug 2013 18:58:19 UTC +00:00], ["xml", "<?xml version='1.0' encoding='utf-8' ?>\n<Say language='english' voice='alice'>\n Hello you there\n</Say>\n"]]
3276
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3277
+  (0.7ms) rollback transaction
3278
+  (0.1ms) begin transaction
3279
+  (0.1ms) rollback transaction
3280
+ Connecting to database specified by database.yml
3281
+  (0.1ms) begin transaction
3282
+ SQL (5.1ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 18:58:25 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 18:58:25 UTC +00:00], ["xml", "<foo>"]]
3283
+  (2.4ms) commit transaction
3284
+  (0.1ms) begin transaction
3285
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3286
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3287
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3288
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3289
+  (0.1ms) rollback transaction
3290
+  (0.1ms) begin transaction
3291
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3292
+ Parameters: {"token"=>"warble", "id"=>"1"}
3293
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3294
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.2ms)
3295
+  (0.1ms) rollback transaction
3296
+  (0.1ms) begin transaction
3297
+  (0.1ms) SAVEPOINT active_record_1
3298
+ SQL (0.5ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 18:58:25 UTC +00:00], ["token", "7d650d5385f7d9e4eeaefd4f3226e2b7"], ["updated_at", Mon, 12 Aug 2013 18:58:25 UTC +00:00], ["xml", "<?xml version='1.0' encoding='utf-8' ?>\n<Say language='english' voice='alice'>\n Hello you there\n</Say>\n"]]
3299
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3300
+  (0.7ms) rollback transaction
3301
+  (0.1ms) begin transaction
3302
+  (0.1ms) rollback transaction
3303
+ Connecting to database specified by database.yml
3304
+  (0.1ms) begin transaction
3305
+ SQL (4.3ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 18:58:34 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 18:58:34 UTC +00:00], ["xml", "<foo>"]]
3306
+  (2.3ms) commit transaction
3307
+  (0.1ms) begin transaction
3308
+  (0.1ms) rollback transaction
3309
+  (0.1ms) begin transaction
3310
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3311
+ Parameters: {"token"=>"warble", "id"=>"1"}
3312
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3313
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.2ms)
3314
+  (0.1ms) rollback transaction
3315
+  (0.1ms) begin transaction
3316
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3317
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3318
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3319
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
3320
+  (0.1ms) rollback transaction
3321
+  (0.1ms) begin transaction
3322
+  (0.1ms) SAVEPOINT active_record_1
3323
+ SQL (0.6ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 18:58:34 UTC +00:00], ["token", "17ec234e9e32d25c1b2d7e71455a5db5"], ["updated_at", Mon, 12 Aug 2013 18:58:34 UTC +00:00], ["xml", "<?xml version='1.0' encoding='utf-8' ?>\n<Say language='english' voice='alice'>\n Hello you there\n</Say>\n"]]
3324
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3325
+  (0.6ms) rollback transaction
3326
+ Connecting to database specified by database.yml
3327
+  (0.1ms) begin transaction
3328
+ SQL (4.2ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:01:59 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 19:01:59 UTC +00:00], ["xml", "<foo>"]]
3329
+  (2.3ms) commit transaction
3330
+  (0.1ms) begin transaction
3331
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3332
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3333
+ Robocall::Robocall Load (0.4ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3334
+ Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.4ms)
3335
+  (0.1ms) rollback transaction
3336
+  (0.1ms) begin transaction
3337
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3338
+ Parameters: {"token"=>"warble", "id"=>"1"}
3339
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3340
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3341
+  (0.1ms) rollback transaction
3342
+  (0.1ms) begin transaction
3343
+  (0.1ms) rollback transaction
3344
+  (0.1ms) begin transaction
3345
+  (0.1ms) rollback transaction
3346
+ Connecting to database specified by database.yml
3347
+  (0.1ms) begin transaction
3348
+ SQL (4.2ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:05:33 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 19:05:33 UTC +00:00], ["xml", "<foo>"]]
3349
+  (2.4ms) commit transaction
3350
+  (0.1ms) begin transaction
3351
+  (0.1ms) rollback transaction
3352
+  (0.1ms) begin transaction
3353
+  (0.0ms) rollback transaction
3354
+  (0.1ms) begin transaction
3355
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3356
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3357
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3358
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3359
+  (0.1ms) rollback transaction
3360
+  (0.1ms) begin transaction
3361
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3362
+ Parameters: {"token"=>"warble", "id"=>"1"}
3363
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3364
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.2ms)
3365
+  (0.1ms) rollback transaction
3366
+ Connecting to database specified by database.yml
3367
+  (0.1ms) begin transaction
3368
+ SQL (4.4ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:06:00 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 19:06:00 UTC +00:00], ["xml", "<foo>"]]
3369
+  (2.2ms) commit transaction
3370
+  (0.1ms) begin transaction
3371
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3372
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3373
+ Robocall::Robocall Load (0.3ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3374
+ Completed 200 OK in 4ms (Views: 0.1ms | ActiveRecord: 0.3ms)
3375
+  (0.1ms) rollback transaction
3376
+  (0.1ms) begin transaction
3377
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3378
+ Parameters: {"token"=>"warble", "id"=>"1"}
3379
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3380
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.2ms)
3381
+  (0.1ms) rollback transaction
3382
+  (0.1ms) begin transaction
3383
+  (0.1ms) SAVEPOINT active_record_1
3384
+ SQL (0.5ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:06:00 UTC +00:00], ["token", "b54166d1b3005a631e9cdd8cd603d71f"], ["updated_at", Mon, 12 Aug 2013 19:06:00 UTC +00:00], ["xml", "<?xml version='1.0' encoding='utf-8' ?>\n<Say language='english' voice='alice'>\n Hello you there\n</Say>\n"]]
3385
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3386
+  (0.5ms) rollback transaction
3387
+  (0.1ms) begin transaction
3388
+  (0.1ms) rollback transaction
3389
+ Connecting to database specified by database.yml
3390
+  (0.1ms) begin transaction
3391
+ SQL (4.6ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:06:30 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 19:06:30 UTC +00:00], ["xml", "<foo>"]]
3392
+  (3.1ms) commit transaction
3393
+  (0.1ms) begin transaction
3394
+  (0.1ms) rollback transaction
3395
+  (0.1ms) begin transaction
3396
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3397
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3398
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3399
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3400
+  (0.1ms) rollback transaction
3401
+  (0.1ms) begin transaction
3402
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3403
+ Parameters: {"token"=>"warble", "id"=>"1"}
3404
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3405
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.2ms)
3406
+  (0.1ms) rollback transaction
3407
+  (0.1ms) begin transaction
3408
+  (0.1ms) SAVEPOINT active_record_1
3409
+ SQL (0.5ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:06:30 UTC +00:00], ["token", "e2831a0935daea3ce72970bf7e0f22ca"], ["updated_at", Mon, 12 Aug 2013 19:06:30 UTC +00:00], ["xml", "<?xml version='1.0' encoding='utf-8' ?>\n<Say language='english' voice='alice'>\n Hello you there\n</Say>\n"]]
3410
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3411
+  (0.5ms) rollback transaction
3412
+ Connecting to database specified by database.yml
3413
+  (0.1ms) begin transaction
3414
+ SQL (4.4ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:09:19 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 19:09:19 UTC +00:00], ["xml", "<foo>"]]
3415
+  (2.5ms) commit transaction
3416
+  (0.1ms) begin transaction
3417
+  (0.1ms) rollback transaction
3418
+  (0.1ms) begin transaction
3419
+  (0.0ms) rollback transaction
3420
+  (0.1ms) begin transaction
3421
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3422
+ Parameters: {"token"=>"warble", "id"=>"1"}
3423
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3424
+ Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3425
+  (0.1ms) rollback transaction
3426
+  (0.1ms) begin transaction
3427
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3428
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3429
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3430
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
3431
+  (0.1ms) rollback transaction
3432
+ Connecting to database specified by database.yml
3433
+  (0.1ms) begin transaction
3434
+ SQL (4.3ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:09:46 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 19:09:46 UTC +00:00], ["xml", "<foo>"]]
3435
+  (2.5ms) commit transaction
3436
+  (0.1ms) begin transaction
3437
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3438
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3439
+ Robocall::Robocall Load (0.3ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3440
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.3ms)
3441
+  (0.1ms) rollback transaction
3442
+  (0.1ms) begin transaction
3443
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3444
+ Parameters: {"token"=>"warble", "id"=>"1"}
3445
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3446
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3447
+  (0.1ms) rollback transaction
3448
+  (0.1ms) begin transaction
3449
+  (0.1ms) SAVEPOINT active_record_1
3450
+ SQL (0.7ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:09:46 UTC +00:00], ["token", "834e1be6d9a9c97ab18cbe7bc428a47e"], ["updated_at", Mon, 12 Aug 2013 19:09:46 UTC +00:00], ["xml", "<?xml version='1.0' encoding='utf-8' ?>\n<Say language='english' voice='alice'>\n Hello you there\n</Say>\n"]]
3451
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3452
+  (0.5ms) rollback transaction
3453
+  (0.1ms) begin transaction
3454
+  (0.1ms) rollback transaction
3455
+ Connecting to database specified by database.yml
3456
+  (0.1ms) begin transaction
3457
+ SQL (4.5ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:10:03 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 19:10:03 UTC +00:00], ["xml", "<foo>"]]
3458
+  (1.0ms) commit transaction
3459
+  (0.1ms) begin transaction
3460
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3461
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3462
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3463
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3464
+  (0.1ms) rollback transaction
3465
+  (0.1ms) begin transaction
3466
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3467
+ Parameters: {"token"=>"warble", "id"=>"1"}
3468
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3469
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3470
+  (0.1ms) rollback transaction
3471
+  (0.1ms) begin transaction
3472
+  (0.1ms) rollback transaction
3473
+  (0.1ms) begin transaction
3474
+  (0.0ms) rollback transaction
3475
+ Connecting to database specified by database.yml
3476
+  (0.1ms) begin transaction
3477
+ SQL (4.6ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:10:49 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 19:10:49 UTC +00:00], ["xml", "<foo>"]]
3478
+  (2.4ms) commit transaction
3479
+  (0.1ms) begin transaction
3480
+  (0.1ms) SAVEPOINT active_record_1
3481
+ SQL (0.6ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:10:49 UTC +00:00], ["token", "ed24f688a1aad602d9fac581b11e9d72"], ["updated_at", Mon, 12 Aug 2013 19:10:49 UTC +00:00], ["xml", "<?xml version='1.0' encoding='utf-8' ?>\n<Say language='english' voice='alice'>\n Hello you there\n</Say>\n"]]
3482
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3483
+  (0.5ms) rollback transaction
3484
+  (0.1ms) begin transaction
3485
+  (0.1ms) rollback transaction
3486
+  (0.1ms) begin transaction
3487
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3488
+ Parameters: {"token"=>"warble", "id"=>"1"}
3489
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3490
+ Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3491
+  (0.1ms) rollback transaction
3492
+  (0.1ms) begin transaction
3493
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3494
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3495
+ Robocall::Robocall Load (0.3ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3496
+ Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.3ms)
3497
+  (0.1ms) rollback transaction
3498
+ Connecting to database specified by database.yml
3499
+  (0.1ms) begin transaction
3500
+ SQL (4.6ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:11:05 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 19:11:05 UTC +00:00], ["xml", "<foo>"]]
3501
+  (31.8ms) commit transaction
3502
+  (0.1ms) begin transaction
3503
+  (0.1ms) rollback transaction
3504
+  (0.1ms) begin transaction
3505
+  (0.1ms) SAVEPOINT active_record_1
3506
+ SQL (0.5ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:11:05 UTC +00:00], ["token", "341386c4593027c651ba612ebbf9a7f8"], ["updated_at", Mon, 12 Aug 2013 19:11:05 UTC +00:00], ["xml", "<?xml version='1.0' encoding='utf-8' ?>\n<Say language='english' voice='alice'>\n Hello you there\n</Say>\n"]]
3507
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3508
+  (0.6ms) rollback transaction
3509
+  (0.1ms) begin transaction
3510
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3511
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3512
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3513
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3514
+  (0.1ms) rollback transaction
3515
+  (0.1ms) begin transaction
3516
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3517
+ Parameters: {"token"=>"warble", "id"=>"1"}
3518
+ Robocall::Robocall Load (0.4ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3519
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.4ms)
3520
+  (0.1ms) rollback transaction
3521
+ Connecting to database specified by database.yml
3522
+  (0.1ms) begin transaction
3523
+ SQL (4.3ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:11:30 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 19:11:30 UTC +00:00], ["xml", "<foo>"]]
3524
+  (2.4ms) commit transaction
3525
+  (0.1ms) begin transaction
3526
+  (0.1ms) rollback transaction
3527
+  (0.1ms) begin transaction
3528
+  (0.1ms) SAVEPOINT active_record_1
3529
+ SQL (0.5ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:11:30 UTC +00:00], ["token", "4e2078618888c62046d9435b2440d15e"], ["updated_at", Mon, 12 Aug 2013 19:11:30 UTC +00:00], ["xml", "<?xml version='1.0' encoding='utf-8' ?>\n<Say language='english' voice='alice'>\n Hello you there\n</Say>\n"]]
3530
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3531
+  (0.5ms) rollback transaction
3532
+  (0.1ms) begin transaction
3533
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3534
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3535
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3536
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3537
+  (0.1ms) rollback transaction
3538
+  (0.1ms) begin transaction
3539
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3540
+ Parameters: {"token"=>"warble", "id"=>"1"}
3541
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3542
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3543
+  (0.1ms) rollback transaction
3544
+ Connecting to database specified by database.yml
3545
+  (0.1ms) begin transaction
3546
+ SQL (4.3ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:12:48 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 19:12:48 UTC +00:00], ["xml", "<foo>"]]
3547
+  (2.2ms) commit transaction
3548
+  (0.1ms) begin transaction
3549
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3550
+ Parameters: {"token"=>"warble", "id"=>"1"}
3551
+ Robocall::Robocall Load (0.3ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3552
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.3ms)
3553
+  (0.1ms) rollback transaction
3554
+  (0.1ms) begin transaction
3555
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3556
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3557
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3558
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3559
+  (0.1ms) rollback transaction
3560
+  (0.1ms) begin transaction
3561
+  (0.1ms) rollback transaction
3562
+  (0.1ms) begin transaction
3563
+  (0.1ms) rollback transaction
3564
+ Connecting to database specified by database.yml
3565
+  (0.1ms) begin transaction
3566
+ SQL (4.5ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:13:22 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 19:13:22 UTC +00:00], ["xml", "<foo>"]]
3567
+  (2.3ms) commit transaction
3568
+  (0.1ms) begin transaction
3569
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3570
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3571
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3572
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3573
+  (0.1ms) rollback transaction
3574
+  (0.1ms) begin transaction
3575
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3576
+ Parameters: {"token"=>"warble", "id"=>"1"}
3577
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3578
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.2ms)
3579
+  (0.1ms) rollback transaction
3580
+  (0.1ms) begin transaction
3581
+  (0.0ms) rollback transaction
3582
+  (0.1ms) begin transaction
3583
+  (0.1ms) rollback transaction
3584
+ Connecting to database specified by database.yml
3585
+  (0.1ms) begin transaction
3586
+ SQL (4.2ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:13:41 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 19:13:41 UTC +00:00], ["xml", "<foo>"]]
3587
+  (2.8ms) commit transaction
3588
+  (0.1ms) begin transaction
3589
+  (0.1ms) rollback transaction
3590
+  (0.1ms) begin transaction
3591
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3592
+ Parameters: {"token"=>"warble", "id"=>"1"}
3593
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3594
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.2ms)
3595
+  (0.1ms) rollback transaction
3596
+  (0.1ms) begin transaction
3597
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3598
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3599
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3600
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.2ms)
3601
+  (0.1ms) rollback transaction
3602
+  (0.1ms) begin transaction
3603
+  (0.1ms) SAVEPOINT active_record_1
3604
+ SQL (0.5ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:13:41 UTC +00:00], ["token", "f37f9b7ded22544a05ab23804bcceedf"], ["updated_at", Mon, 12 Aug 2013 19:13:41 UTC +00:00], ["xml", "<?xml version='1.0' encoding='utf-8' ?>\n<Say language='english' voice='alice'>\n Hello you there\n</Say>\n"]]
3605
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3606
+  (0.5ms) rollback transaction
3607
+ Connecting to database specified by database.yml
3608
+  (0.1ms) begin transaction
3609
+ SQL (6.8ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:14:29 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 19:14:29 UTC +00:00], ["xml", "<foo>"]]
3610
+  (2.5ms) commit transaction
3611
+  (0.1ms) begin transaction
3612
+  (0.1ms) SAVEPOINT active_record_1
3613
+ SQL (0.6ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:14:29 UTC +00:00], ["token", "5b39d56b56d8dd63a3ff8c9de3d3f6e6"], ["updated_at", Mon, 12 Aug 2013 19:14:29 UTC +00:00], ["xml", "<?xml version='1.0' encoding='utf-8' ?>\n<Say language='english' voice='alice'>\n Hello you there\n</Say>\n"]]
3614
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3615
+  (0.5ms) rollback transaction
3616
+  (0.1ms) begin transaction
3617
+  (0.1ms) rollback transaction
3618
+  (0.1ms) begin transaction
3619
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3620
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3621
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3622
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3623
+  (0.1ms) rollback transaction
3624
+  (0.1ms) begin transaction
3625
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3626
+ Parameters: {"token"=>"warble", "id"=>"1"}
3627
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3628
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.2ms)
3629
+  (0.1ms) rollback transaction
3630
+ Connecting to database specified by database.yml
3631
+  (0.1ms) begin transaction
3632
+ SQL (4.3ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:15:25 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 19:15:25 UTC +00:00], ["xml", "<foo>"]]
3633
+  (2.6ms) commit transaction
3634
+  (0.1ms) begin transaction
3635
+  (0.1ms) SAVEPOINT active_record_1
3636
+ SQL (0.5ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:15:25 UTC +00:00], ["token", "c317b43f078d1c5b6c517f4e82498062"], ["updated_at", Mon, 12 Aug 2013 19:15:25 UTC +00:00], ["xml", "<?xml version='1.0' encoding='utf-8' ?>\n<Say language='english' voice='alice'>\n Hello you there\n</Say>\n"]]
3637
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3638
+  (0.6ms) rollback transaction
3639
+  (0.1ms) begin transaction
3640
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3641
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3642
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3643
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3644
+  (0.1ms) rollback transaction
3645
+  (0.1ms) begin transaction
3646
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3647
+ Parameters: {"token"=>"warble", "id"=>"1"}
3648
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3649
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3650
+  (0.1ms) rollback transaction
3651
+  (0.1ms) begin transaction
3652
+  (0.1ms) rollback transaction
3653
+ Connecting to database specified by database.yml
3654
+  (0.1ms) begin transaction
3655
+ SQL (4.2ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:15:57 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 19:15:57 UTC +00:00], ["xml", "<foo>"]]
3656
+  (1.1ms) commit transaction
3657
+  (0.1ms) begin transaction
3658
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3659
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3660
+ Robocall::Robocall Load (0.3ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3661
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.3ms)
3662
+  (0.1ms) rollback transaction
3663
+  (0.1ms) begin transaction
3664
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3665
+ Parameters: {"token"=>"warble", "id"=>"1"}
3666
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3667
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.2ms)
3668
+  (0.1ms) rollback transaction
3669
+  (0.1ms) begin transaction
3670
+  (0.1ms) rollback transaction
3671
+  (0.1ms) begin transaction
3672
+  (0.1ms) rollback transaction
3673
+ Connecting to database specified by database.yml
3674
+  (0.1ms) begin transaction
3675
+ SQL (4.3ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:20:47 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 19:20:47 UTC +00:00], ["xml", "<foo>"]]
3676
+  (2.3ms) commit transaction
3677
+  (0.1ms) begin transaction
3678
+  (0.1ms) rollback transaction
3679
+  (0.1ms) begin transaction
3680
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3681
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3682
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3683
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3684
+  (0.1ms) rollback transaction
3685
+  (0.1ms) begin transaction
3686
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3687
+ Parameters: {"token"=>"warble", "id"=>"1"}
3688
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3689
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3690
+  (0.1ms) rollback transaction
3691
+  (0.1ms) begin transaction
3692
+  (0.1ms) SAVEPOINT active_record_1
3693
+ SQL (0.6ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:20:48 UTC +00:00], ["token", "c4ba633db183858ae60586f015eb074d"], ["updated_at", Mon, 12 Aug 2013 19:20:48 UTC +00:00], ["xml", "<?xml version='1.0' encoding='utf-8' ?>\n<Say language='english' voice='alice'>\n Hello you there\n</Say>\n"]]
3694
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3695
+  (0.5ms) rollback transaction
3696
+ Connecting to database specified by database.yml
3697
+  (0.1ms) begin transaction
3698
+ SQL (4.5ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:21:23 UTC +00:00], ["token", "MyString"], ["updated_at", Mon, 12 Aug 2013 19:21:23 UTC +00:00], ["xml", "<foo>"]]
3699
+  (3.5ms) commit transaction
3700
+  (0.1ms) begin transaction
3701
+  (0.1ms) rollback transaction
3702
+  (0.1ms) begin transaction
3703
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3704
+ Parameters: {"token"=>"MyString", "id"=>"1"}
3705
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3706
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3707
+  (0.1ms) rollback transaction
3708
+  (0.1ms) begin transaction
3709
+ Processing by Robocall::RobocallsController#connected_to_caller as HTML
3710
+ Parameters: {"token"=>"warble", "id"=>"1"}
3711
+ Robocall::Robocall Load (0.2ms) SELECT "robocall_robocalls".* FROM "robocall_robocalls" WHERE "robocall_robocalls"."id" = 1 LIMIT 1
3712
+ Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.2ms)
3713
+  (0.1ms) rollback transaction
3714
+  (0.1ms) begin transaction
3715
+  (0.1ms) SAVEPOINT active_record_1
3716
+ SQL (0.5ms) INSERT INTO "robocall_robocalls" ("created_at", "token", "updated_at", "xml") VALUES (?, ?, ?, ?) [["created_at", Mon, 12 Aug 2013 19:21:23 UTC +00:00], ["token", "2bcfb9b6e5a8929d2122717047a94a91"], ["updated_at", Mon, 12 Aug 2013 19:21:23 UTC +00:00], ["xml", "<?xml version='1.0' encoding='utf-8' ?>\n<Say language='english' voice='alice'>\n Hello you there\n</Say>\n"]]
3717
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3718
+  (0.7ms) rollback transaction