api_explorer 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,4 @@
1
- /*
2
- Place all the styles related to the matching controller here.
3
- They will automatically be included in application.css.
4
- */
1
+ /* General styles */
5
2
 
6
3
  .api_explorer {
7
4
  background-color: #e9eaed;
@@ -12,7 +9,7 @@
12
9
  display: table;
13
10
  border-collapse: separate;
14
11
  border-color: gray;
15
- border-spacing: 0 !important;
12
+ border-spacing: 0;
16
13
  }
17
14
  .api_explorer tbody {
18
15
  display: table-row-group;
@@ -22,7 +19,6 @@
22
19
 
23
20
  .api_explorer tr {
24
21
  display: table-row;
25
- vertical-align: inherit;
26
22
  border-color: inherit;
27
23
  }
28
24
 
@@ -145,6 +141,7 @@
145
141
  font-size: 19px;
146
142
  }
147
143
 
144
+ /* Sections */
148
145
  .api_explorer .fields_section #clear_parameters, .api_explorer .fields_section #clear_headers,
149
146
  .api_explorer .fields_section #clear_authentication{
150
147
  width: 30px;
@@ -211,6 +208,7 @@
211
208
  font-size: 0;
212
209
  }
213
210
 
211
+ /* Minimize and maximize sections */
214
212
  .api_explorer .minimize {
215
213
  width: 30px;
216
214
  height: 30px;
@@ -313,6 +311,8 @@
313
311
  -o-transition: all 0.6s ease;
314
312
  }
315
313
 
