api_explorer 0.0.5 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.md CHANGED
@@ -11,6 +11,7 @@ API Explorer is a tool that reads a specification and creates a console where de
11
11
  - Specify HTTP headers
12
12
  - Specify Request parameters
13
13
  - Show description of the web service, which can be used as a documentation of the web services.
14
+ - Supports HTTP basic authentication and HMAC-SHA1 hash authentication.
14
15
 
15
16
  ## Precondition
16
17
  Given that it makes a request to the same server, it requires a multi-threaded server. On this example we will use 'thin' but it should work with 'unicorn' as well.
@@ -29,7 +30,7 @@ bundle install
29
30
  ```
30
31
 
31
32
 
32
- Set thread dsafe mode in development.rb (or the right environment)
33
+ Set thread safe mode in development.rb (or the right environment)
33
34
 
34
35
  ```
35
36
  config.thread_safe!
@@ -115,6 +116,14 @@ http://localhost:3000/api_explorer
115
116
  - Add features
116
117
  - Send pull request
117
118
 
119
+ ## Next improvements
120
+
121
+ - Better error handling
122
+ - Test with unicorn
123
+ - Test with Rails 4
124
+ - More authentication methods
125
+ - Support absolute URLs to test 3rd party APIs.
126
+
118
127
  ## License
119
128
 
120
129
  See LICENSE file for details
@@ -180,6 +180,8 @@ $(document).ready(function(){
180
180
 
181
181
 
182
182
  response_placeholder.slideDown();
183
+ response_placeholder.find(".tab_response").find('input[type="radio"]').prop("checked", true);
184
+
183
185
  $('html, body').animate({
184
186
  scrollTop: response_placeholder.offset().top + 50
185
187
  }, 500);
@@ -187,7 +189,9 @@ $(document).ready(function(){
187
189
 
188
190
  console.log(response);
189
191
 
190
- })
192
+ }).error(function() {
193
+ alert('There was an error executing the webservice. Please check if you are using a multithreaded server');
194
+ });
191
195
 
192
196
  });
193
197
  })
@@ -42,12 +42,21 @@
42
42
  width: 924px;
43
43
  }
44
44
 
45
+ .api_explorer .disclaimer {
46
+ margin: 0 auto;
47
+ width: 924px;
48
+ margin-bottom: 20px;
49
+ font-size: 0.6em;
50
+ margin-top: 2px;
51
+ text-align: right;
52
+ }
53
+
45
54
  .api_explorer .panel {
46
55
  background: #fff;
47
56
  border: 1px solid;
48
57
  border-color: #d6d7da #d5d8dd #c7c8ca;
49
58
  border-radius: 3px;
50
- margin-bottom: 20px;
59
+ margin-bottom: 0;
51
60
  }
52
61
 
53
62
  .api_explorer .panel_header{
@@ -56,6 +65,8 @@
56
65
  border-top-right-radius: 3px;
57
66
  background-color: #f6f7f8;
58
67
  padding: 12px;
68
+ font-weight: bold;
69
+ font-size: 1.3em;
59
70
  }
60
71
 
61
72
 
@@ -13,7 +13,7 @@ module ApiExplorer
13
13
 
14
14
  render :json=> {
15
15
  :parameters_html=> (
16
- render_to_string("api_explorer/api/parameters", :locals=>{:parameters=>@method['parameters']} ,:layout => false)
16
+ render_to_string("api_explorer/api/parameters", :locals=>{:parameters=>@method['parameters'], :values=>session} ,:layout => false)
17
17
  ), :description=>@method['description']
18
18
  }
19
19
  end
@@ -39,7 +39,13 @@ module ApiExplorer
39
39
  request = Net::HTTP::Delete.new(uri.request_uri)
40
40
  end
41
41
 
42
- request.set_form_data( params.except([:action, :controller, :header, :authentication_type, :auth]) )
42
+
43
+ form_hash = params.except([:action, :controller, :header, :authentication_type, :auth])
44
+ form_hash.keys.each do |key|
45
+ session['api_explorer_' + key.to_s] = form_hash[key]
46
+ end
47
+
48
+ request.set_form_data( form_hash )
43
49
  headers.each do |header|
44
50
  request[header[:name]] = header[:value]
45
51
  end
@@ -1,7 +1,10 @@
1
1
  <div class="panel_header">
2
+
2
3
  API Explorer
3
4
  </div>
4
5
  <div class="panel_body">
6
+
7
+ <div class="editor-label"> Please select the API method: </div>
5
8
  <select class="methods" id="api_methods">
6
9
  <option value="">Select one</option>
7
10
  <%= @methods.each do |method| %>
@@ -4,5 +4,5 @@
4
4
  <h2>Parameters</h2>
5
5
  <% parameters.each do |parameter| %>
6
6
  <div class="editor-label"> <%= parameter['name'] %> </div>
7
- <div class="editor-field"> <input type="text" placeholder="Value" name="<%= parameter['name']%>" class="parameter_input"/> </div>
7
+ <div class="editor-field"> <input type="text" placeholder="Value" name="<%= parameter['name']%>" class="parameter_input" value="<%= values['api_explorer_' + parameter['name'] ] %>"/> </div>
8
8
  <% end %>
@@ -12,5 +12,8 @@
12
12
  <%= yield %>
13
13
  </div>
14
14
  </div>
15
+ <div class="disclaimer">
16
+ Created by <a href="http://www.toptierlabs.com" target="_blank">TopTier labs</a>
17
+ </div>
15
18
  </body>
16
19
  </html>
@@ -1,3 +1,3 @@
1
1
  module ApiExplorer
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
@@ -34405,3 +34405,2274 @@ Completed 200 OK in 206.3ms (Views: 0.6ms | ActiveRecord: 0.0ms)
34405
34405
 
34406
34406
  Started GET "/assets/api_explorer/maximize.png" for 127.0.0.1 at 2013-11-21 15:44:57 -0200
34407
34407
  Served asset /api_explorer/maximize.png - 304 Not Modified (2ms)