314
+ /* History */
315
+
316
316
  .api_explorer .history_menu {
317
317
  float: right;
318
318
  max-width: 250px;
@@ -3,14 +3,16 @@ require_dependency "api_explorer/application_controller"
3
3
  module ApiExplorer
4
4
  class ApiController < ApplicationController
5
5
  before_filter :read_file
6
-
6
+
7
7
  def index
8
8
 
9
9
  end
10
10
 
11
11
  def method
12
+ # A method has been selected
12
13
  @method = @methods[params[:position].to_i - 1]
13
14
 
15
+ #Reading parameters and sending to the frontend
14
16
  render :json=> {
15
17
  :parameters_html=> (
16
18
  render_to_string("api_explorer/api/parameters", :locals=>{:parameters=>@method['parameters'], :values=>session} ,:layout => false)
@@ -21,34 +23,48 @@ module ApiExplorer
21
23
  def execute
22
24
  require 'net/http'
23
25
  require 'coderay'
26
+
27
+ # Build the headers array
24
28
  headers = params[:header][:name].zip(params[:header][:value])
25
29
  headers.select!{|header| !header[0].empty? && !header[1].empty?}
26
-
27
30
  headers.map!{|header| {:name=> header[0], :value=> header[1]}}
28
31
 
32
+ # Initialize HTTP request
29
33
  uri = URI::HTTP.build(:host=>request.host, :port=> request.port, :path=>'/' + params[:url])
30
34
  http = Net::HTTP.new(uri.host, uri.port)
31
35
 
32
36
  if params[:method].upcase == 'GET'
33
- request = Net::HTTP::Get.new(uri.request_uri)
37
+ request = Net::HTTP::Get.new(uri.request_uri, {'Content-Type' =>'application/json'})
34
38
  elsif params[:method].upcase == 'POST'
35
- request = Net::HTTP::Post.new(uri.request_uri)
39
+ request = Net::HTTP::Post.new(uri.request_uri, {'Content-Type' =>'application/json'})
36
40
  elsif params[:method].upcase == 'PUT'
37
- request = Net::HTTP::Put.new(uri.request_uri)
41
+ request = Net::HTTP::Put.new(uri.request_uri, {'Content-Type' =>'application/json'})
38
42
  elsif params[:method].upcase == 'DELETE'
39
- request = Net::HTTP::Delete.new(uri.request_uri)
43
+ request = Net::HTTP::Delete.new(uri.request_uri, {'Content-Type' =>'application/json'})
40
44
  end
41
45
 
42
-
46
+ # Store parameters on session
43
47
  form_hash = params.except([:action, :controller, :header, :authentication_type, :auth])
48
+
44
49
  form_hash.keys.each do |key|
45
- session['api_explorer_' + key.to_s] = form_hash[key]
50
+ if form_hash[key].is_a?(Hash)
51
+ h_and_key = to_form_name({ key=> form_hash[key] } ).split("=")
52
+ session['api_explorer_' + h_and_key.first] = h_and_key.second
53
+ else
54
+ session['api_explorer_' + key.to_s] = form_hash[key]
55
+ end
46
56
  end
57
+
58
+
59
+ # Set form data and headers
60
+ request.body = form_hash.to_hash.to_json
47
61
 
48
- request.set_form_data( form_hash )
62
+ #request.set_form_data( to_http_params(form_hash) )
49
63
  headers.each do |header|
50
64
  request[header[:name]] = header[:value]
51
65
  end
66
+
67
+ # Set authentication method
52
68
  if params[:authentication_type] == 'basic_auth'
53
69
  request.basic_auth params[:auth][:basic_auth_user], params[:auth][:basic_auth_password]
54
70
  elsif params[:authentication_type] == 'hash_url_auth'
@@ -57,12 +73,12 @@ module ApiExplorer
57
73
  request[params[:auth][:header_field]] = hash_verification
58
74
  end
59
75
 
60
-
76
+ # Make request
61
77
  response = http.request(request)
62
-
63
78
  raw_response = response.body
64
79
  response_html = ''
65
80
 
81
+ # Parse response and beautify the response
66
82
  if response.header['Content-Type'].include? 'application/json'
67
83
  tokens = CodeRay.scan(JSON.pretty_generate(JSON.parse(raw_response)), :json)
68
84
  response_html = tokens.div
@@ -76,17 +92,19 @@ module ApiExplorer
76
92
  response_html = '<div>' + raw_response + '</div>'
77
93
  end
78
94
 
95
+ # Parse and beautify request information
79
96
  request_html = CodeRay.scan(request.to_yaml, :yaml).div
80
97
 
81
-
98
+ # Get timestamp
82
99
  curr_time = DateTime.now
83
100
  timestamp = curr_time.strftime('%Y%m%d%H%M%S%L')
84
101
 
102
+ # Generate HTML for history
85
103
  history_html = render_to_string 'api_explorer/api/history', :locals=>{:request_html=>request_html,
86
104
  :response_html=>response_html, :timestamp=>timestamp}, :layout=>false
87
105
 
88
106
 
89
-
107
+ # Respond json request
90
108
  render :json =>{ :response_html=> response_html , :request_html => request_html,
91
109
  :history_html=>history_html, :date=> curr_time.strftime('%H:%M:%S'),
92
110
  :timestamp => timestamp,
@@ -95,6 +113,28 @@ module ApiExplorer
95
113
 
96
114
  end
97
115
  protected
116
+
117
+ def to_form_name(hash, rec=nil)
118
+ hmap = hash.map do |k, v|
119
+ wrap_left = !rec.nil? ? "[" : ""
120
+ wrap_right = !rec.nil? ? "]" : ""
121
+
122
+ if v.is_a?(Hash)
123
+ "#{wrap_left}#{k}#{wrap_right}" + to_form_name(v, true)
124
+ else
125
+ "#{wrap_left}#{k}#{wrap_right}=#{v}"
126
+ end
127
+ end
128
+
129
+ if rec
130
+ hmap.first
131
+ else
132
+ hmap.join('&')
133
+ end
134
+ end
135
+
136
+
137
+ # Read file with methods
98
138
  def read_file
99
139
  json_string = ''
100
140
  if ApiExplorer::use_file
@@ -1,4 +1,5 @@
1
1
  module ApiExplorer
2
2
  module ApiHelper
3
+
3
4
  end
4
5
  end
@@ -1,3 +1,3 @@
1
1
  module ApiExplorer
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
@@ -0,0 +1,6 @@
1
+ class UsersController < ApplicationController
2
+ layout false
3
+ def index
4
+ render :json => { :message => 'It works!'}
5
+ end
6
+ end
@@ -1,4 +1,6 @@
1
1
  Rails.application.routes.draw do
2
2
 
3
3
  mount ApiExplorer::Engine => "/api_explorer"
4
+
5
+ get '/v1/users' => 'users#index'
4
6
  end
@@ -4,7 +4,7 @@
4
4
  "url": "v1/users",
5
5
  "description": "The index of users",
6
6
  "method": "GET",
7
- "parameters": [{"name": "API_TOKEN"}]
7
+ "parameters": [{"name": "API_TOKEN"}, {"name": "array[field1]"}, {"name": "outer[inner][fieldX]"}]
8
8
  },
9
9
  {
10
10
  "name": "User login",
@@ -36676,3 +36676,1885 @@ Processing by ApiExplorer::ApiController#method as */*
36676
36676
  Parameters: {"position"=>"2"}
36677
36677
  Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
36678
36678
  Completed 200 OK in 1.0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
36679
+
36680
+
36681
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-22 12:23:18 -0200
36682
+ Connecting to database specified by database.yml
36683
+ Processing by ApiExplorer::ApiController#index as HTML
36684
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.4ms)
36685
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (0.7ms)
36686
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.4ms)
36687
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (51.7ms)
36688
+ Compiled api_explorer/api.css (0ms) (pid 2749)
36689
+ Compiled api_explorer/application.css (1ms) (pid 2749)
36690
+ Compiled api_explorer/api.js (0ms) (pid 2749)
36691
+ Compiled api_explorer/application.js (4ms) (pid 2749)
36692
+ Completed 200 OK in 385.9ms (Views: 364.6ms | ActiveRecord: 0.0ms)
36693
+
36694
+
36695
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-22 12:23:19 -0200
36696
+
36697
+
36698
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-22 12:23:19 -0200
36699
+ Served asset /api_explorer/application.css - 304 Not Modified (7ms)
36700
+ Served asset /api_explorer/api.css - 200 OK (2ms)
36701
+
36702
+
36703
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-22 12:23:19 -0200
36704
+
36705
+
36706
+
36707
+
36708
+
36709
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-22 12:23:19 -0200
36710
+
36711
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-22 12:23:19 -0200
36712
+ Served asset /jquery.js - 200 OK (33ms)
36713
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-22 12:23:19 -0200
36714
+ Served asset /jquery_ujs.js - 200 OK (2ms)
36715
+ Served asset /api_explorer/api.js - 200 OK (1ms)
36716
+ Served asset /api_explorer/application.js - 304 Not Modified (40ms)
36717
+
36718
+
36719
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-22 12:23:20 -0200
36720
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
36721
+
36722
+
36723
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-22 12:23:20 -0200
36724
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
36725
+
36726
+
36727
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-22 12:23:21 -0200
36728
+ Processing by ApiExplorer::ApiController#method as */*
36729
+ Parameters: {"position"=>"1"}
36730
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (1.4ms)
36731
+ Completed 200 OK in 24.8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
36732
+
36733
+
36734
+
36735
+
36736
+ Started GET "/assets/api_explorer/minimize.png" for 127.0.0.1 at 2013-11-22 12:23:21 -0200
36737
+ Started GET "/assets/api_explorer/clear.png" for 127.0.0.1 at 2013-11-22 12:23:21 -0200
36738
+ Served asset /api_explorer/minimize.png - 304 Not Modified (11ms)
36739
+ Served asset /api_explorer/clear.png - 304 Not Modified (26ms)
36740
+
36741
+
36742
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-22 12:23:22 -0200
36743
+ Processing by ApiExplorer::ApiController#execute as */*
36744
+ Parameters: {"API_TOKEN"=>"", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
36745
+
36746
+
36747
+ Started GET "/v1/users" for 127.0.0.1 at 2013-11-22 12:23:22 -0200
36748
+
36749
+ ActionController::RoutingError (No route matches [GET] "/v1/users"):
36750
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
36751
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
36752
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
36753
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
36754
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
36755
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
36756
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
36757
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
36758
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
36759
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
36760
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
36761
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
36762
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
36763
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
36764
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
36765
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
36766
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
36767
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
36768
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
36769
+
36770
+
36771
+ 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)
36772
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.5ms)
36773
+ Completed 200 OK in 287.4ms (Views: 0.7ms | ActiveRecord: 0.0ms)
36774
+
36775
+
36776
+ Started GET "/assets/api_explorer/maximize.png" for 127.0.0.1 at 2013-11-22 12:23:22 -0200
36777
+ Served asset /api_explorer/maximize.png - 304 Not Modified (14ms)
36778
+
36779
+
36780
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-22 12:30:09 -0200
36781
+ Connecting to database specified by database.yml
36782
+ Processing by ApiExplorer::ApiController#index as HTML
36783
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.5ms)
36784
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (0.7ms)
36785
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.5ms)
36786
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (63.0ms)
36787
+ Compiled api_explorer/api.css (0ms) (pid 2806)
36788
+ Compiled api_explorer/application.css (1ms) (pid 2806)
36789
+ Completed 200 OK in 310.8ms (Views: 289.8ms | ActiveRecord: 0.0ms)
36790
+
36791
+
36792
+
36793
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-22 12:30:10 -0200
36794
+
36795
+
36796
+
36797
+
36798
+
36799
+ Served asset /api_explorer/application.css - 304 Not Modified (4ms)
36800
+
36801
+
36802
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-22 12:30:10 -0200
36803
+
36804
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-22 12:30:10 -0200
36805
+
36806
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-22 12:30:10 -0200
36807
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-22 12:30:10 -0200
36808
+ Served asset /api_explorer/api.css - 200 OK (1ms)
36809
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-22 12:30:10 -0200
36810
+ Served asset /api_explorer/api.js - 304 Not Modified (39ms)
36811
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
36812
+ Served asset /jquery.js - 304 Not Modified (58ms)
36813
+ Served asset /api_explorer/application.js - 304 Not Modified (56ms)
36814
+
36815
+
36816
+
36817
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-22 12:30:11 -0200
36818
+
36819
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
36820
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-22 12:30:11 -0200
36821
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
36822
+
36823
+
36824
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-22 12:30:13 -0200
36825
+ Processing by ApiExplorer::ApiController#method as */*
36826
+ Parameters: {"position"=>"1"}
36827
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.6ms)
36828
+ Completed 200 OK in 35.1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
36829
+
36830
+
36831
+
36832
+ Started GET "/assets/api_explorer/clear.png" for 127.0.0.1 at 2013-11-22 12:30:13 -0200
36833
+
36834
+ Started GET "/assets/api_explorer/minimize.png" for 127.0.0.1 at 2013-11-22 12:30:13 -0200
36835
+ Served asset /api_explorer/minimize.png - 304 Not Modified (11ms)
36836
+ Served asset /api_explorer/clear.png - 304 Not Modified (31ms)
36837
+
36838
+
36839
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-22 12:30:16 -0200
36840
+ Processing by ApiExplorer::ApiController#execute as */*
36841
+ Parameters: {"API_TOKEN"=>"", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
36842
+
36843
+
36844
+ Started GET "/v1/users" for 127.0.0.1 at 2013-11-22 12:30:16 -0200
36845
+
36846
+ ActionController::RoutingError (No route matches [GET] "/v1/users"):
36847
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
36848
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
36849
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
36850
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
36851
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
36852
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
36853
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
36854
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
36855
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
36856
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
36857
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
36858
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
36859
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
36860
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
36861
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
36862
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
36863
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
36864
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
36865
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
36866
+
36867
+
36868
+ 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)
36869
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.5ms)
36870
+ Completed 200 OK in 263.6ms (Views: 0.7ms | ActiveRecord: 0.0ms)
36871
+
36872
+
36873
+ Started GET "/assets/api_explorer/maximize.png" for 127.0.0.1 at 2013-11-22 12:30:16 -0200
36874
+ Served asset /api_explorer/maximize.png - 304 Not Modified (15ms)
36875
+
36876
+
36877
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-22 12:31:01 -0200
36878
+ Processing by ApiExplorer::ApiController#execute as */*
36879
+ Parameters: {"API_TOKEN"=>"", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
36880
+
36881
+
36882
+ Started GET "/v1/users" for 127.0.0.1 at 2013-11-22 12:31:01 -0200
36883
+
36884
+ ActionController::RoutingError (No route matches [GET] "/v1/users"):
36885
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
36886
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
36887
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
36888
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
36889
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
36890
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
36891
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
36892
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
36893
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
36894
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
36895
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
36896
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
36897
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
36898
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
36899
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
36900
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
36901
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
36902
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
36903
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
36904
+
36905
+
36906
+ 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)
36907
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.1ms)
36908
+ Completed 200 OK in 14.2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
36909
+
36910
+
36911
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-22 12:31:28 -0200
36912
+ Connecting to database specified by database.yml
36913
+ Processing by ApiExplorer::ApiController#index as HTML
36914
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.4ms)
36915
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (0.7ms)
36916
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.4ms)
36917
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (40.7ms)
36918
+ Compiled api_explorer/api.css (0ms) (pid 2817)
36919
+ Compiled api_explorer/application.css (1ms) (pid 2817)
36920
+ Completed 200 OK in 128.3ms (Views: 127.9ms | ActiveRecord: 0.0ms)
36921
+
36922
+
36923
+
36924
+
36925
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-22 12:31:29 -0200
36926
+
36927
+
36928
+
36929
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-22 12:31:29 -0200
36930
+
36931
+ Served asset /api_explorer/application.css - 304 Not Modified (3ms)
36932
+
36933
+
36934
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-22 12:31:29 -0200
36935
+
36936
+
36937
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-22 12:31:29 -0200
36938
+ Served asset /api_explorer/api.css - 200 OK (2ms)
36939
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-22 12:31:29 -0200
36940
+ Served asset /api_explorer/api.js - 304 Not Modified (2ms)
36941
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-22 12:31:29 -0200
36942
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
36943
+ Served asset /jquery.js - 304 Not Modified (11ms)
36944
+ Served asset /api_explorer/application.js - 304 Not Modified (12ms)
36945
+
36946
+
36947
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-22 12:31:30 -0200
36948
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
36949
+
36950
+
36951
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-22 12:31:30 -0200
36952
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
36953
+
36954
+
36955
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-22 12:31:31 -0200
36956
+ Processing by ApiExplorer::ApiController#method as */*
36957
+ Parameters: {"position"=>"2"}
36958
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.8ms)
36959
+ Completed 200 OK in 43.3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
36960
+
36961
+
36962
+
36963
+
36964
+ Started GET "/assets/api_explorer/clear.png" for 127.0.0.1 at 2013-11-22 12:31:31 -0200
36965
+ Started GET "/assets/api_explorer/minimize.png" for 127.0.0.1 at 2013-11-22 12:31:31 -0200
36966
+ Served asset /api_explorer/clear.png - 304 Not Modified (16ms)
36967
+ Served asset /api_explorer/minimize.png - 304 Not Modified (30ms)
36968
+
36969
+
36970
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-22 12:31:34 -0200
36971
+ Processing by ApiExplorer::ApiController#execute as */*
36972
+ 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"}
36973
+
36974
+
36975
+ Started POST "/v1/users/login" for 127.0.0.1 at 2013-11-22 12:31:34 -0200
36976
+
36977
+ ActionController::RoutingError (No route matches [POST] "/v1/users/login"):
36978
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
36979
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
36980
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
36981
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
36982
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
36983
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
36984
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
36985
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
36986
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
36987
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
36988
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
36989
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
36990
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
36991
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
36992
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
36993
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
36994
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
36995
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
36996
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
36997
+
36998
+
36999
+ 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)
37000
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.6ms)
37001
+ Completed 200 OK in 176.4ms (Views: 0.8ms | ActiveRecord: 0.0ms)
37002
+
37003
+
37004
+ Started GET "/assets/api_explorer/maximize.png" for 127.0.0.1 at 2013-11-22 12:31:34 -0200
37005
+ Served asset /api_explorer/maximize.png - 304 Not Modified (23ms)
37006
+
37007
+
37008
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-29 12:12:15 -0200
37009
+ Connecting to database specified by database.yml
37010
+ Processing by ApiExplorer::ApiController#index as HTML
37011
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.4ms)
37012
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (0.8ms)
37013
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.4ms)
37014
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (51.9ms)
37015
+ Compiled api_explorer/api.js (0ms) (pid 5058)
37016
+ Compiled api_explorer/application.js (2ms) (pid 5058)
37017
+ Completed 200 OK in 266.5ms (Views: 245.4ms | ActiveRecord: 0.0ms)
37018
+
37019
+
37020
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-29 12:12:15 -0200
37021
+
37022
+
37023
+
37024
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-29 12:12:15 -0200
37025
+
37026
+
37027
+ Served asset /api_explorer/application.css - 304 Not Modified (6ms)
37028
+
37029
+
37030
+ Served asset /api_explorer/api.css - 304 Not Modified (3ms)
37031
+
37032
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 12:12:15 -0200
37033
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 12:12:15 -0200
37034
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-29 12:12:15 -0200
37035
+
37036
+ Served asset /api_explorer/api.js - 200 OK (4ms)
37037
+
37038
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-29 12:12:15 -0200
37039
+ Served asset /jquery_ujs.js - 304 Not Modified (7ms)
37040
+ Served asset /api_explorer/application.js - 304 Not Modified (18ms)
37041
+ Served asset /jquery.js - 304 Not Modified (10ms)
37042
+
37043
+
37044
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 12:12:17 -0200
37045
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
37046
+
37047
+
37048
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 12:12:17 -0200
37049
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
37050
+
37051
+
37052
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-29 12:12:18 -0200
37053
+ Processing by ApiExplorer::ApiController#method as */*
37054
+ Parameters: {"position"=>"2"}
37055
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.7ms)
37056
+ Completed 200 OK in 16.2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
37057
+
37058
+
37059
+
37060
+
37061
+ Started GET "/assets/api_explorer/clear.png" for 127.0.0.1 at 2013-11-29 12:12:18 -0200
37062
+ Started GET "/assets/api_explorer/minimize.png" for 127.0.0.1 at 2013-11-29 12:12:18 -0200
37063
+ Served asset /api_explorer/clear.png - 304 Not Modified (18ms)
37064
+ Served asset /api_explorer/minimize.png - 304 Not Modified (33ms)
37065
+
37066
+
37067
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-29 16:40:53 -0200
37068
+ Connecting to database specified by database.yml
37069
+ Processing by ApiExplorer::ApiController#index as HTML
37070
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.4ms)
37071
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (1.2ms)
37072
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.5ms)
37073
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (40.9ms)
37074
+ Completed 200 OK in 187.4ms (Views: 166.3ms | ActiveRecord: 0.0ms)
37075
+
37076
+
37077
+
37078
+
37079
+
37080
+
37081
+
37082
+
37083
+
37084
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-29 16:40:54 -0200
37085
+
37086
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-29 16:40:54 -0200
37087
+
37088
+
37089
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-29 16:40:54 -0200
37090
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-29 16:40:54 -0200
37091
+ Served asset /api_explorer/api.css - 304 Not Modified (14ms)
37092
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 16:40:54 -0200
37093
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 16:40:54 -0200
37094
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
37095
+ Served asset /api_explorer/application.css - 304 Not Modified (7ms)
37096
+ Served asset /api_explorer/api.js - 304 Not Modified (5ms)
37097
+ Served asset /jquery.js - 304 Not Modified (39ms)
37098
+ Served asset /api_explorer/application.js - 304 Not Modified (28ms)
37099
+
37100
+
37101
+
37102
+
37103
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 16:40:55 -0200
37104
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 16:40:55 -0200
37105
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
37106
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
37107
+
37108
+
37109
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-29 16:40:56 -0200
37110
+ Processing by ApiExplorer::ApiController#method as */*
37111
+ Parameters: {"position"=>"1"}
37112
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.9ms)
37113
+ Completed 200 OK in 98.0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
37114
+
37115
+
37116
+
37117
+
37118
+ Started GET "/assets/api_explorer/clear.png" for 127.0.0.1 at 2013-11-29 16:40:56 -0200
37119
+ Started GET "/assets/api_explorer/minimize.png" for 127.0.0.1 at 2013-11-29 16:40:56 -0200
37120
+ Served asset /api_explorer/clear.png - 304 Not Modified (38ms)
37121
+ Served asset /api_explorer/minimize.png - 304 Not Modified (60ms)
37122
+
37123
+
37124
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-29 16:40:58 -0200
37125
+ Processing by ApiExplorer::ApiController#execute as */*
37126
+ Parameters: {"API_TOKEN"=>"", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
37127
+ Completed 500 Internal Server Error in 97.6ms
37128
+
37129
+ NoMethodError (undefined method `to_http_params' for #<ApiExplorer::ApiController:0x007f83ffb94828>):
37130
+ /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/controllers/api_explorer/api_controller.rb:52:in `execute'
37131
+ actionpack (3.2.15) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
37132
+ actionpack (3.2.15) lib/abstract_controller/base.rb:167:in `process_action'
37133
+ actionpack (3.2.15) lib/action_controller/metal/rendering.rb:10:in `process_action'
37134
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
37135
+ activesupport (3.2.15) lib/active_support/callbacks.rb:414:in `_run__1565966242856835835__process_action__2457554290184206753__callbacks'
37136
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
37137
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
37138
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
37139
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:17:in `process_action'
37140
+ actionpack (3.2.15) lib/action_controller/metal/rescue.rb:29:in `process_action'
37141
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
37142
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `block in instrument'
37143
+ activesupport (3.2.15) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
37144
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `instrument'
37145
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
37146
+ actionpack (3.2.15) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
37147
+ activerecord (3.2.15) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
37148
+ actionpack (3.2.15) lib/abstract_controller/base.rb:121:in `process'
37149
+ actionpack (3.2.15) lib/abstract_controller/rendering.rb:45:in `process'
37150
+ actionpack (3.2.15) lib/action_controller/metal.rb:203:in `dispatch'
37151
+ actionpack (3.2.15) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
37152
+ actionpack (3.2.15) lib/action_controller/metal.rb:246:in `block in action'
37153
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `call'
37154
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
37155
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:36:in `call'
37156
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
37157
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
37158
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
37159
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
37160
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
37161
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
37162
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
37163
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
37164
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
37165
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
37166
+ actionpack (3.2.15) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
37167
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
37168
+ rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
37169
+ actionpack (3.2.15) lib/action_dispatch/middleware/head.rb:14:in `call'
37170
+ actionpack (3.2.15) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
37171
+ actionpack (3.2.15) lib/action_dispatch/middleware/flash.rb:242:in `call'
37172
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
37173
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
37174
+ actionpack (3.2.15) lib/action_dispatch/middleware/cookies.rb:341:in `call'
37175
+ activerecord (3.2.15) lib/active_record/query_cache.rb:64:in `call'
37176
+ activerecord (3.2.15) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
37177
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
37178
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `_run__889990491489173589__call__2027886571971038043__callbacks'
37179
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
37180
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
37181
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
37182
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
37183
+ actionpack (3.2.15) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
37184
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
37185
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
37186
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
37187
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
37188
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
37189
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
37190
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
37191
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
37192
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
37193
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
37194
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
37195
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
37196
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
37197
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
37198
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
37199
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
37200
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
37201
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
37202
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
37203
+
37204
+
37205
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
37206
+ 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)
37207
+ 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 (10.8ms)
37208
+
37209
+
37210
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-29 16:42:04 -0200
37211
+ Connecting to database specified by database.yml
37212
+ Processing by ApiExplorer::ApiController#execute as */*
37213
+ Parameters: {"API_TOKEN"=>"", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
37214
+ Completed 500 Internal Server Error in 68.2ms
37215
+
37216
+ NoMethodError (undefined method `map' for #<String:0x007fe7e52ed7c0>):
37217
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/uri/common.rb:931:in `encode_www_form'
37218
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:1761:in `set_form_data'
37219
+ /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/controllers/api_explorer/api_controller.rb:56:in `execute'
37220
+ actionpack (3.2.15) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
37221
+ actionpack (3.2.15) lib/abstract_controller/base.rb:167:in `process_action'
37222
+ actionpack (3.2.15) lib/action_controller/metal/rendering.rb:10:in `process_action'
37223
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
37224
+ activesupport (3.2.15) lib/active_support/callbacks.rb:414:in `_run__177692710296905942__process_action__250046450209030006__callbacks'
37225
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
37226
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
37227
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
37228
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:17:in `process_action'
37229
+ actionpack (3.2.15) lib/action_controller/metal/rescue.rb:29:in `process_action'
37230
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
37231
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `block in instrument'
37232
+ activesupport (3.2.15) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
37233
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `instrument'
37234
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
37235
+ actionpack (3.2.15) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
37236
+ activerecord (3.2.15) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
37237
+ actionpack (3.2.15) lib/abstract_controller/base.rb:121:in `process'
37238
+ actionpack (3.2.15) lib/abstract_controller/rendering.rb:45:in `process'
37239
+ actionpack (3.2.15) lib/action_controller/metal.rb:203:in `dispatch'
37240
+ actionpack (3.2.15) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
37241
+ actionpack (3.2.15) lib/action_controller/metal.rb:246:in `block in action'
37242
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `call'
37243
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
37244
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:36:in `call'
37245
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
37246
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
37247
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
37248
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
37249
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
37250
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
37251
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
37252
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
37253
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
37254
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
37255
+ actionpack (3.2.15) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
37256
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
37257
+ rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
37258
+ actionpack (3.2.15) lib/action_dispatch/middleware/head.rb:14:in `call'
37259
+ actionpack (3.2.15) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
37260
+ actionpack (3.2.15) lib/action_dispatch/middleware/flash.rb:242:in `call'
37261
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
37262
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
37263
+ actionpack (3.2.15) lib/action_dispatch/middleware/cookies.rb:341:in `call'
37264
+ activerecord (3.2.15) lib/active_record/query_cache.rb:64:in `call'
37265
+ activerecord (3.2.15) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
37266
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
37267
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `_run__834235936469186376__call__1429944227141338255__callbacks'
37268
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
37269
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
37270
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
37271
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
37272
+ actionpack (3.2.15) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
37273
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
37274
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
37275
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
37276
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
37277
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
37278
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
37279
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
37280
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
37281
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
37282
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
37283
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
37284
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
37285
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
37286
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
37287
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
37288
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
37289
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
37290
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
37291
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
37292
+
37293
+
37294
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
37295
+ 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)
37296
+ 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 (8.2ms)
37297
+
37298
+
37299
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-29 16:44:17 -0200
37300
+ Processing by ApiExplorer::ApiController#execute as */*
37301
+ Parameters: {"API_TOKEN"=>"", "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
37302
+ Completed 500 Internal Server Error in 19.2ms
37303
+
37304
+ NoMethodError (undefined method `map' for #<String:0x007fe7e6466240>):
37305
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/uri/common.rb:931:in `encode_www_form'
37306
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:1761:in `set_form_data'
37307
+ /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/controllers/api_explorer/api_controller.rb:56:in `execute'
37308
+ actionpack (3.2.15) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
37309
+ actionpack (3.2.15) lib/abstract_controller/base.rb:167:in `process_action'
37310
+ actionpack (3.2.15) lib/action_controller/metal/rendering.rb:10:in `process_action'
37311
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
37312
+ activesupport (3.2.15) lib/active_support/callbacks.rb:414:in `_run__177692710296905942__process_action__250046450209030006__callbacks'
37313
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
37314
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
37315
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
37316
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:17:in `process_action'
37317
+ actionpack (3.2.15) lib/action_controller/metal/rescue.rb:29:in `process_action'
37318
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
37319
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `block in instrument'
37320
+ activesupport (3.2.15) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
37321
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `instrument'
37322
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
37323
+ actionpack (3.2.15) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
37324
+ activerecord (3.2.15) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
37325
+ actionpack (3.2.15) lib/abstract_controller/base.rb:121:in `process'
37326
+ actionpack (3.2.15) lib/abstract_controller/rendering.rb:45:in `process'
37327
+ actionpack (3.2.15) lib/action_controller/metal.rb:203:in `dispatch'
37328
+ actionpack (3.2.15) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
37329
+ actionpack (3.2.15) lib/action_controller/metal.rb:246:in `block in action'
37330
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `call'
37331
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
37332
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:36:in `call'
37333
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
37334
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
37335
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
37336
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
37337
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
37338
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
37339
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
37340
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
37341
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
37342
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
37343
+ actionpack (3.2.15) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
37344
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
37345
+ rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
37346
+ actionpack (3.2.15) lib/action_dispatch/middleware/head.rb:14:in `call'
37347
+ actionpack (3.2.15) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
37348
+ actionpack (3.2.15) lib/action_dispatch/middleware/flash.rb:242:in `call'
37349
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
37350
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
37351
+ actionpack (3.2.15) lib/action_dispatch/middleware/cookies.rb:341:in `call'
37352
+ activerecord (3.2.15) lib/active_record/query_cache.rb:64:in `call'
37353
+ activerecord (3.2.15) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
37354
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
37355
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `_run__834235936469186376__call__1429944227141338255__callbacks'
37356
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
37357
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
37358
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
37359
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
37360
+ actionpack (3.2.15) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
37361
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
37362
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
37363
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
37364
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
37365
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
37366
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
37367
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
37368
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
37369
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
37370
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
37371
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
37372
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
37373
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
37374
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
37375
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
37376
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
37377
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
37378
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
37379
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
37380
+
37381
+
37382
+ Rendered /usr/local/rvm/gems/ruby-1.9.3-p429/gems/actionpack-3.2.15/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
37383
+ 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.7ms)
37384
+ 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.5ms)
37385
+
37386
+
37387
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-29 16:45:03 -0200
37388
+ Processing by ApiExplorer::ApiController#index as HTML
37389
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.5ms)
37390
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (0.9ms)
37391
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.5ms)
37392
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (51.8ms)
37393
+ Completed 200 OK in 197.0ms (Views: 196.5ms | ActiveRecord: 0.0ms)
37394
+
37395
+
37396
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-29 16:45:03 -0200
37397
+
37398
+
37399
+
37400
+
37401
+
37402
+
37403
+
37404
+ Served asset /api_explorer/application.css - 304 Not Modified (6ms)
37405
+
37406
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-29 16:45:03 -0200
37407
+
37408
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-29 16:45:03 -0200
37409
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-29 16:45:03 -0200
37410
+
37411
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 16:45:03 -0200
37412
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
37413
+ Served asset /api_explorer/api.css - 304 Not Modified (5ms)
37414
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 16:45:03 -0200
37415
+ Served asset /api_explorer/api.js - 304 Not Modified (2ms)
37416
+ Served asset /jquery.js - 304 Not Modified (12ms)
37417
+ Served asset /api_explorer/application.js - 304 Not Modified (13ms)
37418
+
37419
+
37420
+
37421
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 16:45:04 -0200
37422
+
37423
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
37424
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 16:45:04 -0200
37425
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
37426
+
37427
+
37428
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-29 16:45:05 -0200
37429
+ Processing by ApiExplorer::ApiController#method as */*
37430
+ Parameters: {"position"=>"1"}
37431
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.6ms)
37432
+ Completed 200 OK in 36.2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
37433
+
37434
+
37435
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-29 16:45:20 -0200
37436
+ Processing by ApiExplorer::ApiController#execute as */*
37437
+ Parameters: {"API_TOKEN"=>"saddsadsa", "array"=>{"field1"=>"asddsadsa"}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
37438
+ Completed 500 Internal Server Error in 1.2ms
37439
+
37440
+ NoMethodError (undefined method `map' for #<String:0x007fe7e3f169e0>):
37441
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/uri/common.rb:931:in `encode_www_form'
37442
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:1761:in `set_form_data'
37443
+ /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/controllers/api_explorer/api_controller.rb:56:in `execute'
37444
+ actionpack (3.2.15) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
37445
+ actionpack (3.2.15) lib/abstract_controller/base.rb:167:in `process_action'
37446
+ actionpack (3.2.15) lib/action_controller/metal/rendering.rb:10:in `process_action'
37447
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
37448
+ activesupport (3.2.15) lib/active_support/callbacks.rb:414:in `_run__177692710296905942__process_action__250046450209030006__callbacks'
37449
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
37450
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
37451
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
37452
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:17:in `process_action'
37453
+ actionpack (3.2.15) lib/action_controller/metal/rescue.rb:29:in `process_action'
37454
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
37455
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `block in instrument'
37456
+ activesupport (3.2.15) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
37457
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `instrument'
37458
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
37459
+ actionpack (3.2.15) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
37460
+ activerecord (3.2.15) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
37461
+ actionpack (3.2.15) lib/abstract_controller/base.rb:121:in `process'
37462
+ actionpack (3.2.15) lib/abstract_controller/rendering.rb:45:in `process'
37463
+ actionpack (3.2.15) lib/action_controller/metal.rb:203:in `dispatch'
37464
+ actionpack (3.2.15) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
37465
+ actionpack (3.2.15) lib/action_controller/metal.rb:246:in `block in action'
37466
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `call'
37467
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
37468
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:36:in `call'
37469
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
37470
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
37471
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
37472
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
37473
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
37474
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
37475
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
37476
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
37477
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
37478
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
37479
+ actionpack (3.2.15) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
37480
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
37481
+ rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
37482
+ actionpack (3.2.15) lib/action_dispatch/middleware/head.rb:14:in `call'
37483
+ actionpack (3.2.15) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
37484
+ actionpack (3.2.15) lib/action_dispatch/middleware/flash.rb:242:in `call'
37485
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
37486
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
37487
+ actionpack (3.2.15) lib/action_dispatch/middleware/cookies.rb:341:in `call'
37488
+ activerecord (3.2.15) lib/active_record/query_cache.rb:64:in `call'
37489
+ activerecord (3.2.15) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
37490
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
37491
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `_run__834235936469186376__call__1429944227141338255__callbacks'
37492
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
37493
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
37494
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
37495
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
37496
+ actionpack (3.2.15) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
37497
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
37498
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
37499
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
37500
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
37501
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
37502
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
37503
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
37504
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
37505
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
37506
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
37507
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
37508
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
37509
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
37510
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
37511
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
37512
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
37513
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
37514
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
37515
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
37516
+
37517
+
37518
+ 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)
37519
+ 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.2ms)
37520
+ 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.3ms)
37521
+
37522
+
37523
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-29 17:05:31 -0200
37524
+ Connecting to database specified by database.yml
37525
+ Processing by ApiExplorer::ApiController#execute as */*
37526
+ Parameters: {"API_TOKEN"=>"saddsadsa", "array"=>{"field1"=>"asddsadsa"}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
37527
+ Completed 500 Internal Server Error in 101.2ms
37528
+
37529
+ NoMethodError (undefined method `bytesize' for #<ActiveSupport::HashWithIndifferentAccess:0x007ff0de1e2748>):
37530
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:1933:in `send_request_with_body'
37531
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:1920:in `exec'
37532
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:1318:in `block in transport_request'
37533
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:1317:in `catch'
37534
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:1317:in `transport_request'
37535
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:1294:in `request'
37536
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:1287:in `block in request'
37537
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:746:in `start'
37538
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:1285:in `request'
37539
+ /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/controllers/api_explorer/api_controller.rb:70:in `execute'
37540
+ actionpack (3.2.15) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
37541
+ actionpack (3.2.15) lib/abstract_controller/base.rb:167:in `process_action'
37542
+ actionpack (3.2.15) lib/action_controller/metal/rendering.rb:10:in `process_action'
37543
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
37544
+ activesupport (3.2.15) lib/active_support/callbacks.rb:414:in `_run__3504277233117598759__process_action__1663931044503577699__callbacks'
37545
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
37546
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
37547
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
37548
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:17:in `process_action'
37549
+ actionpack (3.2.15) lib/action_controller/metal/rescue.rb:29:in `process_action'
37550
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
37551
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `block in instrument'
37552
+ activesupport (3.2.15) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
37553
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `instrument'
37554
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
37555
+ actionpack (3.2.15) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
37556
+ activerecord (3.2.15) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
37557
+ actionpack (3.2.15) lib/abstract_controller/base.rb:121:in `process'
37558
+ actionpack (3.2.15) lib/abstract_controller/rendering.rb:45:in `process'
37559
+ actionpack (3.2.15) lib/action_controller/metal.rb:203:in `dispatch'
37560
+ actionpack (3.2.15) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
37561
+ actionpack (3.2.15) lib/action_controller/metal.rb:246:in `block in action'
37562
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `call'
37563
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
37564
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:36:in `call'
37565
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
37566
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
37567
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
37568
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
37569
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
37570
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
37571
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
37572
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
37573
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
37574
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
37575
+ actionpack (3.2.15) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
37576
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
37577
+ rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
37578
+ actionpack (3.2.15) lib/action_dispatch/middleware/head.rb:14:in `call'
37579
+ actionpack (3.2.15) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
37580
+ actionpack (3.2.15) lib/action_dispatch/middleware/flash.rb:242:in `call'
37581
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
37582
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
37583
+ actionpack (3.2.15) lib/action_dispatch/middleware/cookies.rb:341:in `call'
37584
+ activerecord (3.2.15) lib/active_record/query_cache.rb:64:in `call'
37585
+ activerecord (3.2.15) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
37586
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
37587
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `_run__434063855610774338__call__4219260492751046777__callbacks'
37588
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
37589
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
37590
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
37591
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
37592
+ actionpack (3.2.15) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
37593
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
37594
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
37595
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
37596
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
37597
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
37598
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
37599
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
37600
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
37601
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
37602
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
37603
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
37604
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
37605
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
37606
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
37607
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
37608
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
37609
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
37610
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
37611
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
37612
+
37613
+
37614
+ 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)
37615
+ 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)
37616
+ 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.2ms)
37617
+
37618
+
37619
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-29 17:09:33 -0200
37620
+ Connecting to database specified by database.yml
37621
+ Processing by ApiExplorer::ApiController#execute as */*
37622
+ Parameters: {"API_TOKEN"=>"saddsadsa", "array"=>{"field1"=>"asddsadsa"}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
37623
+ Completed 500 Internal Server Error in 213.4ms
37624
+
37625
+ NoMethodError (undefined method `bytesize' for #<Hash:0x007ff25af9fd68>):
37626
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:1933:in `send_request_with_body'
37627
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:1920:in `exec'
37628
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:1318:in `block in transport_request'
37629
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:1317:in `catch'
37630
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:1317:in `transport_request'
37631
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:1294:in `request'
37632
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:1287:in `block in request'
37633
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:746:in `start'
37634
+ /usr/local/rvm/rubies/ruby-1.9.3-p429/lib/ruby/1.9.1/net/http.rb:1285:in `request'
37635
+ /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/controllers/api_explorer/api_controller.rb:70:in `execute'
37636
+ actionpack (3.2.15) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
37637
+ actionpack (3.2.15) lib/abstract_controller/base.rb:167:in `process_action'
37638
+ actionpack (3.2.15) lib/action_controller/metal/rendering.rb:10:in `process_action'
37639
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
37640
+ activesupport (3.2.15) lib/active_support/callbacks.rb:414:in `_run__4342339319317619944__process_action__4376297118499618953__callbacks'
37641
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
37642
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
37643
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
37644
+ actionpack (3.2.15) lib/abstract_controller/callbacks.rb:17:in `process_action'
37645
+ actionpack (3.2.15) lib/action_controller/metal/rescue.rb:29:in `process_action'
37646
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
37647
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `block in instrument'
37648
+ activesupport (3.2.15) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
37649
+ activesupport (3.2.15) lib/active_support/notifications.rb:123:in `instrument'
37650
+ actionpack (3.2.15) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
37651
+ actionpack (3.2.15) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
37652
+ activerecord (3.2.15) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
37653
+ actionpack (3.2.15) lib/abstract_controller/base.rb:121:in `process'
37654
+ actionpack (3.2.15) lib/abstract_controller/rendering.rb:45:in `process'
37655
+ actionpack (3.2.15) lib/action_controller/metal.rb:203:in `dispatch'
37656
+ actionpack (3.2.15) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
37657
+ actionpack (3.2.15) lib/action_controller/metal.rb:246:in `block in action'
37658
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `call'
37659
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
37660
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:36:in `call'
37661
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
37662
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
37663
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
37664
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
37665
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
37666
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
37667
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
37668
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
37669
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
37670
+ actionpack (3.2.15) lib/action_dispatch/routing/route_set.rb:608:in `call'
37671
+ actionpack (3.2.15) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
37672
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
37673
+ rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
37674
+ actionpack (3.2.15) lib/action_dispatch/middleware/head.rb:14:in `call'
37675
+ actionpack (3.2.15) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
37676
+ actionpack (3.2.15) lib/action_dispatch/middleware/flash.rb:242:in `call'
37677
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
37678
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
37679
+ actionpack (3.2.15) lib/action_dispatch/middleware/cookies.rb:341:in `call'
37680
+ activerecord (3.2.15) lib/active_record/query_cache.rb:64:in `call'
37681
+ activerecord (3.2.15) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
37682
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
37683
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `_run__2928863377713190005__call__411588882645152572__callbacks'
37684
+ activesupport (3.2.15) lib/active_support/callbacks.rb:405:in `__run_callback'
37685
+ activesupport (3.2.15) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
37686
+ activesupport (3.2.15) lib/active_support/callbacks.rb:81:in `run_callbacks'
37687
+ actionpack (3.2.15) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
37688
+ actionpack (3.2.15) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
37689
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
37690
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
37691
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
37692
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
37693
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
37694
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
37695
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
37696
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
37697
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
37698
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
37699
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
37700
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
37701
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
37702
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
37703
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
37704
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
37705
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
37706
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
37707
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
37708
+
37709
+
37710
+ 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)
37711
+ 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)
37712
+ 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 (15.2ms)
37713
+
37714
+
37715
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-29 17:20:33 -0200
37716
+ Connecting to database specified by database.yml
37717
+ Processing by ApiExplorer::ApiController#index as HTML
37718
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.5ms)
37719
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (0.8ms)
37720
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.6ms)
37721
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (41.0ms)
37722
+ Completed 200 OK in 160.9ms (Views: 144.4ms | ActiveRecord: 0.0ms)
37723
+
37724
+
37725
+
37726
+
37727
+
37728
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-29 17:20:34 -0200
37729
+
37730
+
37731
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-29 17:20:34 -0200
37732
+
37733
+
37734
+
37735
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-29 17:20:34 -0200
37736
+
37737
+ Served asset /api_explorer/api.css - 304 Not Modified (2ms)
37738
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 17:20:34 -0200
37739
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 17:20:34 -0200
37740
+
37741
+ Served asset /api_explorer/application.css - 304 Not Modified (3ms)
37742
+ Served asset /api_explorer/api.js - 304 Not Modified (3ms)
37743
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-29 17:20:34 -0200
37744
+ Served asset /jquery.js - 304 Not Modified (18ms)
37745
+ Served asset /api_explorer/application.js - 304 Not Modified (14ms)
37746
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
37747
+
37748
+
37749
+
37750
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 17:20:35 -0200
37751
+
37752
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
37753
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 17:20:35 -0200
37754
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
37755
+
37756
+
37757
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-29 17:20:36 -0200
37758
+ Processing by ApiExplorer::ApiController#method as */*
37759
+ Parameters: {"position"=>"1"}
37760
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.6ms)
37761
+ Completed 200 OK in 41.4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
37762
+
37763
+
37764
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-29 17:20:39 -0200
37765
+ Processing by ApiExplorer::ApiController#execute as */*
37766
+ Parameters: {"API_TOKEN"=>"dsadsa", "array"=>{"field1"=>"dsadas"}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
37767
+
37768
+
37769
+ Started GET "/v1/users" for 127.0.0.1 at 2013-11-29 17:20:39 -0200
37770
+
37771
+ ActionController::RoutingError (No route matches [GET] "/v1/users"):
37772
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
37773
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
37774
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
37775
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
37776
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
37777
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
37778
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
37779
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
37780
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
37781
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
37782
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
37783
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
37784
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
37785
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
37786
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
37787
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
37788
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
37789
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
37790
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
37791
+
37792
+
37793
+ 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)
37794
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.6ms)
37795
+ Completed 200 OK in 359.1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
37796
+
37797
+
37798
+ Started GET "/assets/api_explorer/maximize.png" for 127.0.0.1 at 2013-11-29 17:20:39 -0200
37799
+ Served asset /api_explorer/maximize.png - 304 Not Modified (10ms)
37800
+
37801
+
37802
+
37803
+
37804
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 17:21:08 -0200
37805
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 17:21:08 -0200
37806
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
37807
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
37808
+
37809
+
37810
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-29 17:21:11 -0200
37811
+ Processing by ApiExplorer::ApiController#method as */*
37812
+ Parameters: {"position"=>"2"}
37813
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.2ms)
37814
+ Completed 200 OK in 1.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
37815
+
37816
+
37817
+
37818
+ Started GET "/assets/api_explorer/clear.png" for 127.0.0.1 at 2013-11-29 17:21:11 -0200
37819
+
37820
+ Started GET "/assets/api_explorer/minimize.png" for 127.0.0.1 at 2013-11-29 17:21:11 -0200
37821
+ Served asset /api_explorer/clear.png - 304 Not Modified (34ms)
37822
+ Served asset /api_explorer/minimize.png - 304 Not Modified (69ms)
37823
+
37824
+
37825
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-29 17:21:13 -0200
37826
+ Processing by ApiExplorer::ApiController#method as */*
37827
+ Parameters: {"position"=>"1"}
37828
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
37829
+ Completed 200 OK in 0.9ms (Views: 0.3ms | ActiveRecord: 0.0ms)
37830
+
37831
+
37832
+ Started GET "/assets/api_explorer/delete.png" for 127.0.0.1 at 2013-11-29 17:21:15 -0200
37833
+ Served asset /api_explorer/delete.png - 304 Not Modified (30ms)
37834
+
37835
+
37836
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-29 17:21:18 -0200
37837
+ Processing by ApiExplorer::ApiController#execute as */*
37838
+ Parameters: {"API_TOKEN"=>"dsadsa", "array"=>{"field1"=>"daasdads"}, "header"=>{"name"=>["", ""], "value"=>["", ""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
37839
+
37840
+
37841
+ Started GET "/v1/users" for 127.0.0.1 at 2013-11-29 17:21:18 -0200
37842
+
37843
+ ActionController::RoutingError (No route matches [GET] "/v1/users"):
37844
+ actionpack (3.2.15) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
37845
+ actionpack (3.2.15) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
37846
+ railties (3.2.15) lib/rails/rack/logger.rb:32:in `call_app'
37847
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `block in call'
37848
+ activesupport (3.2.15) lib/active_support/tagged_logging.rb:22:in `tagged'
37849
+ railties (3.2.15) lib/rails/rack/logger.rb:16:in `call'
37850
+ actionpack (3.2.15) lib/action_dispatch/middleware/request_id.rb:22:in `call'
37851
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
37852
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
37853
+ activesupport (3.2.15) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
37854
+ actionpack (3.2.15) lib/action_dispatch/middleware/static.rb:63:in `call'
37855
+ railties (3.2.15) lib/rails/engine.rb:484:in `call'
37856
+ railties (3.2.15) lib/rails/application.rb:231:in `call'
37857
+ railties (3.2.15) lib/rails/railtie/configurable.rb:30:in `method_missing'
37858
+ thin (1.6.1) lib/thin/connection.rb:82:in `block in pre_process'
37859
+ thin (1.6.1) lib/thin/connection.rb:80:in `catch'
37860
+ thin (1.6.1) lib/thin/connection.rb:80:in `pre_process'
37861
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `call'
37862
+ eventmachine (1.0.3) lib/eventmachine.rb:1037:in `block in spawn_threadpool'
37863
+
37864
+
37865
+ 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)
37866
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.0ms)
37867
+ Completed 200 OK in 14.5ms (Views: 0.6ms | ActiveRecord: 0.0ms)
37868
+
37869
+
37870
+ Started GET "/assets/api_explorer/maximize.png" for 127.0.0.1 at 2013-11-29 17:21:18 -0200
37871
+ Served asset /api_explorer/maximize.png - 304 Not Modified (0ms)
37872
+
37873
+
37874
+ Started GET "/v1/users" for 127.0.0.1 at 2013-11-29 17:39:27 -0200
37875
+ Connecting to database specified by database.yml
37876
+ Processing by UsersController#index as HTML
37877
+ Completed 200 OK in 0.8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
37878
+
37879
+
37880
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-29 17:39:32 -0200
37881
+ Processing by ApiExplorer::ApiController#execute as */*
37882
+ Parameters: {"API_TOKEN"=>"dsadsa", "array"=>{"field1"=>"daasdads"}, "header"=>{"name"=>["", ""], "value"=>["", ""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
37883
+
37884
+
37885
+ Started GET "/v1/users" for 127.0.0.1 at 2013-11-29 17:39:32 -0200
37886
+ Processing by UsersController#index as */*
37887
+ Parameters: {"API_TOKEN"=>"dsadsa", "array"=>{"field1"=>"daasdads"}, "header"=>{"name"=>["", ""], "value"=>["", ""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET", "user"=>{"API_TOKEN"=>"dsadsa", "array"=>{"field1"=>"daasdads"}, "header"=>{"name"=>["", ""], "value"=>["", ""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET", "action"=>"index", "controller"=>"users"}}
37888
+ Completed 200 OK in 0.3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
37889
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.6ms)
37890
+ Completed 200 OK in 252.9ms (Views: 0.4ms | ActiveRecord: 0.0ms)
37891
+
37892
+
37893
+ Started GET "/v1/users?dsako=312" for 127.0.0.1 at 2013-11-29 17:46:09 -0200
37894
+ Processing by UsersController#index as HTML
37895
+ Parameters: {"dsako"=>"312"}
37896
+ Completed 200 OK in 0.4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
37897
+
37898
+
37899
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-29 17:47:31 -0200
37900
+ Processing by ApiExplorer::ApiController#index as HTML
37901
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.5ms)
37902
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (0.8ms)
37903
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.4ms)
37904
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (51.9ms)
37905
+ Completed 200 OK in 223.4ms (Views: 222.6ms | ActiveRecord: 0.0ms)
37906
+
37907
+
37908
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-29 17:47:31 -0200
37909
+
37910
+
37911
+
37912
+
37913
+
37914
+
37915
+ Served asset /api_explorer/application.css - 304 Not Modified (3ms)
37916
+
37917
+
37918
+
37919
+
37920
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-29 17:47:31 -0200
37921
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 17:47:31 -0200
37922
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-29 17:47:31 -0200
37923
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-29 17:47:31 -0200
37924
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 17:47:31 -0200
37925
+ Served asset /jquery_ujs.js - 304 Not Modified (19ms)
37926
+ Served asset /api_explorer/api.css - 304 Not Modified (5ms)
37927
+ Served asset /api_explorer/api.js - 304 Not Modified (2ms)
37928
+ Served asset /jquery.js - 304 Not Modified (27ms)
37929
+ Served asset /api_explorer/application.js - 304 Not Modified (35ms)
37930
+
37931
+
37932
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 17:47:33 -0200
37933
+
37934
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
37935
+
37936
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 17:47:33 -0200
37937
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
37938
+
37939
+
37940
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-29 17:47:33 -0200
37941
+ Processing by ApiExplorer::ApiController#method as */*
37942
+ Parameters: {"position"=>"1"}
37943
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.6ms)
37944
+ Completed 200 OK in 16.3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
37945
+
37946
+
37947
+
37948
+
37949
+ Started GET "/assets/api_explorer/clear.png" for 127.0.0.1 at 2013-11-29 17:47:33 -0200
37950
+ Started GET "/assets/api_explorer/minimize.png" for 127.0.0.1 at 2013-11-29 17:47:33 -0200
37951
+ Served asset /api_explorer/clear.png - 304 Not Modified (85ms)
37952
+ Served asset /api_explorer/minimize.png - 304 Not Modified (85ms)
37953
+
37954
+
37955
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-29 17:47:43 -0200
37956
+ Processing by ApiExplorer::ApiController#method as */*
37957
+ Parameters: {"position"=>"2"}
37958
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
37959
+ Completed 200 OK in 1.1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
37960
+
37961
+
37962
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-29 17:47:44 -0200
37963
+ Processing by ApiExplorer::ApiController#method as */*
37964
+ Parameters: {"position"=>"1"}
37965
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
37966
+ Completed 200 OK in 0.9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
37967
+
37968
+
37969
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-29 17:47:52 -0200
37970
+ Processing by ApiExplorer::ApiController#execute as */*
37971
+ Parameters: {"API_TOKEN"=>"dsadsa", "array"=>{"field1"=>"dasdsa"}, "outer"=>{"inner"=>{"fieldX"=>"dassda"}}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
37972
+
37973
+
37974
+ Started GET "/v1/users" for 127.0.0.1 at 2013-11-29 17:47:52 -0200
37975
+ Processing by UsersController#index as */*
37976
+ Parameters: {"API_TOKEN"=>"dsadsa", "array"=>{"field1"=>"dasdsa"}, "outer"=>{"inner"=>{"fieldX"=>"dassda"}}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET", "user"=>{"API_TOKEN"=>"dsadsa", "array"=>{"field1"=>"dasdsa"}, "outer"=>{"inner"=>{"fieldX"=>"dassda"}}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET", "action"=>"index", "controller"=>"users"}}
37977
+ Completed 200 OK in 0.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
37978
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.0ms)
37979
+ Completed 200 OK in 10.5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
37980
+
37981
+
37982
+ Started GET "/assets/api_explorer/maximize.png" for 127.0.0.1 at 2013-11-29 17:47:52 -0200
37983
+ Served asset /api_explorer/maximize.png - 304 Not Modified (89ms)
37984
+
37985
+
37986
+ Started GET "/assets/api_explorer/delete.png" for 127.0.0.1 at 2013-11-29 17:48:09 -0200
37987
+ Served asset /api_explorer/delete.png - 304 Not Modified (54ms)
37988
+
37989
+
37990
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-29 17:52:24 -0200
37991
+ Processing by ApiExplorer::ApiController#index as HTML
37992
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.0ms)
37993
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (0.4ms)
37994
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.1ms)
37995
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (1.9ms)
37996
+ Completed 200 OK in 5.7ms (Views: 5.4ms | ActiveRecord: 0.0ms)
37997
+
37998
+
37999
+
38000
+
38001
+
38002
+
38003
+
38004
+
38005
+
38006
+
38007
+
38008
+
38009
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-29 17:52:24 -0200
38010
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-29 17:52:24 -0200
38011
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-29 17:52:24 -0200
38012
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-29 17:52:24 -0200
38013
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 17:52:24 -0200
38014
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 17:52:24 -0200
38015
+ Served asset /api_explorer/application.css - 304 Not Modified (0ms)
38016
+ Served asset /jquery.js - 304 Not Modified (0ms)
38017
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
38018
+ Served asset /api_explorer/api.css - 304 Not Modified (0ms)
38019
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
38020
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
38021
+
38022
+
38023
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 17:52:25 -0200
38024
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
38025
+
38026
+
38027
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 17:52:25 -0200
38028
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
38029
+
38030
+
38031
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-29 17:52:26 -0200
38032
+ Processing by ApiExplorer::ApiController#method as */*
38033
+ Parameters: {"position"=>"1"}
38034
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.2ms)
38035
+ Completed 200 OK in 1.5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
38036
+
38037
+
38038
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-29 17:56:45 -0200
38039
+ Connecting to database specified by database.yml
38040
+ Processing by ApiExplorer::ApiController#execute as */*
38041
+ Parameters: {"API_TOKEN"=>"dsadsa", "array"=>{"field1"=>"sasdasd"}, "outer"=>{"inner"=>{"fieldX"=>""}}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
38042
+
38043
+
38044
+ Started GET "/v1/users" for 127.0.0.1 at 2013-11-29 17:56:45 -0200
38045
+ Processing by UsersController#index as */*
38046
+ Parameters: {"API_TOKEN"=>"dsadsa", "array"=>{"field1"=>"sasdasd"}, "outer"=>{"inner"=>{"fieldX"=>""}}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET", "user"=>{"API_TOKEN"=>"dsadsa", "array"=>{"field1"=>"sasdasd"}, "outer"=>{"inner"=>{"fieldX"=>""}}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET", "action"=>"index", "controller"=>"users"}}
38047
+ Completed 200 OK in 0.5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
38048
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.5ms)
38049
+ Completed 200 OK in 258.4ms (Views: 0.4ms | ActiveRecord: 0.0ms)
38050
+
38051
+
38052
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-29 17:57:34 -0200
38053
+ Processing by ApiExplorer::ApiController#execute as */*
38054
+ Parameters: {"API_TOKEN"=>"dsadsa", "array"=>{"field1"=>"sasdasd"}, "outer"=>{"inner"=>{"fieldX"=>"assdasd"}}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
38055
+
38056
+
38057
+ Started GET "/v1/users" for 127.0.0.1 at 2013-11-29 17:57:34 -0200
38058
+ Processing by UsersController#index as */*
38059
+ Parameters: {"API_TOKEN"=>"dsadsa", "array"=>{"field1"=>"sasdasd"}, "outer"=>{"inner"=>{"fieldX"=>"assdasd"}}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET", "user"=>{"API_TOKEN"=>"dsadsa", "array"=>{"field1"=>"sasdasd"}, "outer"=>{"inner"=>{"fieldX"=>"assdasd"}}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET", "action"=>"index", "controller"=>"users"}}
38060
+ Completed 200 OK in 0.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
38061
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.1ms)
38062
+ Completed 200 OK in 34.9ms (Views: 0.4ms | ActiveRecord: 0.0ms)
38063
+
38064
+
38065
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-29 18:05:59 -0200
38066
+ Connecting to database specified by database.yml
38067
+ Processing by ApiExplorer::ApiController#index as HTML
38068
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.6ms)
38069
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (0.6ms)
38070
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.4ms)
38071
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (62.6ms)
38072
+ Completed 200 OK in 805.7ms (Views: 774.7ms | ActiveRecord: 0.0ms)
38073
+
38074
+
38075
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-29 18:06:00 -0200
38076
+
38077
+
38078
+
38079
+
38080
+
38081
+
38082
+ Served asset /api_explorer/application.css - 304 Not Modified (4ms)
38083
+
38084
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-29 18:06:00 -0200
38085
+
38086
+
38087
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 18:06:00 -0200
38088
+
38089
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-29 18:06:00 -0200
38090
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 18:06:00 -0200
38091
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-29 18:06:00 -0200
38092
+ Served asset /api_explorer/api.css - 304 Not Modified (1ms)
38093
+ Served asset /api_explorer/api.js - 304 Not Modified (3ms)
38094
+ Served asset /jquery.js - 304 Not Modified (16ms)
38095
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
38096
+ Served asset /api_explorer/application.js - 304 Not Modified (17ms)
38097
+
38098
+
38099
+
38100
+
38101
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 18:06:01 -0200
38102
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 18:06:01 -0200
38103
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
38104
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
38105
+
38106
+
38107
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-29 18:06:02 -0200
38108
+ Processing by ApiExplorer::ApiController#method as */*
38109
+ Parameters: {"position"=>"1"}
38110
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.8ms)
38111
+ Completed 200 OK in 22.7ms (Views: 0.3ms | ActiveRecord: 0.0ms)
38112
+
38113
+
38114
+ Started GET "/assets/api_explorer/clear.png" for 127.0.0.1 at 2013-11-29 18:06:02 -0200
38115
+
38116
+
38117
+ Started GET "/assets/api_explorer/minimize.png" for 127.0.0.1 at 2013-11-29 18:06:02 -0200
38118
+ Served asset /api_explorer/clear.png - 304 Not Modified (18ms)
38119
+ Served asset /api_explorer/minimize.png - 304 Not Modified (31ms)
38120
+
38121
+
38122
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-29 18:06:05 -0200
38123
+ Processing by ApiExplorer::ApiController#execute as */*
38124
+ Parameters: {"API_TOKEN"=>"dsadsafdssf", "array"=>{"field1"=>"fssad"}, "outer"=>{"inner"=>{"fieldX"=>"sdsad"}}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
38125
+
38126
+
38127
+ Started GET "/v1/users" for 127.0.0.1 at 2013-11-29 18:06:05 -0200
38128
+ Processing by UsersController#index as */*
38129
+ Parameters: {"API_TOKEN"=>"dsadsafdssf", "array"=>{"field1"=>"fssad"}, "outer"=>{"inner"=>{"fieldX"=>"sdsad"}}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET", "user"=>{"API_TOKEN"=>"dsadsafdssf", "array"=>{"field1"=>"fssad"}, "outer"=>{"inner"=>{"fieldX"=>"sdsad"}}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET", "action"=>"index", "controller"=>"users"}}
38130
+ Completed 200 OK in 0.6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
38131
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.5ms)
38132
+ Completed 200 OK in 529.6ms (Views: 0.4ms | ActiveRecord: 0.0ms)
38133
+
38134
+
38135
+ Started GET "/assets/api_explorer/maximize.png" for 127.0.0.1 at 2013-11-29 18:06:05 -0200
38136
+ Served asset /api_explorer/maximize.png - 304 Not Modified (25ms)
38137
+ Connecting to database specified by database.yml
38138
+
38139
+
38140
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-29 18:36:58 -0200
38141
+ Connecting to database specified by database.yml
38142
+ Processing by ApiExplorer::ApiController#index as HTML
38143
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.4ms)
38144
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (0.7ms)
38145
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.4ms)
38146
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (40.7ms)
38147
+ Completed 200 OK in 366.4ms (Views: 346.7ms | ActiveRecord: 0.0ms)
38148
+
38149
+
38150
+
38151
+
38152
+
38153
+
38154
+
38155
+
38156
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-29 18:36:58 -0200
38157
+
38158
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-29 18:36:58 -0200
38159
+
38160
+
38161
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-29 18:36:58 -0200
38162
+ Served asset /api_explorer/application.css - 304 Not Modified (4ms)
38163
+
38164
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-29 18:36:58 -0200
38165
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 18:36:58 -0200
38166
+ Served asset /api_explorer/api.css - 304 Not Modified (2ms)
38167
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 18:36:58 -0200
38168
+ Served asset /jquery.js - 304 Not Modified (7ms)
38169
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
38170
+ Served asset /api_explorer/api.js - 304 Not Modified (1ms)
38171
+ Served asset /api_explorer/application.js - 304 Not Modified (29ms)
38172
+
38173
+
38174
+
38175
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 18:37:00 -0200
38176
+
38177
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
38178
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 18:37:00 -0200
38179
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
38180
+
38181
+
38182
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-29 18:37:02 -0200
38183
+ Processing by ApiExplorer::ApiController#method as */*
38184
+ Parameters: {"position"=>"1"}
38185
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.6ms)
38186
+ Completed 200 OK in 34.5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
38187
+
38188
+
38189
+
38190
+
38191
+ Started GET "/assets/api_explorer/clear.png" for 127.0.0.1 at 2013-11-29 18:37:02 -0200
38192
+ Started GET "/assets/api_explorer/minimize.png" for 127.0.0.1 at 2013-11-29 18:37:02 -0200
38193
+ Served asset /api_explorer/clear.png - 304 Not Modified (18ms)
38194
+ Served asset /api_explorer/minimize.png - 304 Not Modified (31ms)
38195
+
38196
+
38197
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-29 18:37:04 -0200
38198
+ Processing by ApiExplorer::ApiController#execute as */*
38199
+ Parameters: {"API_TOKEN"=>"dsadsafdssf", "array"=>{"field1"=>"dasdas"}, "outer"=>{"inner"=>{"fieldX"=>"adssa"}}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
38200
+
38201
+
38202
+ Started GET "/v1/users" for 127.0.0.1 at 2013-11-29 18:37:04 -0200
38203
+ Processing by UsersController#index as */*
38204
+ Parameters: {"API_TOKEN"=>"dsadsafdssf", "array"=>{"field1"=>"dasdas"}, "outer"=>{"inner"=>{"fieldX"=>"adssa"}}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET", "user"=>{"API_TOKEN"=>"dsadsafdssf", "array"=>{"field1"=>"dasdas"}, "outer"=>{"inner"=>{"fieldX"=>"adssa"}}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET", "action"=>"index", "controller"=>"users"}}
38205
+ Completed 200 OK in 0.5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
38206
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.5ms)
38207
+ Completed 200 OK in 208.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
38208
+
38209
+
38210
+ Started GET "/assets/api_explorer/maximize.png" for 127.0.0.1 at 2013-11-29 18:37:04 -0200
38211
+ Served asset /api_explorer/maximize.png - 304 Not Modified (15ms)
38212
+
38213
+
38214
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-29 18:37:07 -0200
38215
+ Processing by ApiExplorer::ApiController#method as */*
38216
+ Parameters: {"position"=>"2"}
38217
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
38218
+ Completed 200 OK in 0.8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
38219
+
38220
+
38221
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-29 18:37:09 -0200
38222
+ Processing by ApiExplorer::ApiController#method as */*
38223
+ Parameters: {"position"=>"1"}
38224
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
38225
+ Completed 200 OK in 1.1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
38226
+
38227
+
38228
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-29 18:37:48 -0200
38229
+ Connecting to database specified by database.yml
38230
+ Processing by ApiExplorer::ApiController#index as HTML
38231
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.4ms)
38232
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (0.7ms)
38233
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.5ms)
38234
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (40.7ms)
38235
+ Completed 200 OK in 171.3ms (Views: 152.1ms | ActiveRecord: 0.0ms)
38236
+
38237
+
38238
+
38239
+
38240
+
38241
+
38242
+
38243
+
38244
+
38245
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-29 18:37:49 -0200
38246
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-29 18:37:49 -0200
38247
+
38248
+
38249
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-29 18:37:49 -0200
38250
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 18:37:49 -0200
38251
+
38252
+ Served asset /api_explorer/api.css - 304 Not Modified (6ms)
38253
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-29 18:37:49 -0200
38254
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 18:37:49 -0200
38255
+ Served asset /api_explorer/api.js - 304 Not Modified (1ms)
38256
+ Served asset /api_explorer/application.css - 304 Not Modified (6ms)
38257
+ Served asset /jquery_ujs.js - 304 Not Modified (7ms)
38258
+ Served asset /jquery.js - 304 Not Modified (21ms)
38259
+ Served asset /api_explorer/application.js - 304 Not Modified (9ms)
38260
+
38261
+
38262
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 18:37:50 -0200
38263
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
38264
+
38265
+
38266
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 18:37:50 -0200
38267
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
38268
+
38269
+
38270
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-29 18:37:51 -0200
38271
+ Processing by ApiExplorer::ApiController#method as */*
38272
+ Parameters: {"position"=>"1"}
38273
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.7ms)
38274
+ Completed 200 OK in 44.8ms (Views: 0.3ms | ActiveRecord: 0.0ms)
38275
+
38276
+
38277
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-29 18:37:52 -0200
38278
+ Processing by ApiExplorer::ApiController#execute as */*
38279
+ Parameters: {"API_TOKEN"=>"dsadsafdssf", "array"=>{"field1"=>""}, "outer"=>{"inner"=>{"fieldX"=>""}}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
38280
+
38281
+
38282
+ Started GET "/v1/users" for 127.0.0.1 at 2013-11-29 18:37:52 -0200
38283
+ Processing by UsersController#index as */*
38284
+ Parameters: {"API_TOKEN"=>"dsadsafdssf", "array"=>{"field1"=>""}, "outer"=>{"inner"=>{"fieldX"=>""}}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET", "user"=>{"API_TOKEN"=>"dsadsafdssf", "array"=>{"field1"=>""}, "outer"=>{"inner"=>{"fieldX"=>""}}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET", "action"=>"index", "controller"=>"users"}}
38285
+ Completed 200 OK in 0.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
38286
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.6ms)
38287
+ Completed 200 OK in 298.0ms (Views: 0.5ms | ActiveRecord: 0.0ms)
38288
+
38289
+
38290
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-29 18:39:09 -0200
38291
+ Connecting to database specified by database.yml
38292
+ Processing by ApiExplorer::ApiController#index as HTML
38293
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.7ms)
38294
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (1.1ms)
38295
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.5ms)
38296
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (40.8ms)
38297
+ Completed 200 OK in 156.1ms (Views: 155.5ms | ActiveRecord: 0.0ms)
38298
+
38299
+
38300
+
38301
+
38302
+
38303
+
38304
+
38305
+
38306
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-29 18:39:09 -0200
38307
+
38308
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-29 18:39:09 -0200
38309
+
38310
+
38311
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 18:39:09 -0200
38312
+
38313
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
38314
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-29 18:39:09 -0200
38315
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-29 18:39:09 -0200
38316
+ Served asset /api_explorer/api.css - 304 Not Modified (7ms)
38317
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 18:39:09 -0200
38318
+ Served asset /api_explorer/application.css - 304 Not Modified (5ms)
38319
+ Served asset /api_explorer/api.js - 304 Not Modified (2ms)
38320
+ Served asset /jquery.js - 304 Not Modified (27ms)
38321
+ Served asset /api_explorer/application.js - 304 Not Modified (38ms)
38322
+
38323
+
38324
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 18:39:10 -0200
38325
+
38326
+
38327
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
38328
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 18:39:10 -0200
38329
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
38330
+
38331
+
38332
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-29 18:39:11 -0200
38333
+ Processing by ApiExplorer::ApiController#method as */*
38334
+ Parameters: {"position"=>"1"}
38335
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.6ms)
38336
+ Completed 200 OK in 39.8ms (Views: 0.3ms | ActiveRecord: 0.0ms)
38337
+
38338
+
38339
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-29 18:39:14 -0200
38340
+ Processing by ApiExplorer::ApiController#execute as */*
38341
+ Parameters: {"API_TOKEN"=>"dsadsafdssf", "array"=>{"field1"=>"sadadsas"}, "outer"=>{"inner"=>{"fieldX"=>"sadas"}}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
38342
+
38343
+
38344
+ Started GET "/v1/users" for 127.0.0.1 at 2013-11-29 18:39:15 -0200
38345
+ Processing by UsersController#index as */*
38346
+ Parameters: {"API_TOKEN"=>"dsadsafdssf", "array"=>{"field1"=>"sadadsas"}, "outer"=>{"inner"=>{"fieldX"=>"sadas"}}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET", "user"=>{"API_TOKEN"=>"dsadsafdssf", "array"=>{"field1"=>"sadadsas"}, "outer"=>{"inner"=>{"fieldX"=>"sadas"}}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET", "action"=>"index", "controller"=>"users"}}
38347
+ Completed 200 OK in 0.5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
38348
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.6ms)
38349
+ Completed 200 OK in 196.9ms (Views: 0.6ms | ActiveRecord: 0.0ms)
38350
+
38351
+
38352
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-29 18:40:02 -0200
38353
+ Connecting to database specified by database.yml
38354
+ Processing by ApiExplorer::ApiController#index as HTML
38355
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.3ms)
38356
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (0.5ms)
38357
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.2ms)
38358
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (3.9ms)
38359
+ Completed 200 OK in 18.0ms (Views: 17.6ms | ActiveRecord: 0.0ms)
38360
+
38361
+
38362
+
38363
+
38364
+
38365
+
38366
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-29 18:40:02 -0200
38367
+
38368
+
38369
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-29 18:40:02 -0200
38370
+
38371
+
38372
+ Served asset /api_explorer/application.css - 304 Not Modified (4ms)
38373
+
38374
+
38375
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 18:40:02 -0200
38376
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
38377
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 18:40:02 -0200
38378
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-29 18:40:02 -0200
38379
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-29 18:40:02 -0200
38380
+ Served asset /api_explorer/api.js - 304 Not Modified (3ms)
38381
+ Served asset /api_explorer/api.css - 304 Not Modified (4ms)
38382
+ Served asset /jquery.js - 304 Not Modified (3ms)
38383
+ Served asset /api_explorer/application.js - 304 Not Modified (14ms)
38384
+
38385
+
38386
+
38387
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 18:40:03 -0200
38388
+
38389
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
38390
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 18:40:03 -0200
38391
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
38392
+
38393
+
38394
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-29 18:40:04 -0200
38395
+ Processing by ApiExplorer::ApiController#method as */*
38396
+ Parameters: {"position"=>"1"}
38397
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.6ms)
38398
+ Completed 200 OK in 6.5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
38399
+
38400
+
38401
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-29 18:40:09 -0200
38402
+ Processing by ApiExplorer::ApiController#execute as */*
38403
+ Parameters: {"API_TOKEN"=>"dsadsafdssf", "array"=>{"field1"=>"sadas"}, "outer"=>{"inner"=>{"fieldX"=>"adsads"}}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
38404
+
38405
+
38406
+ Started GET "/v1/users" for 127.0.0.1 at 2013-11-29 18:40:09 -0200
38407
+ Processing by UsersController#index as */*
38408
+ Parameters: {"API_TOKEN"=>"dsadsafdssf", "array"=>{"field1"=>"sadas"}, "outer"=>{"inner"=>{"fieldX"=>"adsads"}}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET", "user"=>{"API_TOKEN"=>"dsadsafdssf", "array"=>{"field1"=>"sadas"}, "outer"=>{"inner"=>{"fieldX"=>"adsads"}}, "header"=>{"name"=>[""], "value"=>[""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET", "action"=>"index", "controller"=>"users"}}
38409
+ Completed 200 OK in 0.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
38410
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.4ms)
38411
+ Completed 200 OK in 61.3ms (Views: 0.4ms | ActiveRecord: 0.0ms)
38412
+
38413
+
38414
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-29 18:46:49 -0200
38415
+ Connecting to database specified by database.yml
38416
+ Processing by ApiExplorer::ApiController#index as HTML
38417
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.5ms)
38418
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (1.1ms)
38419
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.5ms)
38420
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (40.9ms)
38421
+ Completed 200 OK in 186.8ms (Views: 167.4ms | ActiveRecord: 0.0ms)
38422
+
38423
+
38424
+
38425
+
38426
+
38427
+
38428
+
38429
+
38430
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-29 18:46:49 -0200
38431
+
38432
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-29 18:46:49 -0200
38433
+
38434
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-29 18:46:49 -0200
38435
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-29 18:46:49 -0200
38436
+
38437
+ Served asset /api_explorer/application.css - 304 Not Modified (9ms)
38438
+
38439
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 18:46:49 -0200
38440
+ Served asset /api_explorer/api.css - 304 Not Modified (4ms)
38441
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 18:46:49 -0200
38442
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
38443
+ Served asset /api_explorer/api.js - 304 Not Modified (2ms)
38444
+ Served asset /jquery.js - 304 Not Modified (17ms)
38445
+ Served asset /api_explorer/application.js - 304 Not Modified (8ms)
38446
+
38447
+
38448
+
38449
+
38450
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 18:46:51 -0200
38451
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 18:46:51 -0200
38452
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
38453
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
38454
+
38455
+
38456
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-29 18:47:20 -0200
38457
+ Processing by ApiExplorer::ApiController#method as */*
38458
+ Parameters: {"position"=>"2"}
38459
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.7ms)
38460
+ Completed 200 OK in 39.7ms (Views: 0.3ms | ActiveRecord: 0.0ms)
38461
+
38462
+
38463
+ Started GET "/assets/api_explorer/delete.png" for 127.0.0.1 at 2013-11-29 18:47:23 -0200
38464
+ Served asset /api_explorer/delete.png - 304 Not Modified (34ms)
38465
+
38466
+
38467
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-29 18:47:27 -0200
38468
+ Processing by ApiExplorer::ApiController#method as */*
38469
+ Parameters: {"position"=>"1"}
38470
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.2ms)
38471
+ Completed 200 OK in 1.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
38472
+
38473
+
38474
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-29 18:47:32 -0200
38475
+ Processing by ApiExplorer::ApiController#execute as */*
38476
+ Parameters: {"API_TOKEN"=>"dsadsafdssf", "array"=>{"field1"=>"ddasdas"}, "outer"=>{"inner"=>{"fieldX"=>"adsdsa"}}, "header"=>{"name"=>["", ""], "value"=>["", ""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
38477
+
38478
+
38479
+ Started GET "/v1/users" for 127.0.0.1 at 2013-11-29 18:47:33 -0200
38480
+ Processing by UsersController#index as */*
38481
+ Parameters: {"API_TOKEN"=>"dsadsafdssf", "array"=>{"field1"=>"ddasdas"}, "outer"=>{"inner"=>{"fieldX"=>"adsdsa"}}, "header"=>{"name"=>["", ""], "value"=>["", ""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET", "user"=>{"API_TOKEN"=>"dsadsafdssf", "array"=>{"field1"=>"ddasdas"}, "outer"=>{"inner"=>{"fieldX"=>"adsdsa"}}, "header"=>{"name"=>["", ""], "value"=>["", ""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET", "action"=>"index", "controller"=>"users"}}
38482
+ Completed 200 OK in 0.5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
38483
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.5ms)
38484
+ Completed 200 OK in 252.6ms (Views: 0.4ms | ActiveRecord: 0.0ms)
38485
+
38486
+
38487
+ Started POST "/api_explorer/execute" for 127.0.0.1 at 2013-11-29 18:48:17 -0200
38488
+ Connecting to database specified by database.yml
38489
+ Processing by ApiExplorer::ApiController#execute as */*
38490
+ Parameters: {"API_TOKEN"=>"dsadsafdssf", "array"=>{"field1"=>"ddasdas"}, "outer"=>{"inner"=>{"fieldX"=>"adsdsa"}}, "header"=>{"name"=>["", ""], "value"=>["", ""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET"}
38491
+
38492
+
38493
+ Started GET "/v1/users" for 127.0.0.1 at 2013-11-29 18:48:17 -0200
38494
+ Processing by UsersController#index as */*
38495
+ Parameters: {"API_TOKEN"=>"dsadsafdssf", "array"=>{"field1"=>"ddasdas"}, "outer"=>{"inner"=>{"fieldX"=>"adsdsa"}}, "header"=>{"name"=>["", ""], "value"=>["", ""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET", "user"=>{"API_TOKEN"=>"dsadsafdssf", "array"=>{"field1"=>"ddasdas"}, "outer"=>{"inner"=>{"fieldX"=>"adsdsa"}}, "header"=>{"name"=>["", ""], "value"=>["", ""]}, "authentication_type"=>"", "auth"=>{"basic_auth_user"=>"", "basic_auth_password"=>"[FILTERED]", "header_field"=>"", "secret_key"=>""}, "url"=>"v1/users", "method"=>"GET", "action"=>"index", "controller"=>"users"}}
38496
+ Completed 200 OK in 0.5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
38497
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/history.html.erb (0.7ms)
38498
+ Completed 200 OK in 292.5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
38499
+
38500
+
38501
+ Started GET "/api_explorer/method?position=2" for 127.0.0.1 at 2013-11-29 18:48:29 -0200
38502
+ Processing by ApiExplorer::ApiController#method as */*
38503
+ Parameters: {"position"=>"2"}
38504
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.7ms)
38505
+ Completed 200 OK in 54.5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
38506
+
38507
+
38508
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-29 18:48:31 -0200
38509
+ Processing by ApiExplorer::ApiController#method as */*
38510
+ Parameters: {"position"=>"1"}
38511
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.1ms)
38512
+ Completed 200 OK in 0.9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
38513
+
38514
+
38515
+ Started GET "/api_explorer" for 127.0.0.1 at 2013-11-29 18:48:54 -0200
38516
+ Processing by ApiExplorer::ApiController#index as HTML
38517
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_headers.html.erb (0.4ms)
38518
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_authentication.html.erb (0.7ms)
38519
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/_response.html.erb (0.6ms)
38520
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/index.html.erb within layouts/api_explorer/application (52.3ms)
38521
+ Completed 200 OK in 167.5ms (Views: 167.1ms | ActiveRecord: 0.0ms)
38522
+
38523
+
38524
+
38525
+
38526
+
38527
+
38528
+
38529
+
38530
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-29 18:48:54 -0200
38531
+
38532
+
38533
+
38534
+
38535
+ Started GET "/assets/api_explorer/api.css?body=1" for 127.0.0.1 at 2013-11-29 18:48:54 -0200
38536
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-11-29 18:48:54 -0200
38537
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 18:48:54 -0200
38538
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 18:48:54 -0200
38539
+ Started GET "/assets/api_explorer/application.css?body=1" for 127.0.0.1 at 2013-11-29 18:48:54 -0200
38540
+ Served asset /api_explorer/api.css - 304 Not Modified (2ms)
38541
+ Served asset /api_explorer/api.js - 304 Not Modified (6ms)
38542
+ Served asset /jquery_ujs.js - 304 Not Modified (35ms)
38543
+ Served asset /api_explorer/application.css - 304 Not Modified (5ms)
38544
+ Served asset /jquery.js - 304 Not Modified (46ms)
38545
+ Served asset /api_explorer/application.js - 304 Not Modified (15ms)
38546
+
38547
+
38548
+
38549
+
38550
+ Started GET "/assets/api_explorer/api.js?body=1" for 127.0.0.1 at 2013-11-29 18:48:55 -0200
38551
+ Started GET "/assets/api_explorer/application.js?body=1" for 127.0.0.1 at 2013-11-29 18:48:55 -0200
38552
+ Served asset /api_explorer/api.js - 304 Not Modified (0ms)
38553
+ Served asset /api_explorer/application.js - 304 Not Modified (0ms)
38554
+
38555
+
38556
+ Started GET "/api_explorer/method?position=1" for 127.0.0.1 at 2013-11-29 18:48:56 -0200
38557
+ Processing by ApiExplorer::ApiController#method as */*
38558
+ Parameters: {"position"=>"1"}
38559
+ Rendered /Users/toptierlabs/Desktop/Proyectos/api_explorer/app/views/api_explorer/api/parameters.html.erb (0.2ms)
38560
+ Completed 200 OK in 1.7ms (Views: 0.3ms | ActiveRecord: 0.0ms)