34408
+
34409
+
34410
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-21 18:53:09 -0200
34411
+ Connecting to database specified by database.yml
34412
+ Processing by ApiExplorer::ApiController#index as HTML
34413
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.5ms)
34414
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (0.8ms)
34415
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.5ms)
34416
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (41.6ms)
34417
+ Completed 200 OK in 183.8ms (Views: 162.6ms | ActiveRecord: 0.0ms)
34418
+
34419
+
34420
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-21 18:53:10 -0200
34421
+ Served asset /api_explorer/application.css - 304 Not Modified (4ms)
34422
+
34423
+
34424
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-21 18:53:10 -0200
34425
+ Served asset /jquery.js - 200 OK (2ms)
34426
+
34427
+
34428
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-21 18:53:10 -0200
34429
+ Served asset /jquery_ujs.js - 200 OK (1ms)
34430
+
34431
+
34432
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-21 18:53:10 -0200
34433
+ Served asset /api_explorer/api.js - 304 Not Modified (2ms)
34434
+
34435
+
34436
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-21 18:53:10 -0200
34437
+ Served asset /api_explorer/application.js - 304 Not Modified (5ms)
34438
+
34439
+
34440
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-21 18:53:10 -0200
34441
+ Served asset /api_explorer/api.css - 304 Not Modified (21ms)
34442
+
34443
+
34444
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-21 18:53:11 -0200
34445
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
34446
+
34447
+
34448
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-21 18:53:11 -0200
34449
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
34450
+
34451
+
34452
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-21 18:53:12 -0200
34453
+ Processing by ApiExplorer::ApiController#method as */*
34454
+ Parameters: {"position"=>"2"}
34455
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.7ms)
34456
+ Completed 200 OK in 25.6ms (Views: 0.3ms | ActiveRecord: 0.0ms)
34457
+
34458
+
34459
+ Started GET "/assets/api_explorer/clear.png" for 127.0.0.1 at 2013-11-21 18:53:12 -0200
34460
+ Served asset /api_explorer/clear.png - 304 Not Modified (14ms)
34461
+
34462
+
34463
+ Started GET "/assets/api_explorer/minimize.png" for 127.0.0.1 at 2013-11-21 18:53:12 -0200
34464
+ Served asset /api_explorer/minimize.png - 304 Not Modified (14ms)
34465
+
34466
+
34467
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-21 18:53:16 -0200
34468
+ Processing by ApiExplorer::ApiController#method as */*
34469
+ Parameters: {"position"=>"2"}
34470
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
34471
+ Completed 200 OK in 1.2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
34472
+
34473
+
34474
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-21 18:53:18 -0200
34475
+ Processing by ApiExplorer::ApiController#method as */*
34476
+ Parameters: {"position"=>"1"}
34477
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.0ms)
34478
+ Completed 200 OK in 0.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
34479
+
34480
+
34481
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-21 18:53:22 -0200
34482
+ Processing by ApiExplorer::ApiController#method as */*
34483
+ Parameters: {"position"=>"2"}
34484
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
34485
+ Completed 200 OK in 1.0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
34486
+
34487
+
34488
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-21 19:05:17 -0200
34489
+ Processing by ApiExplorer::ApiController#execute as */*
34490
+ Parameters: {"API_TOKEN"=>"", "email"=>"", "password"=>"[FILTERED]", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users/login", "method"=>"POST"}
34491
+ Completed 500 Internal Server Error in 60050.5ms
34492
+
34493
+ Timeout::Error (Timeout::Error):
34494
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/protocol.rb:146:in `rescue in rbuf_fill'
34495
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/protocol.rb:140:in `rbuf_fill'
34496
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/protocol.rb:122:in `readuntil'
34497
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/protocol.rb:132:in `readline'
34498
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:2563:in `read_status_line'
34499
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:2552:in `read_new'
34500
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:1320:in `block in transport_request'
34501
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:1317:in `catch'
34502
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:1317:in `transport_request'
34503
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:1294:in `request'
34504
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:1287:in `block in request'
34505
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:746:in `start'
34506
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:1285:in `request'
34507
+ /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/controllers/api_explorer/api_controller.rb:55:in `execute'
34508
+ actionpack (3.2.15) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
34509
+ actionpack (3.2.15) lib/abstract_controller/base.rb:167:in `process_action'
34510
+ actionpack (3.2.15) lib/action_controller/metal/rendering.rb:10:in `process_action'
34511
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
34512
+ activesupport (3.2.15) lib/active_support/callbacks.rb:414:in `_run__2513944963409907079__process_action__2116478092679601714__callbacks'
34513
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
34514
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
34515
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
34516
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:17:in `process_action'
34517
+ actionpack (3.2.15) lib/action_controller/metal/rescue.rb:29:in `process_action'
34518
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
34519
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `block in instrument'
34520
+ activesupport (3.2.15) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
34521
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `instrument'
34522
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
34523
+ actionpack (3.2.15) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
34524
+ activerecord (3.2.15) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
34525
+ actionpack (3.2.15) lib/abstract_controller/base.rb:121:in `process'
34526
+ actionpack (3.2.15) lib/abstract_controller/rendering.rb:45:in `process'
34527
+ actionpack (3.2.15) lib/action_controller/metal.rb:203:in `dispatch'
34528
+ actionpack (3.2.15) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
34529
+ actionpack (3.2.15) lib/action_controller/metal.rb:246:in `block in action'
34530
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `call'
34531
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
34532
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:36:in `call'
34533
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
34534
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
34535
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
34536
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
34537
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
34538
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
34539
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
34540
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
34541
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
34542
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
34543
+ actionpack (3.2.15) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
34544
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
34545
+ rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
34546
+ actionpack (3.2.15) lib/action_dispatch/middleware/head.rb:14:in `call'
34547
+ actionpack (3.2.15) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
34548
+ actionpack (3.2.15) lib/action_dispatch/middleware/flash.rb:242:in `call'
34549
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
34550
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
34551
+ actionpack (3.2.15) lib/action_dispatch/middleware/cookies.rb:341:in `call'
34552
+ activerecord (3.2.15) lib/active_record/query_cache.rb:64:in `call'
34553
+ activerecord (3.2.15) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
34554
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
34555
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `_run__912341482569634225__call__586978946858831650__callbacks'
34556
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
34557
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
34558
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
34559
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
34560
+ actionpack (3.2.15) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
34561
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
34562
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
34563
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
34564
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
34565
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
34566
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
34567
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
34568
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
34569
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
34570
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
34571
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
34572
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
34573
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
34574
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
34575
+ railties (3.2.15) lib/rails/rack/log_tailer.rb:17:in `call'
34576
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
34577
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
34578
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
34579
+ thin (1.6.1) lib/thin/connection.rb:55:in `process'
34580
+ thin (1.6.1) lib/thin/connection.rb:41:in `receive_data'
34581
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run_machine'
34582
+ eventmachine (1.0.3) lib/eventmachine.rb:187:in `run'
34583
+ thin (1.6.1) lib/thin/backends/base.rb:73:in `start'
34584
+ thin (1.6.1) lib/thin/server.rb:162:in `start'
34585
+ rack (1.4.5) lib/rack/handler/thin.rb:13:in `run'
34586
+ rack (1.4.5) lib/rack/server.rb:268:in `start'
34587
+ railties (3.2.15) lib/rails/commands/server.rb:70:in `start'
34588
+ railties (3.2.15) lib/rails/commands.rb:55:in `block in <top (required)>'
34589
+ railties (3.2.15) lib/rails/commands.rb:50:in `tap'
34590
+ railties (3.2.15) lib/rails/commands.rb:50:in `<top (required)>'
34591
+ script/rails:6:in `require'
34592
+ script/rails:6:in `<main>'
34593
+
34594
+
34595
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
34596
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
34597
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.6ms)
34598
+
34599
+
34600
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-21 19:08:24 -0200
34601
+ Connecting to database specified by database.yml
34602
+ Processing by ApiExplorer::ApiController#index as HTML
34603
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.2ms)
34604
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (0.4ms)
34605
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.2ms)
34606
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (3.4ms)
34607
+ Completed 200 OK in 65.6ms (Views: 65.2ms | ActiveRecord: 0.0ms)
34608
+
34609
+
34610
+
34611
+
34612
+
34613
+
34614
+
34615
+
34616
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-21 19:08:24 -0200
34617
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-21 19:08:24 -0200
34618
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-21 19:08:24 -0200
34619
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-21 19:08:24 -0200
34620
+ Served asset /api_explorer/api.css - 304 Not Modified (3ms)
34621
+ Served asset /api_explorer/api.js - 304 Not Modified (2ms)
34622
+ Served asset /api_explorer/application.css - 304 Not Modified (3ms)
34623
+ Served asset /api_explorer/application.js - 304 Not Modified (13ms)
34624
+
34625
+
34626
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-21 19:08:25 -0200
34627
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
34628
+
34629
+
34630
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-21 19:08:25 -0200
34631
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
34632
+
34633
+
34634
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-21 19:08:27 -0200
34635
+ Processing by ApiExplorer::ApiController#method as */*
34636
+ Parameters: {"position"=>"1"}
34637
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.7ms)
34638
+ Completed 200 OK in 6.3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
34639
+
34640
+
34641
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-21 19:08:30 -0200
34642
+ Processing by ApiExplorer::ApiController#method as */*
34643
+ Parameters: {"position"=>"2"}
34644
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
34645
+ Completed 200 OK in 1.1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
34646
+
34647
+
34648
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-21 19:08:47 -0200
34649
+ Processing by ApiExplorer::ApiController#execute as */*
34650
+ Parameters: {"API_TOKEN"=>"", "email"=>"", "password"=>"[FILTERED]", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users/login", "method"=>"POST"}
34651
+
34652
+
34653
+ Started POST "/v1/users/login" for 127.0.0.1 at 2013-11-21 19:08:47 -0200
34654
+
34655
+ ActionController::RoutingError (No route matches [POST] "/v1/users/login"):
34656
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
34657
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
34658
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
34659
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
34660
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
34661
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
34662
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
34663
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
34664
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
34665
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
34666
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
34667
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
34668
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
34669
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
34670
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
34671
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
34672
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
34673
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
34674
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
34675
+
34676
+
34677
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
34678
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.5ms)
34679
+ Completed 200 OK in 253.7ms (Views: 0.7ms | ActiveRecord: 0.0ms)
34680
+
34681
+
34682
+ Started GET "/assets/api_explorer/maximize.png" for 127.0.0.1 at 2013-11-21 19:08:48 -0200
34683
+ Served asset /api_explorer/maximize.png - 304 Not Modified (18ms)
34684
+
34685
+
34686
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-21 19:13:04 -0200
34687
+ Connecting to database specified by database.yml
34688
+ Processing by ApiExplorer::ApiController#execute as */*
34689
+ Parameters: {"API_TOKEN"=>"", "email"=>"", "password"=>"[FILTERED]", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users/login", "method"=>"POST"}
34690
+ Completed 500 Internal Server Error in 12.6ms
34691
+
34692
+ NameError (undefined local variable or method `dasdsaads' for #<ApiExplorer::ApiController:0x007fc2d70f9d70>):
34693
+ /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/controllers/api_explorer/api_controller.rb:28:in `execute'
34694
+ actionpack (3.2.15) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
34695
+ actionpack (3.2.15) lib/abstract_controller/base.rb:167:in `process_action'
34696
+ actionpack (3.2.15) lib/action_controller/metal/rendering.rb:10:in `process_action'
34697
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
34698
+ activesupport (3.2.15) lib/active_support/callbacks.rb:414:in `_run__4414480938751402444__process_action__1307336549803217794__callbacks'
34699
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
34700
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
34701
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
34702
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:17:in `process_action'
34703
+ actionpack (3.2.15) lib/action_controller/metal/rescue.rb:29:in `process_action'
34704
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
34705
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `block in instrument'
34706
+ activesupport (3.2.15) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
34707
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `instrument'
34708
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
34709
+ actionpack (3.2.15) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
34710
+ activerecord (3.2.15) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
34711
+ actionpack (3.2.15) lib/abstract_controller/base.rb:121:in `process'
34712
+ actionpack (3.2.15) lib/abstract_controller/rendering.rb:45:in `process'
34713
+ actionpack (3.2.15) lib/action_controller/metal.rb:203:in `dispatch'
34714
+ actionpack (3.2.15) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
34715
+ actionpack (3.2.15) lib/action_controller/metal.rb:246:in `block in action'
34716
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `call'
34717
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
34718
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:36:in `call'
34719
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
34720
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
34721
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
34722
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
34723
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
34724
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
34725
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
34726
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
34727
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
34728
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
34729
+ actionpack (3.2.15) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
34730
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
34731
+ rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
34732
+ actionpack (3.2.15) lib/action_dispatch/middleware/head.rb:14:in `call'
34733
+ actionpack (3.2.15) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
34734
+ actionpack (3.2.15) lib/action_dispatch/middleware/flash.rb:242:in `call'
34735
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
34736
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
34737
+ actionpack (3.2.15) lib/action_dispatch/middleware/cookies.rb:341:in `call'
34738
+ activerecord (3.2.15) lib/active_record/query_cache.rb:64:in `call'
34739
+ activerecord (3.2.15) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
34740
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
34741
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `_run__690374998323290308__call__920631571128395446__callbacks'
34742
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
34743
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
34744
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
34745
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
34746
+ actionpack (3.2.15) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
34747
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
34748
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
34749
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
34750
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
34751
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
34752
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
34753
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
34754
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
34755
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
34756
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
34757
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
34758
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
34759
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
34760
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
34761
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
34762
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
34763
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
34764
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
34765
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
34766
+
34767
+
34768
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
34769
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
34770
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (23.7ms)
34771
+
34772
+
34773
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-21 19:13:08 -0200
34774
+ Processing by ApiExplorer::ApiController#execute as */*
34775
+ Parameters: {"API_TOKEN"=>"", "email"=>"", "password"=>"[FILTERED]", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users/login", "method"=>"POST"}
34776
+ Completed 500 Internal Server Error in 2.2ms
34777
+
34778
+ NameError (undefined local variable or method `dasdsaads' for #<ApiExplorer::ApiController:0x007fc2d7744428>):
34779
+ /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/controllers/api_explorer/api_controller.rb:28:in `execute'
34780
+ actionpack (3.2.15) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
34781
+ actionpack (3.2.15) lib/abstract_controller/base.rb:167:in `process_action'
34782
+ actionpack (3.2.15) lib/action_controller/metal/rendering.rb:10:in `process_action'
34783
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
34784
+ activesupport (3.2.15) lib/active_support/callbacks.rb:414:in `_run__4414480938751402444__process_action__1307336549803217794__callbacks'
34785
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
34786
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
34787
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
34788
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:17:in `process_action'
34789
+ actionpack (3.2.15) lib/action_controller/metal/rescue.rb:29:in `process_action'
34790
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
34791
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `block in instrument'
34792
+ activesupport (3.2.15) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
34793
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `instrument'
34794
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
34795
+ actionpack (3.2.15) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
34796
+ activerecord (3.2.15) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
34797
+ actionpack (3.2.15) lib/abstract_controller/base.rb:121:in `process'
34798
+ actionpack (3.2.15) lib/abstract_controller/rendering.rb:45:in `process'
34799
+ actionpack (3.2.15) lib/action_controller/metal.rb:203:in `dispatch'
34800
+ actionpack (3.2.15) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
34801
+ actionpack (3.2.15) lib/action_controller/metal.rb:246:in `block in action'
34802
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `call'
34803
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
34804
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:36:in `call'
34805
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
34806
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
34807
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
34808
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
34809
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
34810
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
34811
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
34812
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
34813
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
34814
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
34815
+ actionpack (3.2.15) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
34816
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
34817
+ rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
34818
+ actionpack (3.2.15) lib/action_dispatch/middleware/head.rb:14:in `call'
34819
+ actionpack (3.2.15) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
34820
+ actionpack (3.2.15) lib/action_dispatch/middleware/flash.rb:242:in `call'
34821
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
34822
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
34823
+ actionpack (3.2.15) lib/action_dispatch/middleware/cookies.rb:341:in `call'
34824
+ activerecord (3.2.15) lib/active_record/query_cache.rb:64:in `call'
34825
+ activerecord (3.2.15) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
34826
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
34827
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `_run__690374998323290308__call__920631571128395446__callbacks'
34828
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
34829
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
34830
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
34831
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
34832
+ actionpack (3.2.15) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
34833
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
34834
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
34835
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
34836
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
34837
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
34838
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
34839
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
34840
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
34841
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
34842
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
34843
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
34844
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
34845
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
34846
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
34847
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
34848
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
34849
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
34850
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
34851
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
34852
+
34853
+
34854
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
34855
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
34856
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.4ms)
34857
+
34858
+
34859
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-21 19:13:34 -0200
34860
+ Processing by ApiExplorer::ApiController#index as HTML
34861
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.3ms)
34862
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (0.5ms)
34863
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.2ms)
34864
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (3.7ms)
34865
+ Compiled api_explorer/api.js (0ms) (pid 5110)
34866
+ Compiled api_explorer/application.js (2ms) (pid 5110)
34867
+ Completed 200 OK in 80.7ms (Views: 80.3ms | ActiveRecord: 0.0ms)
34868
+
34869
+
34870
+
34871
+
34872
+
34873
+
34874
+
34875
+
34876
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-21 19:13:34 -0200
34877
+
34878
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-21 19:13:34 -0200
34879
+
34880
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-21 19:13:34 -0200
34881
+
34882
+ Served asset /api_explorer/application.css - 304 Not Modified (4ms)
34883
+
34884
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-21 19:13:34 -0200
34885
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-21 19:13:34 -0200
34886
+ Served asset /api_explorer/api.css - 304 Not Modified (3ms)
34887
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-21 19:13:34 -0200
34888
+ Served asset /jquery_ujs.js - 304 Not Modified (5ms)
34889
+ Served asset /api_explorer/api.js - 200 OK (2ms)
34890
+ Served asset /jquery.js - 304 Not Modified (22ms)
34891
+ Served asset /api_explorer/application.js - 304 Not Modified (16ms)
34892
+
34893
+
34894
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-21 19:13:35 -0200
34895
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
34896
+
34897
+
34898
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-21 19:13:35 -0200
34899
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
34900
+
34901
+
34902
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-21 19:13:41 -0200
34903
+ Processing by ApiExplorer::ApiController#method as */*
34904
+ Parameters: {"position"=>"2"}
34905
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.5ms)
34906
+ Completed 200 OK in 5.6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
34907
+
34908
+
34909
+
34910
+
34911
+ Started GET "/assets/api_explorer/clear.png" for 127.0.0.1 at 2013-11-21 19:13:41 -0200
34912
+ Started GET "/assets/api_explorer/minimize.png" for 127.0.0.1 at 2013-11-21 19:13:41 -0200
34913
+ Served asset /api_explorer/clear.png - 304 Not Modified (2ms)
34914
+ Served asset /api_explorer/minimize.png - 304 Not Modified (3ms)
34915
+
34916
+
34917
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-21 19:13:47 -0200
34918
+ Processing by ApiExplorer::ApiController#execute as */*
34919
+ Parameters: {"API_TOKEN"=>"", "email"=>"", "password"=>"[FILTERED]", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users/login", "method"=>"POST"}
34920
+ Completed 500 Internal Server Error in 2.0ms
34921
+
34922
+ NameError (undefined local variable or method `dasdsaads' for #<ApiExplorer::ApiController:0x007fc2d735b1b8>):
34923
+ /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/controllers/api_explorer/api_controller.rb:28:in `execute'
34924
+ actionpack (3.2.15) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
34925
+ actionpack (3.2.15) lib/abstract_controller/base.rb:167:in `process_action'
34926
+ actionpack (3.2.15) lib/action_controller/metal/rendering.rb:10:in `process_action'
34927
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
34928
+ activesupport (3.2.15) lib/active_support/callbacks.rb:414:in `_run__4414480938751402444__process_action__1307336549803217794__callbacks'
34929
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
34930
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
34931
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
34932
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:17:in `process_action'
34933
+ actionpack (3.2.15) lib/action_controller/metal/rescue.rb:29:in `process_action'
34934
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
34935
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `block in instrument'
34936
+ activesupport (3.2.15) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
34937
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `instrument'
34938
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
34939
+ actionpack (3.2.15) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
34940
+ activerecord (3.2.15) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
34941
+ actionpack (3.2.15) lib/abstract_controller/base.rb:121:in `process'
34942
+ actionpack (3.2.15) lib/abstract_controller/rendering.rb:45:in `process'
34943
+ actionpack (3.2.15) lib/action_controller/metal.rb:203:in `dispatch'
34944
+ actionpack (3.2.15) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
34945
+ actionpack (3.2.15) lib/action_controller/metal.rb:246:in `block in action'
34946
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `call'
34947
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
34948
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:36:in `call'
34949
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
34950
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
34951
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
34952
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
34953
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
34954
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
34955
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
34956
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
34957
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
34958
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
34959
+ actionpack (3.2.15) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
34960
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
34961
+ rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
34962
+ actionpack (3.2.15) lib/action_dispatch/middleware/head.rb:14:in `call'
34963
+ actionpack (3.2.15) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
34964
+ actionpack (3.2.15) lib/action_dispatch/middleware/flash.rb:242:in `call'
34965
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
34966
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
34967
+ actionpack (3.2.15) lib/action_dispatch/middleware/cookies.rb:341:in `call'
34968
+ activerecord (3.2.15) lib/active_record/query_cache.rb:64:in `call'
34969
+ activerecord (3.2.15) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
34970
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
34971
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `_run__690374998323290308__call__920631571128395446__callbacks'
34972
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
34973
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
34974
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
34975
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
34976
+ actionpack (3.2.15) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
34977
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
34978
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
34979
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
34980
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
34981
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
34982
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
34983
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
34984
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
34985
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
34986
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
34987
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
34988
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
34989
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
34990
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
34991
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
34992
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
34993
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
34994
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
34995
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
34996
+
34997
+
34998
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
34999
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
35000
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.0ms)
35001
+
35002
+
35003
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-21 19:13:49 -0200
35004
+ Processing by ApiExplorer::ApiController#execute as */*
35005
+ Parameters: {"API_TOKEN"=>"", "email"=>"", "password"=>"[FILTERED]", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users/login", "method"=>"POST"}
35006
+ Completed 500 Internal Server Error in 2.4ms
35007
+
35008
+ NameError (undefined local variable or method `dasdsaads' for #<ApiExplorer::ApiController:0x007fc2d52775a0>):
35009
+ /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/controllers/api_explorer/api_controller.rb:28:in `execute'
35010
+ actionpack (3.2.15) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
35011
+ actionpack (3.2.15) lib/abstract_controller/base.rb:167:in `process_action'
35012
+ actionpack (3.2.15) lib/action_controller/metal/rendering.rb:10:in `process_action'
35013
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
35014
+ activesupport (3.2.15) lib/active_support/callbacks.rb:414:in `_run__4414480938751402444__process_action__1307336549803217794__callbacks'
35015
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
35016
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
35017
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
35018
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:17:in `process_action'
35019
+ actionpack (3.2.15) lib/action_controller/metal/rescue.rb:29:in `process_action'
35020
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
35021
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `block in instrument'
35022
+ activesupport (3.2.15) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
35023
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `instrument'
35024
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
35025
+ actionpack (3.2.15) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
35026
+ activerecord (3.2.15) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
35027
+ actionpack (3.2.15) lib/abstract_controller/base.rb:121:in `process'
35028
+ actionpack (3.2.15) lib/abstract_controller/rendering.rb:45:in `process'
35029
+ actionpack (3.2.15) lib/action_controller/metal.rb:203:in `dispatch'
35030
+ actionpack (3.2.15) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
35031
+ actionpack (3.2.15) lib/action_controller/metal.rb:246:in `block in action'
35032
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `call'
35033
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
35034
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:36:in `call'
35035
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
35036
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
35037
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
35038
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
35039
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
35040
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
35041
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
35042
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
35043
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
35044
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
35045
+ actionpack (3.2.15) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
35046
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
35047
+ rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
35048
+ actionpack (3.2.15) lib/action_dispatch/middleware/head.rb:14:in `call'
35049
+ actionpack (3.2.15) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
35050
+ actionpack (3.2.15) lib/action_dispatch/middleware/flash.rb:242:in `call'
35051
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
35052
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
35053
+ actionpack (3.2.15) lib/action_dispatch/middleware/cookies.rb:341:in `call'
35054
+ activerecord (3.2.15) lib/active_record/query_cache.rb:64:in `call'
35055
+ activerecord (3.2.15) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
35056
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
35057
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `_run__690374998323290308__call__920631571128395446__callbacks'
35058
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
35059
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
35060
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
35061
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
35062
+ actionpack (3.2.15) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
35063
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
35064
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
35065
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
35066
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
35067
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
35068
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
35069
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
35070
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
35071
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
35072
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
35073
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
35074
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
35075
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
35076
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
35077
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
35078
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
35079
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
35080
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
35081
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
35082
+
35083
+
35084
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
35085
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
35086
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.3ms)
35087
+
35088
+
35089
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-21 19:14:09 -0200
35090
+ Processing by ApiExplorer::ApiController#execute as */*
35091
+ Parameters: {"API_TOKEN"=>"", "email"=>"", "password"=>"[FILTERED]", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users/login", "method"=>"POST"}
35092
+ Completed 500 Internal Server Error in 22.0ms
35093
+
35094
+ NameError (undefined local variable or method `dasdsaads' for #<ApiExplorer::ApiController:0x007fc2d5316a60>):
35095
+ /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/controllers/api_explorer/api_controller.rb:28:in `execute'
35096
+ actionpack (3.2.15) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
35097
+ actionpack (3.2.15) lib/abstract_controller/base.rb:167:in `process_action'
35098
+ actionpack (3.2.15) lib/action_controller/metal/rendering.rb:10:in `process_action'
35099
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
35100
+ activesupport (3.2.15) lib/active_support/callbacks.rb:414:in `_run__4414480938751402444__process_action__1307336549803217794__callbacks'
35101
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
35102
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
35103
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
35104
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:17:in `process_action'
35105
+ actionpack (3.2.15) lib/action_controller/metal/rescue.rb:29:in `process_action'
35106
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
35107
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `block in instrument'
35108
+ activesupport (3.2.15) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
35109
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `instrument'
35110
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
35111
+ actionpack (3.2.15) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
35112
+ activerecord (3.2.15) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
35113
+ actionpack (3.2.15) lib/abstract_controller/base.rb:121:in `process'
35114
+ actionpack (3.2.15) lib/abstract_controller/rendering.rb:45:in `process'
35115
+ actionpack (3.2.15) lib/action_controller/metal.rb:203:in `dispatch'
35116
+ actionpack (3.2.15) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
35117
+ actionpack (3.2.15) lib/action_controller/metal.rb:246:in `block in action'
35118
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `call'
35119
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
35120
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:36:in `call'
35121
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
35122
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
35123
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
35124
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
35125
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
35126
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
35127
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
35128
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
35129
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
35130
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
35131
+ actionpack (3.2.15) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
35132
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
35133
+ rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
35134
+ actionpack (3.2.15) lib/action_dispatch/middleware/head.rb:14:in `call'
35135
+ actionpack (3.2.15) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
35136
+ actionpack (3.2.15) lib/action_dispatch/middleware/flash.rb:242:in `call'
35137
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
35138
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
35139
+ actionpack (3.2.15) lib/action_dispatch/middleware/cookies.rb:341:in `call'
35140
+ activerecord (3.2.15) lib/active_record/query_cache.rb:64:in `call'
35141
+ activerecord (3.2.15) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
35142
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
35143
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `_run__690374998323290308__call__920631571128395446__callbacks'
35144
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
35145
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
35146
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
35147
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
35148
+ actionpack (3.2.15) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
35149
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
35150
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
35151
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
35152
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
35153
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
35154
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
35155
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
35156
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
35157
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
35158
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
35159
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
35160
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
35161
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
35162
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
35163
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
35164
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
35165
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
35166
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
35167
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
35168
+
35169
+
35170
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
35171
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
35172
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.0ms)
35173
+
35174
+
35175
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-21 19:14:20 -0200
35176
+ Processing by ApiExplorer::ApiController#method as */*
35177
+ Parameters: {"position"=>"2"}
35178
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35179
+ Completed 200 OK in 1.3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35180
+
35181
+
35182
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-21 19:14:23 -0200
35183
+ Processing by ApiExplorer::ApiController#method as */*
35184
+ Parameters: {"position"=>"1"}
35185
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.0ms)
35186
+ Completed 200 OK in 0.8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35187
+
35188
+
35189
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-21 19:14:27 -0200
35190
+ Processing by ApiExplorer::ApiController#method as */*
35191
+ Parameters: {"position"=>"2"}
35192
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35193
+ Completed 200 OK in 0.9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35194
+
35195
+
35196
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-21 19:14:32 -0200
35197
+ Processing by ApiExplorer::ApiController#method as */*
35198
+ Parameters: {"position"=>"1"}
35199
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35200
+ Completed 200 OK in 1.2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
35201
+
35202
+
35203
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-21 19:18:00 -0200
35204
+ Connecting to database specified by database.yml
35205
+ Processing by ApiExplorer::ApiController#index as HTML
35206
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.3ms)
35207
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (0.5ms)
35208
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.2ms)
35209
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (3.6ms)
35210
+ Compiled api_explorer/api.css (0ms) (pid 5140)
35211
+ Compiled api_explorer/application.css (1ms) (pid 5140)
35212
+ Completed 200 OK in 56.6ms (Views: 56.2ms | ActiveRecord: 0.0ms)
35213
+
35214
+
35215
+
35216
+
35217
+
35218
+
35219
+
35220
+
35221
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-21 19:18:00 -0200
35222
+
35223
+
35224
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-21 19:18:00 -0200
35225
+
35226
+
35227
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-21 19:18:00 -0200
35228
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-21 19:18:00 -0200
35229
+ Served asset /api_explorer/api.css - 200 OK (2ms)
35230
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-21 19:18:00 -0200
35231
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-21 19:18:00 -0200
35232
+ Served asset /jquery.js - 304 Not Modified (8ms)
35233
+ Served asset /api_explorer/application.css - 304 Not Modified (5ms)
35234
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
35235
+ Served asset /api_explorer/api.js - 304 Not Modified (5ms)
35236
+ Served asset /api_explorer/application.js - 304 Not Modified (8ms)
35237
+
35238
+
35239
+
35240
+
35241
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-21 19:18:01 -0200
35242
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-21 19:18:01 -0200
35243
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
35244
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
35245
+
35246
+
35247
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-21 19:18:03 -0200
35248
+ Processing by ApiExplorer::ApiController#method as */*
35249
+ Parameters: {"position"=>"1"}
35250
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.5ms)
35251
+ Completed 200 OK in 6.9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35252
+
35253
+
35254
+
35255
+
35256
+ Started GET "/assets/api_explorer/minimize.png" for 127.0.0.1 at 2013-11-21 19:18:03 -0200
35257
+ Started GET "/assets/api_explorer/clear.png" for 127.0.0.1 at 2013-11-21 19:18:03 -0200
35258
+ Served asset /api_explorer/minimize.png - 304 Not Modified (3ms)
35259
+ Served asset /api_explorer/clear.png - 304 Not Modified (3ms)
35260
+
35261
+
35262
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-21 19:18:05 -0200
35263
+ Processing by ApiExplorer::ApiController#method as */*
35264
+ Parameters: {"position"=>"2"}
35265
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35266
+ Completed 200 OK in 1.0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35267
+
35268
+
35269
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-21 19:18:08 -0200
35270
+ Processing by ApiExplorer::ApiController#method as */*
35271
+ Parameters: {"position"=>"1"}
35272
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35273
+ Completed 200 OK in 1.1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35274
+
35275
+
35276
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-21 19:18:18 -0200
35277
+ Processing by ApiExplorer::ApiController#method as */*
35278
+ Parameters: {"position"=>"2"}
35279
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35280
+ Completed 200 OK in 0.8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35281
+
35282
+
35283
+ Started GET "/assets/api_explorer/maximize.png" for 127.0.0.1 at 2013-11-21 19:19:13 -0200
35284
+ Served asset /api_explorer/maximize.png - 304 Not Modified (3ms)
35285
+
35286
+
35287
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-21 19:19:20 -0200
35288
+ Processing by ApiExplorer::ApiController#method as */*
35289
+ Parameters: {"position"=>"1"}
35290
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.0ms)
35291
+ Completed 200 OK in 0.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
35292
+
35293
+
35294
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-21 19:19:22 -0200
35295
+ Processing by ApiExplorer::ApiController#method as */*
35296
+ Parameters: {"position"=>"2"}
35297
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35298
+ Completed 200 OK in 1.0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35299
+
35300
+
35301
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-21 19:22:37 -0200
35302
+ Processing by ApiExplorer::ApiController#method as */*
35303
+ Parameters: {"position"=>"1"}
35304
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.0ms)
35305
+ Completed 200 OK in 0.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
35306
+
35307
+
35308
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-21 19:22:40 -0200
35309
+ Processing by ApiExplorer::ApiController#method as */*
35310
+ Parameters: {"position"=>"2"}
35311
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35312
+ Completed 200 OK in 0.8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35313
+
35314
+
35315
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-21 19:28:11 -0200
35316
+ Processing by ApiExplorer::ApiController#method as */*
35317
+ Parameters: {"position"=>"1"}
35318
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.0ms)
35319
+ Completed 200 OK in 0.9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35320
+
35321
+
35322
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-21 19:28:15 -0200
35323
+ Processing by ApiExplorer::ApiController#method as */*
35324
+ Parameters: {"position"=>"2"}
35325
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35326
+ Completed 200 OK in 1.0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35327
+
35328
+
35329
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-21 19:28:42 -0200
35330
+ Processing by ApiExplorer::ApiController#method as */*
35331
+ Parameters: {"position"=>"1"}
35332
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35333
+ Completed 200 OK in 1.1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35334
+
35335
+
35336
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-21 19:28:44 -0200
35337
+ Processing by ApiExplorer::ApiController#method as */*
35338
+ Parameters: {"position"=>"2"}
35339
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35340
+ Completed 200 OK in 0.8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35341
+
35342
+
35343
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-21 19:47:18 -0200
35344
+ Processing by ApiExplorer::ApiController#method as */*
35345
+ Parameters: {"position"=>"1"}
35346
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.0ms)
35347
+ Completed 200 OK in 0.9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35348
+
35349
+
35350
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-21 19:47:21 -0200
35351
+ Processing by ApiExplorer::ApiController#method as */*
35352
+ Parameters: {"position"=>"2"}
35353
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35354
+ Completed 200 OK in 1.2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
35355
+
35356
+
35357
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-21 19:55:03 -0200
35358
+ Processing by ApiExplorer::ApiController#method as */*
35359
+ Parameters: {"position"=>"1"}
35360
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.0ms)
35361
+ Completed 200 OK in 0.8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35362
+
35363
+
35364
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-21 19:55:05 -0200
35365
+ Processing by ApiExplorer::ApiController#execute as */*
35366
+ Parameters: {"API_TOKEN"=>"", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"basic_auth", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
35367
+
35368
+
35369
+ Started GET "/v1/users" for 127.0.0.1 at 2013-11-21 19:55:05 -0200
35370
+
35371
+ ActionController::RoutingError (No route matches [GET] "/v1/users"):
35372
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
35373
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
35374
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
35375
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
35376
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
35377
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
35378
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
35379
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
35380
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
35381
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
35382
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
35383
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
35384
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
35385
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
35386
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
35387
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
35388
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
35389
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
35390
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
35391
+
35392
+
35393
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
35394
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.6ms)
35395
+ Completed 200 OK in 142.7ms (Views: 0.9ms | ActiveRecord: 0.0ms)
35396
+
35397
+
35398
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-21 19:55:08 -0200
35399
+ Processing by ApiExplorer::ApiController#method as */*
35400
+ Parameters: {"position"=>"2"}
35401
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35402
+ Completed 200 OK in 1.0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35403
+
35404
+
35405
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-21 19:55:09 -0200
35406
+ Processing by ApiExplorer::ApiController#execute as */*
35407
+ Parameters: {"API_TOKEN"=>"", "email"=>"", "password"=>"[FILTERED]", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"basic_auth", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users/login", "method"=>"POST"}
35408
+
35409
+
35410
+ Started POST "/v1/users/login" for 127.0.0.1 at 2013-11-21 19:55:09 -0200
35411
+
35412
+ ActionController::RoutingError (No route matches [POST] "/v1/users/login"):
35413
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
35414
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
35415
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
35416
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
35417
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
35418
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
35419
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
35420
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
35421
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
35422
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
35423
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
35424
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
35425
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
35426
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
35427
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
35428
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
35429
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
35430
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
35431
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
35432
+
35433
+
35434
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
35435
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.0ms)
35436
+ Completed 200 OK in 15.5ms (Views: 0.6ms | ActiveRecord: 0.0ms)
35437
+
35438
+
35439
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-21 19:55:15 -0200
35440
+ Processing by ApiExplorer::ApiController#method as */*
35441
+ Parameters: {"position"=>"1"}
35442
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35443
+ Completed 200 OK in 0.9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35444
+
35445
+
35446
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-21 19:55:17 -0200
35447
+ Processing by ApiExplorer::ApiController#execute as */*
35448
+ Parameters: {"API_TOKEN"=>"", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"basic_auth", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
35449
+
35450
+
35451
+ Started GET "/v1/users" for 127.0.0.1 at 2013-11-21 19:55:17 -0200
35452
+
35453
+ ActionController::RoutingError (No route matches [GET] "/v1/users"):
35454
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
35455
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
35456
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
35457
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
35458
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
35459
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
35460
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
35461
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
35462
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
35463
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
35464
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
35465
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
35466
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
35467
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
35468
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
35469
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
35470
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
35471
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
35472
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
35473
+
35474
+
35475
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
35476
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.0ms)
35477
+ Completed 200 OK in 15.6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
35478
+
35479
+
35480
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-21 19:55:26 -0200
35481
+ Processing by ApiExplorer::ApiController#method as */*
35482
+ Parameters: {"position"=>"2"}
35483
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35484
+ Completed 200 OK in 0.9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35485
+
35486
+
35487
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-21 19:55:28 -0200
35488
+ Processing by ApiExplorer::ApiController#execute as */*
35489
+ Parameters: {"API_TOKEN"=>"", "email"=>"", "password"=>"[FILTERED]", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"basic_auth", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users/login", "method"=>"POST"}
35490
+
35491
+
35492
+ Started POST "/v1/users/login" for 127.0.0.1 at 2013-11-21 19:55:28 -0200
35493
+
35494
+ ActionController::RoutingError (No route matches [POST] "/v1/users/login"):
35495
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
35496
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
35497
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
35498
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
35499
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
35500
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
35501
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
35502
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
35503
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
35504
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
35505
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
35506
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
35507
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
35508
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
35509
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
35510
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
35511
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
35512
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
35513
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
35514
+
35515
+
35516
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
35517
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.1ms)
35518
+ Completed 200 OK in 15.4ms (Views: 0.6ms | ActiveRecord: 0.0ms)
35519
+
35520
+
35521
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-21 19:59:05 -0200
35522
+ Processing by ApiExplorer::ApiController#method as */*
35523
+ Parameters: {"position"=>"1"}
35524
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35525
+ Completed 200 OK in 0.8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35526
+
35527
+
35528
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-21 19:59:07 -0200
35529
+ Processing by ApiExplorer::ApiController#method as */*
35530
+ Parameters: {"position"=>"2"}
35531
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35532
+ Completed 200 OK in 1.1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35533
+
35534
+
35535
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-21 20:04:00 -0200
35536
+ Processing by ApiExplorer::ApiController#method as */*
35537
+ Parameters: {"position"=>"1"}
35538
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35539
+ Completed 200 OK in 1.1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35540
+
35541
+
35542
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-21 20:04:05 -0200
35543
+ Processing by ApiExplorer::ApiController#method as */*
35544
+ Parameters: {"position"=>"2"}
35545
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35546
+ Completed 200 OK in 0.8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35547
+
35548
+
35549
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-21 20:04:08 -0200
35550
+ Processing by ApiExplorer::ApiController#execute as */*
35551
+ Parameters: {"API_TOKEN"=>"", "email"=>"", "password"=>"[FILTERED]", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"basic_auth", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users/login", "method"=>"POST"}
35552
+
35553
+
35554
+ Started POST "/v1/users/login" for 127.0.0.1 at 2013-11-21 20:04:08 -0200
35555
+
35556
+ ActionController::RoutingError (No route matches [POST] "/v1/users/login"):
35557
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
35558
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
35559
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
35560
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
35561
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
35562
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
35563
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
35564
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
35565
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
35566
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
35567
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
35568
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
35569
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
35570
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
35571
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
35572
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
35573
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
35574
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
35575
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
35576
+
35577
+
35578
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
35579
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.1ms)
35580
+ Completed 200 OK in 15.8ms (Views: 0.6ms | ActiveRecord: 0.0ms)
35581
+
35582
+
35583
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-21 20:04:32 -0200
35584
+ Processing by ApiExplorer::ApiController#execute as */*
35585
+ Parameters: {"API_TOKEN"=>"", "email"=>"", "password"=>"[FILTERED]", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"hash_url_auth", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"jojioj", "secret_key"=>"jiodsaoij"}, "url"=>"v1/users/login", "method"=>"POST"}
35586
+
35587
+
35588
+ Started POST "/v1/users/login" for 127.0.0.1 at 2013-11-21 20:04:32 -0200
35589
+
35590
+ ActionController::RoutingError (No route matches [POST] "/v1/users/login"):
35591
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
35592
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
35593
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
35594
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
35595
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
35596
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
35597
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
35598
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
35599
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
35600
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
35601
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
35602
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
35603
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
35604
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
35605
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
35606
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
35607
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
35608
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
35609
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
35610
+
35611
+
35612
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
35613
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.1ms)
35614
+ Completed 200 OK in 38.1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
35615
+
35616
+
35617
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-21 20:04:50 -0200
35618
+ Processing by ApiExplorer::ApiController#method as */*
35619
+ Parameters: {"position"=>"1"}
35620
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35621
+ Completed 200 OK in 0.8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35622
+
35623
+
35624
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-21 20:09:23 -0200
35625
+ Processing by ApiExplorer::ApiController#method as */*
35626
+ Parameters: {"position"=>"2"}
35627
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35628
+ Completed 200 OK in 1.2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35629
+
35630
+
35631
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-21 20:09:26 -0200
35632
+ Processing by ApiExplorer::ApiController#method as */*
35633
+ Parameters: {"position"=>"1"}
35634
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35635
+ Completed 200 OK in 1.2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
35636
+
35637
+
35638
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-22 10:56:13 -0200
35639
+ Connecting to database specified by database.yml
35640
+ Processing by ApiExplorer::ApiController#index as HTML
35641
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.4ms)
35642
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (0.8ms)
35643
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.4ms)
35644
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (41.6ms)
35645
+ Completed 200 OK in 191.5ms (Views: 170.6ms | ActiveRecord: 0.0ms)
35646
+
35647
+
35648
+
35649
+
35650
+
35651
+
35652
+
35653
+
35654
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-22 10:56:14 -0200
35655
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-22 10:56:14 -0200
35656
+
35657
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-22 10:56:14 -0200
35658
+
35659
+ Served asset /api_explorer/api.css - 304 Not Modified (2ms)
35660
+ Served asset /jquery_ujs.js - 304 Not Modified (6ms)
35661
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-22 10:56:14 -0200
35662
+ Served asset /api_explorer/application.css - 304 Not Modified (3ms)
35663
+
35664
+
35665
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-22 10:56:14 -0200
35666
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-22 10:56:14 -0200
35667
+ Served asset /api_explorer/api.js - 304 Not Modified (3ms)
35668
+ Served asset /api_explorer/application.js - 304 Not Modified (17ms)
35669
+ Served asset /jquery.js - 304 Not Modified (8ms)
35670
+
35671
+
35672
+
35673
+
35674
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-22 10:56:15 -0200
35675
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-22 10:56:15 -0200
35676
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
35677
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
35678
+
35679
+
35680
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-22 10:56:17 -0200
35681
+ Processing by ApiExplorer::ApiController#method as */*
35682
+ Parameters: {"position"=>"2"}
35683
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.8ms)
35684
+ Completed 200 OK in 7.2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
35685
+
35686
+
35687
+
35688
+ Started GET "/assets/api_explorer/clear.png" for 127.0.0.1 at 2013-11-22 10:56:17 -0200
35689
+
35690
+ Started GET "/assets/api_explorer/minimize.png" for 127.0.0.1 at 2013-11-22 10:56:17 -0200
35691
+ Served asset /api_explorer/clear.png - 304 Not Modified (13ms)
35692
+ Served asset /api_explorer/minimize.png - 304 Not Modified (26ms)
35693
+
35694
+
35695
+ Started GET "/assets/api_explorer/delete.png" for 127.0.0.1 at 2013-11-22 10:56:23 -0200
35696
+ Served asset /api_explorer/delete.png - 304 Not Modified (139ms)
35697
+
35698
+
35699
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-22 10:56:27 -0200
35700
+ Processing by ApiExplorer::ApiController#execute as */*
35701
+ Parameters: {"API_TOKEN"=>"sdadsaads", "email"=>"adsads@dasdas.com", "password"=>"[FILTERED]", "header"=>{"name"=>["", ""], "value"=>["", ""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users/login", "method"=>"POST"}
35702
+
35703
+
35704
+ Started POST "/v1/users/login" for 127.0.0.1 at 2013-11-22 10:56:27 -0200
35705
+
35706
+ ActionController::RoutingError (No route matches [POST] "/v1/users/login"):
35707
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
35708
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
35709
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
35710
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
35711
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
35712
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
35713
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
35714
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
35715
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
35716
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
35717
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
35718
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
35719
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
35720
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
35721
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
35722
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
35723
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
35724
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
35725
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
35726
+
35727
+
35728
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
35729
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.5ms)
35730
+ Completed 200 OK in 286.1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
35731
+
35732
+
35733
+ Started GET "/assets/api_explorer/maximize.png" for 127.0.0.1 at 2013-11-22 10:56:27 -0200
35734
+ Served asset /api_explorer/maximize.png - 304 Not Modified (23ms)
35735
+
35736
+
35737
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-22 10:56:32 -0200
35738
+ Processing by ApiExplorer::ApiController#method as */*
35739
+ Parameters: {"position"=>"1"}
35740
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35741
+ Completed 200 OK in 0.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
35742
+
35743
+
35744
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-22 10:56:34 -0200
35745
+ Processing by ApiExplorer::ApiController#method as */*
35746
+ Parameters: {"position"=>"2"}
35747
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35748
+ Completed 200 OK in 1.4ms (Views: 0.4ms | ActiveRecord: 0.0ms)
35749
+
35750
+
35751
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-22 10:56:40 -0200
35752
+ Processing by ApiExplorer::ApiController#execute as */*
35753
+ Parameters: {"API_TOKEN"=>"sdadsaads", "email"=>"adsdsaadsasd@dasdas.com", "password"=>"[FILTERED]", "header"=>{"name"=>["", ""], "value"=>["", ""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users/login", "method"=>"POST"}
35754
+
35755
+
35756
+ Started POST "/v1/users/login" for 127.0.0.1 at 2013-11-22 10:56:40 -0200
35757
+
35758
+ ActionController::RoutingError (No route matches [POST] "/v1/users/login"):
35759
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
35760
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
35761
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
35762
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
35763
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
35764
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
35765
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
35766
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
35767
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
35768
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
35769
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
35770
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
35771
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
35772
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
35773
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
35774
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
35775
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
35776
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
35777
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
35778
+
35779
+
35780
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
35781
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.1ms)
35782
+ Completed 200 OK in 15.0ms (Views: 0.6ms | ActiveRecord: 0.0ms)
35783
+
35784
+
35785
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-22 10:56:45 -0200
35786
+ Processing by ApiExplorer::ApiController#method as */*
35787
+ Parameters: {"position"=>"1"}
35788
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35789
+ Completed 200 OK in 0.8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35790
+
35791
+
35792
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-22 10:56:47 -0200
35793
+ Processing by ApiExplorer::ApiController#method as */*
35794
+ Parameters: {"position"=>"2"}
35795
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35796
+ Completed 200 OK in 1.0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35797
+
35798
+
35799
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-22 10:57:02 -0200
35800
+ Processing by ApiExplorer::ApiController#method as */*
35801
+ Parameters: {"position"=>"1"}
35802
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35803
+ Completed 200 OK in 1.0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
35804
+
35805
+
35806
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-22 10:57:13 -0200
35807
+ Processing by ApiExplorer::ApiController#method as */*
35808
+ Parameters: {"position"=>"2"}
35809
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35810
+ Completed 200 OK in 1.3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
35811
+
35812
+
35813
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-22 10:58:39 -0200
35814
+ Processing by ApiExplorer::ApiController#index as HTML
35815
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.0ms)
35816
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (0.2ms)
35817
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.0ms)
35818
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (1.0ms)
35819
+ Completed 200 OK in 4.4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
35820
+
35821
+
35822
+
35823
+
35824
+
35825
+
35826
+
35827
+
35828
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-22 10:58:39 -0200
35829
+
35830
+
35831
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-22 10:58:39 -0200
35832
+
35833
+
35834
+ Served asset /api_explorer/application.css - 304 Not Modified (0ms)
35835
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-22 10:58:39 -0200
35836
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-22 10:58:39 -0200
35837
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
35838
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-22 10:58:39 -0200
35839
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-22 10:58:39 -0200
35840
+ Served asset /api_explorer/api.css - 304 Not Modified (0ms)
35841
+ Served asset /jquery.js - 304 Not Modified (0ms)
35842
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
35843
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
35844
+
35845
+
35846
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-22 10:58:40 -0200
35847
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
35848
+
35849
+
35850
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-22 10:58:40 -0200
35851
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
35852
+
35853
+
35854
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-22 10:58:42 -0200
35855
+ Processing by ApiExplorer::ApiController#method as */*
35856
+ Parameters: {"position"=>"2"}
35857
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
35858
+ Completed 200 OK in 1.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
35859
+
35860
+
35861
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-22 10:59:10 -0200
35862
+ Connecting to database specified by database.yml
35863
+ Processing by ApiExplorer::ApiController#index as HTML
35864
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.2ms)
35865
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (0.4ms)
35866
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.3ms)
35867
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (3.8ms)
35868
+ Completed 200 OK in 18.6ms (Views: 18.2ms | ActiveRecord: 0.0ms)
35869
+
35870
+
35871
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-22 10:59:10 -0200
35872
+ Served asset /api_explorer/application.css - 304 Not Modified (4ms)
35873
+
35874
+
35875
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-22 10:59:10 -0200
35876
+
35877
+ Served asset /api_explorer/api.css - 304 Not Modified (3ms)
35878
+
35879
+
35880
+
35881
+
35882
+
35883
+
35884
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-22 10:59:10 -0200
35885
+
35886
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-22 10:59:10 -0200
35887
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-22 10:59:10 -0200
35888
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
35889
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-22 10:59:10 -0200
35890
+ Served asset /api_explorer/api.js - 304 Not Modified (2ms)
35891
+ Served asset /jquery.js - 304 Not Modified (9ms)
35892
+ Served asset /api_explorer/application.js - 304 Not Modified (15ms)
35893
+
35894
+
35895
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-22 10:59:11 -0200
35896
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
35897
+
35898
+
35899
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-22 10:59:11 -0200
35900
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
35901
+
35902
+
35903
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-22 11:01:58 -0200
35904
+ Connecting to database specified by database.yml
35905
+ Processing by ApiExplorer::ApiController#index as HTML
35906
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.2ms)
35907
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (0.4ms)
35908
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.4ms)
35909
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (3.9ms)
35910
+ Compiled api_explorer/api.css (0ms) (pid 1307)
35911
+ Compiled api_explorer/application.css (0ms) (pid 1307)
35912
+ Completed 200 OK in 26.5ms (Views: 26.1ms | ActiveRecord: 0.0ms)
35913
+
35914
+
35915
+
35916
+
35917
+
35918
+
35919
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-22 11:01:58 -0200
35920
+
35921
+
35922
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-22 11:01:58 -0200
35923
+
35924
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-22 11:01:58 -0200
35925
+ Served asset /api_explorer/api.css - 200 OK (3ms)
35926
+
35927
+
35928
+
35929
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-22 11:01:58 -0200
35930
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-22 11:01:58 -0200
35931
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-22 11:01:58 -0200
35932
+ Served asset /jquery.js - 304 Not Modified (9ms)
35933
+ Served asset /api_explorer/application.css - 304 Not Modified (3ms)
35934
+ Served asset /api_explorer/api.js - 304 Not Modified (1ms)
35935
+ Served asset /jquery_ujs.js - 304 Not Modified (4ms)
35936
+ Served asset /api_explorer/application.js - 304 Not Modified (22ms)
35937
+
35938
+
35939
+
35940
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-22 11:02:00 -0200
35941
+
35942
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
35943
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-22 11:02:00 -0200
35944
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
35945
+
35946
+
35947
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-22 11:02:33 -0200
35948
+ Connecting to database specified by database.yml
35949
+ Processing by ApiExplorer::ApiController#index as HTML
35950
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.2ms)
35951
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (0.4ms)
35952
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.2ms)
35953
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (3.4ms)
35954
+ Compiled api_explorer/api.css (0ms) (pid 1310)
35955
+ Compiled api_explorer/application.css (0ms) (pid 1310)
35956
+ Completed 200 OK in 23.8ms (Views: 23.5ms | ActiveRecord: 0.0ms)
35957
+
35958
+
35959
+
35960
+
35961
+
35962
+
35963
+
35964
+
35965
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-22 11:02:33 -0200
35966
+
35967
+
35968
+
35969
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-22 11:02:33 -0200
35970
+
35971
+ Served asset /jquery.js - 304 Not Modified (3ms)
35972
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-22 11:02:33 -0200
35973
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-22 11:02:33 -0200
35974
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-22 11:02:33 -0200
35975
+ Served asset /api_explorer/api.css - 200 OK (2ms)
35976
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-22 11:02:33 -0200
35977
+ Served asset /api_explorer/api.js - 304 Not Modified (4ms)
35978
+ Served asset /jquery_ujs.js - 304 Not Modified (6ms)
35979
+ Served asset /api_explorer/application.css - 304 Not Modified (3ms)
35980
+ Served asset /api_explorer/application.js - 304 Not Modified (8ms)
35981
+
35982
+
35983
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-22 11:02:34 -0200
35984
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
35985
+
35986
+
35987
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-22 11:02:34 -0200
35988
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
35989
+
35990
+
35991
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-22 11:02:35 -0200
35992
+ Processing by ApiExplorer::ApiController#index as HTML
35993
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.0ms)
35994
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (0.2ms)
35995
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.0ms)
35996
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (1.2ms)
35997
+ Completed 200 OK in 5.1ms (Views: 4.8ms | ActiveRecord: 0.0ms)
35998
+
35999
+
36000
+
36001
+
36002
+
36003
+
36004
+
36005
+
36006
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-22 11:02:35 -0200
36007
+
36008
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-22 11:02:35 -0200
36009
+
36010
+
36011
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-22 11:02:35 -0200
36012
+ Served asset /api_explorer/application.css - 304 Not Modified (0ms)
36013
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-22 11:02:35 -0200
36014
+ Served asset /api_explorer/api.css - 304 Not Modified (0ms)
36015
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-22 11:02:35 -0200
36016
+
36017
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-22 11:02:35 -0200
36018
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
36019
+ Served asset /jquery.js - 304 Not Modified (0ms)
36020
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
36021
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
36022
+
36023
+
36024
+
36025
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-22 11:02:36 -0200
36026
+
36027
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
36028
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-22 11:02:36 -0200
36029
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
36030
+
36031
+
36032
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-22 11:02:39 -0200
36033
+ Processing by ApiExplorer::ApiController#method as */*
36034
+ Parameters: {"position"=>"2"}
36035
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.6ms)
36036
+ Completed 200 OK in 4.8ms (Views: 0.4ms | ActiveRecord: 0.0ms)
36037
+
36038
+
36039
+ Started GET "/assets/api_explorer/clear.png" for 127.0.0.1 at 2013-11-22 11:02:39 -0200
36040
+
36041
+ Served asset /api_explorer/clear.png - 304 Not Modified (2ms)
36042
+
36043
+ Started GET "/assets/api_explorer/minimize.png" for 127.0.0.1 at 2013-11-22 11:02:39 -0200
36044
+ Served asset /api_explorer/minimize.png - 304 Not Modified (4ms)
36045
+
36046
+
36047
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-22 11:05:10 -0200
36048
+ Processing by ApiExplorer::ApiController#method as */*
36049
+ Parameters: {"position"=>"1"}
36050
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
36051
+ Completed 200 OK in 23.4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
36052
+
36053
+
36054
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-22 11:05:12 -0200
36055
+ Processing by ApiExplorer::ApiController#method as */*
36056
+ Parameters: {"position"=>"2"}
36057
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
36058
+ Completed 200 OK in 1.2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
36059
+
36060
+
36061
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-22 11:05:14 -0200
36062
+ Processing by ApiExplorer::ApiController#execute as */*
36063
+ Parameters: {"API_TOKEN"=>"sdadsaads", "email"=>"adsdsaadsasd@dasdas.com", "password"=>"[FILTERED]", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users/login", "method"=>"POST"}
36064
+
36065
+
36066
+ Started POST "/v1/users/login" for 127.0.0.1 at 2013-11-22 11:05:14 -0200
36067
+
36068
+ ActionController::RoutingError (No route matches [POST] "/v1/users/login"):
36069
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
36070
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
36071
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
36072
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
36073
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
36074
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
36075
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
36076
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
36077
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
36078
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
36079
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
36080
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
36081
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
36082
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
36083
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
36084
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
36085
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
36086
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
36087
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
36088
+
36089
+
36090
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
36091
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.4ms)
36092
+ Completed 200 OK in 118.1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
36093
+
36094
+
36095
+ Started GET "/assets/api_explorer/maximize.png" for 127.0.0.1 at 2013-11-22 11:05:14 -0200
36096
+ Served asset /api_explorer/maximize.png - 304 Not Modified (1ms)
36097
+
36098
+
36099
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-22 11:05:41 -0200
36100
+ Processing by ApiExplorer::ApiController#execute as */*
36101
+ Parameters: {"API_TOKEN"=>"sdadsaads", "email"=>"adsdsaadsasd@dasdas.com", "password"=>"[FILTERED]", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users/loginff", "method"=>"POST"}
36102
+
36103
+
36104
+ Started POST "/v1/users/loginff" for 127.0.0.1 at 2013-11-22 11:05:41 -0200
36105
+
36106
+ ActionController::RoutingError (No route matches [POST] "/v1/users/loginff"):
36107
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
36108
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
36109
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
36110
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
36111
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
36112
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
36113
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
36114
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
36115
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
36116
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
36117
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
36118
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
36119
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
36120
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
36121
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
36122
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
36123
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
36124
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
36125
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
36126
+
36127
+
36128
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
36129
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.1ms)
36130
+ Completed 200 OK in 16.2ms (Views: 0.7ms | ActiveRecord: 0.0ms)
36131
+
36132
+
36133
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-22 11:07:32 -0200
36134
+ Processing by ApiExplorer::ApiController#method as */*
36135
+ Parameters: {"position"=>"1"}
36136
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
36137
+ Completed 200 OK in 1.0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
36138
+
36139
+
36140
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-22 11:07:34 -0200
36141
+ Processing by ApiExplorer::ApiController#execute as */*
36142
+ Parameters: {"API_TOKEN"=>"sdadsaads", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
36143
+
36144
+
36145
+ Started GET "/v1/users" for 127.0.0.1 at 2013-11-22 11:07:34 -0200
36146
+
36147
+ ActionController::RoutingError (No route matches [GET] "/v1/users"):
36148
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
36149
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
36150
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
36151
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
36152
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
36153
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
36154
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
36155
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
36156
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
36157
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
36158
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
36159
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
36160
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
36161
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
36162
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
36163
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
36164
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
36165
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
36166
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
36167
+
36168
+
36169
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
36170
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.1ms)
36171
+ Completed 200 OK in 16.6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
36172
+
36173
+
36174
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-22 11:07:37 -0200
36175
+ Processing by ApiExplorer::ApiController#execute as */*
36176
+ Parameters: {"API_TOKEN"=>"sdadsaads", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
36177
+
36178
+
36179
+ Started GET "/v1/users" for 127.0.0.1 at 2013-11-22 11:07:37 -0200
36180
+
36181
+ ActionController::RoutingError (No route matches [GET] "/v1/users"):
36182
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
36183
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
36184
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
36185
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
36186
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
36187
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
36188
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
36189
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
36190
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
36191
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
36192
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
36193
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
36194
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
36195
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
36196
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
36197
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
36198
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
36199
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
36200
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
36201
+
36202
+
36203
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
36204
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.0ms)
36205
+ Completed 200 OK in 15.4ms (Views: 0.6ms | ActiveRecord: 0.0ms)
36206
+
36207
+
36208
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-22 11:09:23 -0200
36209
+ Connecting to database specified by database.yml
36210
+ Processing by ApiExplorer::ApiController#index as HTML
36211
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.3ms)
36212
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (0.5ms)
36213
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.2ms)
36214
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (3.7ms)
36215
+ Compiled api_explorer/api.js (0ms) (pid 1370)
36216
+ Compiled api_explorer/application.js (2ms) (pid 1370)
36217
+ Completed 200 OK in 72.7ms (Views: 72.3ms | ActiveRecord: 0.0ms)
36218
+
36219
+
36220
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-22 11:09:23 -0200
36221
+
36222
+
36223
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-22 11:09:23 -0200
36224
+
36225
+
36226
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-22 11:09:23 -0200
36227
+ Served asset /api_explorer/application.css - 304 Not Modified (5ms)
36228
+ Served asset /api_explorer/api.css - 304 Not Modified (2ms)
36229
+
36230
+
36231
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-22 11:09:23 -0200
36232
+ Served asset /api_explorer/api.js - 200 OK (2ms)
36233
+
36234
+
36235
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-22 11:09:23 -0200
36236
+
36237
+
36238
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-22 11:09:23 -0200
36239
+ Served asset /jquery.js - 304 Not Modified (2ms)
36240
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
36241
+ Served asset /api_explorer/application.js - 304 Not Modified (8ms)
36242
+
36243
+
36244
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-22 11:09:24 -0200
36245
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
36246
+
36247
+
36248
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-22 11:09:24 -0200
36249
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
36250
+
36251
+
36252
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-22 11:09:26 -0200
36253
+ Processing by ApiExplorer::ApiController#method as */*
36254
+ Parameters: {"position"=>"1"}
36255
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.8ms)
36256
+ Completed 200 OK in 5.2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
36257
+
36258
+
36259
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-22 11:09:26 -0200
36260
+ Processing by ApiExplorer::ApiController#execute as */*
36261
+ Parameters: {"API_TOKEN"=>"sdadsaads", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
36262
+
36263
+
36264
+ Started GET "/v1/users" for 127.0.0.1 at 2013-11-22 11:09:26 -0200
36265
+
36266
+ ActionController::RoutingError (No route matches [GET] "/v1/users"):
36267
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
36268
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
36269
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
36270
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
36271
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
36272
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
36273
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
36274
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
36275
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
36276
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
36277
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
36278
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
36279
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
36280
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
36281
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
36282
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
36283
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
36284
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
36285
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
36286
+
36287
+
36288
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
36289
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.4ms)
36290
+ Completed 200 OK in 99.0ms (Views: 0.6ms | ActiveRecord: 0.0ms)
36291
+
36292
+
36293
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-22 11:09:29 -0200
36294
+ Processing by ApiExplorer::ApiController#execute as */*
36295
+ Parameters: {"API_TOKEN"=>"sdadsaads", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
36296
+
36297
+
36298
+ Started GET "/v1/users" for 127.0.0.1 at 2013-11-22 11:09:29 -0200
36299
+
36300
+ ActionController::RoutingError (No route matches [GET] "/v1/users"):
36301
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
36302
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
36303
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
36304
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
36305
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
36306
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
36307
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
36308
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
36309
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
36310
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
36311
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
36312
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
36313
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
36314
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
36315
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
36316
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
36317
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
36318
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
36319
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
36320
+
36321
+
36322
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
36323
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.0ms)
36324
+ Completed 200 OK in 15.2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
36325
+
36326
+
36327
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-22 11:09:33 -0200
36328
+ Processing by ApiExplorer::ApiController#method as */*
36329
+ Parameters: {"position"=>"2"}
36330
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
36331
+ Completed 200 OK in 0.9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
36332
+
36333
+
36334
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-22 11:09:34 -0200
36335
+ Processing by ApiExplorer::ApiController#execute as */*
36336
+ Parameters: {"API_TOKEN"=>"sdadsaads", "email"=>"adsdsaadsasd@dasdas.com", "password"=>"[FILTERED]", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users/login", "method"=>"POST"}
36337
+
36338
+
36339
+ Started POST "/v1/users/login" for 127.0.0.1 at 2013-11-22 11:09:34 -0200
36340
+
36341
+ ActionController::RoutingError (No route matches [POST] "/v1/users/login"):
36342
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
36343
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
36344
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
36345
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
36346
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
36347
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
36348
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
36349
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
36350
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
36351
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
36352
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
36353
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
36354
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
36355
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
36356
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
36357
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
36358
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
36359
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
36360
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
36361
+
36362
+
36363
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
36364
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.0ms)
36365
+ Completed 200 OK in 15.4ms (Views: 0.6ms | ActiveRecord: 0.0ms)
36366
+
36367
+
36368
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-22 11:09:44 -0200
36369
+ Processing by ApiExplorer::ApiController#execute as */*
36370
+ Parameters: {"API_TOKEN"=>"", "email"=>"", "password"=>"[FILTERED]", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users/login", "method"=>"POST"}
36371
+
36372
+
36373
+ Started POST "/v1/users/login" for 127.0.0.1 at 2013-11-22 11:09:44 -0200
36374
+
36375
+ ActionController::RoutingError (No route matches [POST] "/v1/users/login"):
36376
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
36377
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
36378
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
36379
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
36380
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
36381
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
36382
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
36383
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
36384
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
36385
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
36386
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
36387
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
36388
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
36389
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
36390
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
36391
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
36392
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
36393
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
36394
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
36395
+
36396
+
36397
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
36398
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.0ms)
36399
+ Completed 200 OK in 17.7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
36400
+
36401
+
36402
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-22 11:09:48 -0200
36403
+ Processing by ApiExplorer::ApiController#method as */*
36404
+ Parameters: {"position"=>"1"}
36405
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
36406
+ Completed 200 OK in 0.8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
36407
+
36408
+
36409
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-22 11:10:06 -0200
36410
+ Processing by ApiExplorer::ApiController#execute as */*
36411
+ Parameters: {"header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"", "method"=>""}
36412
+ Completed 500 Internal Server Error in 1.0ms
36413
+
36414
+ NoMethodError (undefined method `set_form_data' for nil:NilClass):
36415
+ /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/controllers/api_explorer/api_controller.rb:48:in `execute'
36416
+ actionpack (3.2.15) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
36417
+ actionpack (3.2.15) lib/abstract_controller/base.rb:167:in `process_action'
36418
+ actionpack (3.2.15) lib/action_controller/metal/rendering.rb:10:in `process_action'
36419
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
36420
+ activesupport (3.2.15) lib/active_support/callbacks.rb:414:in `_run__2661705987680949551__process_action__3796222653572217985__callbacks'
36421
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
36422
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
36423
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
36424
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:17:in `process_action'
36425
+ actionpack (3.2.15) lib/action_controller/metal/rescue.rb:29:in `process_action'
36426
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
36427
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `block in instrument'
36428
+ activesupport (3.2.15) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
36429
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `instrument'
36430
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
36431
+ actionpack (3.2.15) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
36432
+ activerecord (3.2.15) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
36433
+ actionpack (3.2.15) lib/abstract_controller/base.rb:121:in `process'
36434
+ actionpack (3.2.15) lib/abstract_controller/rendering.rb:45:in `process'
36435
+ actionpack (3.2.15) lib/action_controller/metal.rb:203:in `dispatch'
36436
+ actionpack (3.2.15) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
36437
+ actionpack (3.2.15) lib/action_controller/metal.rb:246:in `block in action'
36438
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `call'
36439
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
36440
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:36:in `call'
36441
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
36442
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
36443
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
36444
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
36445
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
36446
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
36447
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
36448
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
36449
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
36450
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
36451
+ actionpack (3.2.15) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
36452
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
36453
+ rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
36454
+ actionpack (3.2.15) lib/action_dispatch/middleware/head.rb:14:in `call'
36455
+ actionpack (3.2.15) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
36456
+ actionpack (3.2.15) lib/action_dispatch/middleware/flash.rb:242:in `call'
36457
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
36458
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
36459
+ actionpack (3.2.15) lib/action_dispatch/middleware/cookies.rb:341:in `call'
36460
+ activerecord (3.2.15) lib/active_record/query_cache.rb:64:in `call'
36461
+ activerecord (3.2.15) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
36462
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
36463
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `_run__3850607654258564256__call__3841173316705398591__callbacks'
36464
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
36465
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
36466
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
36467
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
36468
+ actionpack (3.2.15) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
36469
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
36470
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
36471
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
36472
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
36473
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
36474
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
36475
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
36476
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
36477
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
36478
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
36479
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
36480
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
36481
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
36482
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
36483
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
36484
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
36485
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
36486
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
36487
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
36488
+
36489
+
36490
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
36491
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
36492
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.8ms)
36493
+
36494
+
36495
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-22 11:10:17 -0200
36496
+ Processing by ApiExplorer::ApiController#execute as */*
36497
+ Parameters: {"header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"", "method"=>""}
36498
+ Completed 500 Internal Server Error in 1.2ms
36499
+
36500
+ NoMethodError (undefined method `set_form_data' for nil:NilClass):
36501
+ /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/controllers/api_explorer/api_controller.rb:48:in `execute'
36502
+ actionpack (3.2.15) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
36503
+ actionpack (3.2.15) lib/abstract_controller/base.rb:167:in `process_action'
36504
+ actionpack (3.2.15) lib/action_controller/metal/rendering.rb:10:in `process_action'
36505
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
36506
+ activesupport (3.2.15) lib/active_support/callbacks.rb:414:in `_run__2661705987680949551__process_action__3796222653572217985__callbacks'
36507
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
36508
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
36509
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
36510
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:17:in `process_action'
36511
+ actionpack (3.2.15) lib/action_controller/metal/rescue.rb:29:in `process_action'
36512
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
36513
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `block in instrument'
36514
+ activesupport (3.2.15) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
36515
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `instrument'
36516
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
36517
+ actionpack (3.2.15) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
36518
+ activerecord (3.2.15) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
36519
+ actionpack (3.2.15) lib/abstract_controller/base.rb:121:in `process'
36520
+ actionpack (3.2.15) lib/abstract_controller/rendering.rb:45:in `process'
36521
+ actionpack (3.2.15) lib/action_controller/metal.rb:203:in `dispatch'
36522
+ actionpack (3.2.15) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
36523
+ actionpack (3.2.15) lib/action_controller/metal.rb:246:in `block in action'
36524
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `call'
36525
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
36526
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:36:in `call'
36527
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
36528
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
36529
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
36530
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
36531
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
36532
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
36533
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
36534
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
36535
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
36536
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
36537
+ actionpack (3.2.15) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
36538
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
36539
+ rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
36540
+ actionpack (3.2.15) lib/action_dispatch/middleware/head.rb:14:in `call'
36541
+ actionpack (3.2.15) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
36542
+ actionpack (3.2.15) lib/action_dispatch/middleware/flash.rb:242:in `call'
36543
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
36544
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
36545
+ actionpack (3.2.15) lib/action_dispatch/middleware/cookies.rb:341:in `call'
36546
+ activerecord (3.2.15) lib/active_record/query_cache.rb:64:in `call'
36547
+ activerecord (3.2.15) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
36548
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
36549
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `_run__3850607654258564256__call__3841173316705398591__callbacks'
36550
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
36551
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
36552
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
36553
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
36554
+ actionpack (3.2.15) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
36555
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
36556
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
36557
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
36558
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
36559
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
36560
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
36561
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
36562
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
36563
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
36564
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
36565
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
36566
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
36567
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
36568
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
36569
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
36570
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
36571
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
36572
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
36573
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
36574
+
36575
+
36576
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
36577
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
36578
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.9ms)
36579
+
36580
+
36581
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-22 11:10:37 -0200
36582
+ Processing by ApiExplorer::ApiController#execute as */*
36583
+ Parameters: {"header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"", "method"=>""}
36584
+ Completed 500 Internal Server Error in 1.0ms
36585
+
36586
+ NoMethodError (undefined method `set_form_data' for nil:NilClass):
36587
+ /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/controllers/api_explorer/api_controller.rb:48:in `execute'
36588
+ actionpack (3.2.15) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
36589
+ actionpack (3.2.15) lib/abstract_controller/base.rb:167:in `process_action'
36590
+ actionpack (3.2.15) lib/action_controller/metal/rendering.rb:10:in `process_action'
36591
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
36592
+ activesupport (3.2.15) lib/active_support/callbacks.rb:414:in `_run__2661705987680949551__process_action__3796222653572217985__callbacks'
36593
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
36594
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
36595
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
36596
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:17:in `process_action'
36597
+ actionpack (3.2.15) lib/action_controller/metal/rescue.rb:29:in `process_action'
36598
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
36599
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `block in instrument'
36600
+ activesupport (3.2.15) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
36601
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `instrument'
36602
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
36603
+ actionpack (3.2.15) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
36604
+ activerecord (3.2.15) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
36605
+ actionpack (3.2.15) lib/abstract_controller/base.rb:121:in `process'
36606
+ actionpack (3.2.15) lib/abstract_controller/rendering.rb:45:in `process'
36607
+ actionpack (3.2.15) lib/action_controller/metal.rb:203:in `dispatch'
36608
+ actionpack (3.2.15) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
36609
+ actionpack (3.2.15) lib/action_controller/metal.rb:246:in `block in action'
36610
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `call'
36611
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
36612
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:36:in `call'
36613
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
36614
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
36615
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
36616
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
36617
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
36618
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
36619
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
36620
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
36621
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
36622
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
36623
+ actionpack (3.2.15) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
36624
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
36625
+ rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
36626
+ actionpack (3.2.15) lib/action_dispatch/middleware/head.rb:14:in `call'
36627
+ actionpack (3.2.15) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
36628
+ actionpack (3.2.15) lib/action_dispatch/middleware/flash.rb:242:in `call'
36629
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
36630
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
36631
+ actionpack (3.2.15) lib/action_dispatch/middleware/cookies.rb:341:in `call'
36632
+ activerecord (3.2.15) lib/active_record/query_cache.rb:64:in `call'
36633
+ activerecord (3.2.15) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
36634
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
36635
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `_run__3850607654258564256__call__3841173316705398591__callbacks'
36636
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
36637
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
36638
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
36639
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
36640
+ actionpack (3.2.15) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
36641
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
36642
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
36643
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
36644
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
36645
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
36646
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
36647
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
36648
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
36649
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
36650
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
36651
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
36652
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
36653
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
36654
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
36655
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
36656
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
36657
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
36658
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
36659
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
36660
+
36661
+
36662
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
36663
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
36664
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.0ms)
36665
+
36666
+
36667
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-22 11:10:49 -0200
36668
+ Processing by ApiExplorer::ApiController#method as */*
36669
+ Parameters: {"position"=>"1"}
36670
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
36671
+ Completed 200 OK in 1.1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
36672
+
36673
+
36674
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-22 11:10:54 -0200
36675
+ Processing by ApiExplorer::ApiController#method as */*
36676
+ Parameters: {"position"=>"2"}
36677
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
36678
+ Completed 200 OK in 1.0ms (Views: 0.2ms | ActiveRecord: 0.0ms)