easy_api_doc 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (123) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +58 -0
  4. data/Rakefile +40 -0
  5. data/app/assets/images/easy_api_doc/favicon.ico +0 -0
  6. data/app/assets/images/easy_api_doc/glyphicons-halflings-white.png +0 -0
  7. data/app/assets/images/easy_api_doc/glyphicons-halflings.png +0 -0
  8. data/app/assets/images/easy_api_doc/loading.gif +0 -0
  9. data/app/assets/javascripts/easy_api_doc/api.js +2 -0
  10. data/app/assets/javascripts/easy_api_doc/application.js +15 -0
  11. data/app/assets/javascripts/easy_api_doc/base64.js +65 -0
  12. data/app/assets/javascripts/easy_api_doc/bootstrap.js +1999 -0
  13. data/app/assets/javascripts/easy_api_doc/documentation.js +223 -0
  14. data/app/assets/javascripts/easy_api_doc/status_codes.js +61 -0
  15. data/app/assets/stylesheets/easy_api_doc/api.css +4 -0
  16. data/app/assets/stylesheets/easy_api_doc/application.css +13 -0
  17. data/app/assets/stylesheets/easy_api_doc/bootstrap.css +6805 -0
  18. data/app/assets/stylesheets/easy_api_doc/documentation.css +47 -0
  19. data/app/controllers/easy_api_doc/api_controller.rb +13 -0
  20. data/app/controllers/easy_api_doc/application_controller.rb +17 -0
  21. data/app/controllers/easy_api_doc/documentation_controller.rb +42 -0
  22. data/app/helpers/easy_api_doc/application_helper.rb +71 -0
  23. data/app/helpers/easy_api_doc/documentation_helper.rb +5 -0
  24. data/app/models/easy_api_doc/action.rb +59 -0
  25. data/app/models/easy_api_doc/api_version.rb +18 -0
  26. data/app/models/easy_api_doc/namespace.rb +14 -0
  27. data/app/models/easy_api_doc/parameter.rb +49 -0
  28. data/app/models/easy_api_doc/resource.rb +18 -0
  29. data/app/views/easy_api_doc/api/index.html.erb +5 -0
  30. data/app/views/easy_api_doc/documentation/_parameter.html.erb +29 -0
  31. data/app/views/easy_api_doc/documentation/_resource_index.html.erb +16 -0
  32. data/app/views/easy_api_doc/documentation/api_action.html.erb +105 -0
  33. data/app/views/easy_api_doc/documentation/namespace.html.erb +13 -0
  34. data/app/views/easy_api_doc/documentation/resource.html.erb +18 -0
  35. data/app/views/layouts/easy_api_doc/_header.html.erb +23 -0
  36. data/app/views/layouts/easy_api_doc/application.html.erb +34 -0
  37. data/app/views/shared/_versions_index.html.erb +10 -0
  38. data/config/routes.rb +9 -0
  39. data/lib/configurable.rb +92 -0
  40. data/lib/configuration.rb +31 -0
  41. data/lib/easy_api_doc/engine.rb +5 -0
  42. data/lib/easy_api_doc/version.rb +3 -0
  43. data/lib/easy_api_doc.rb +6 -0
  44. data/test/dummy/README.rdoc +261 -0
  45. data/test/dummy/Rakefile +7 -0
  46. data/test/dummy/app/assets/javascripts/application.js +15 -0
  47. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  48. data/test/dummy/app/controllers/application_controller.rb +3 -0
  49. data/test/dummy/app/helpers/application_helper.rb +2 -0
  50. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  51. data/test/dummy/config/application.rb +59 -0
  52. data/test/dummy/config/boot.rb +10 -0
  53. data/test/dummy/config/database.yml +25 -0
  54. data/test/dummy/config/environment.rb +5 -0
  55. data/test/dummy/config/environments/development.rb +36 -0
  56. data/test/dummy/config/environments/production.rb +67 -0
  57. data/test/dummy/config/environments/test.rb +39 -0
  58. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  59. data/test/dummy/config/initializers/inflections.rb +15 -0
  60. data/test/dummy/config/initializers/mime_types.rb +5 -0
  61. data/test/dummy/config/initializers/secret_token.rb +7 -0
  62. data/test/dummy/config/initializers/session_store.rb +8 -0
  63. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  64. data/test/dummy/config/locales/en.yml +5 -0
  65. data/test/dummy/config/routes.rb +3 -0
  66. data/test/dummy/config.ru +4 -0
  67. data/test/dummy/doc/api_doc.yml +104 -0
  68. data/test/dummy/log/development.log +742 -0
  69. data/test/dummy/public/404.html +26 -0
  70. data/test/dummy/public/422.html +26 -0
  71. data/test/dummy/public/500.html +25 -0
  72. data/test/dummy/public/favicon.ico +0 -0
  73. data/test/dummy/script/rails +6 -0
  74. data/test/dummy/tmp/cache/assets/development/sprockets/04965396c9cfe69081b5dd98c3212fae +0 -0
  75. data/test/dummy/tmp/cache/assets/development/sprockets/16d88b38a506ba01a817e258ad8fb263 +0 -0
  76. data/test/dummy/tmp/cache/assets/development/sprockets/203aa633656e7d9c927c57c46e470c83 +0 -0
  77. data/test/dummy/tmp/cache/assets/development/sprockets/2f062b493cefffdbc012a973e9a105d5 +0 -0
  78. data/test/dummy/tmp/cache/assets/development/sprockets/2f0ed6020953bd16ba9b363edbf7cda0 +0 -0
  79. data/test/dummy/tmp/cache/assets/development/sprockets/30465ccaba36954861158b4242883bd6 +0 -0
  80. data/test/dummy/tmp/cache/assets/development/sprockets/36351f369d6eaf233c5e86e07555c170 +0 -0
  81. data/test/dummy/tmp/cache/assets/development/sprockets/405c9c78a785fb067d1c67657cfc62ef +0 -0
  82. data/test/dummy/tmp/cache/assets/development/sprockets/4abfd2becb22be944eb58bcf7107c873 +0 -0
  83. data/test/dummy/tmp/cache/assets/development/sprockets/4c371d51ee36edfddc4b8428b18dd632 +0 -0
  84. data/test/dummy/tmp/cache/assets/development/sprockets/4e7b4f8fde8fe12c9c12da639bed576e +0 -0
  85. data/test/dummy/tmp/cache/assets/development/sprockets/543e8b4a615c1577865f6ef73059d40f +0 -0
  86. data/test/dummy/tmp/cache/assets/development/sprockets/593636db3cefe193ebf65f5b58f57c9a +0 -0
  87. data/test/dummy/tmp/cache/assets/development/sprockets/67409083f86d1b03662b495d04418132 +0 -0
  88. data/test/dummy/tmp/cache/assets/development/sprockets/6afb7fed89c6f68558c4186d7a740a3a +0 -0
  89. data/test/dummy/tmp/cache/assets/development/sprockets/6b1110992dffe4c4455380229a0b8dff +0 -0
  90. data/test/dummy/tmp/cache/assets/development/sprockets/6db6675fbfed66d3d342f71869217dac +0 -0
  91. data/test/dummy/tmp/cache/assets/development/sprockets/75d2dc9028e3a3f3e6ca14d8f2fe7b5e +0 -0
  92. data/test/dummy/tmp/cache/assets/development/sprockets/76b036b95dde7edc081890640b4e7ed0 +0 -0
  93. data/test/dummy/tmp/cache/assets/development/sprockets/76da432edc6235bd7d73c3335233b1ed +0 -0
  94. data/test/dummy/tmp/cache/assets/development/sprockets/76faccd1d102ff2260e90ba48328b865 +0 -0
  95. data/test/dummy/tmp/cache/assets/development/sprockets/7cbc737c6b2b24706bf9170823e12d87 +0 -0
  96. data/test/dummy/tmp/cache/assets/development/sprockets/7de191b871e66d0c65b1cbaf04a60f58 +0 -0
  97. data/test/dummy/tmp/cache/assets/development/sprockets/802227e7577d1f42b5991586df8c9f02 +0 -0
  98. data/test/dummy/tmp/cache/assets/development/sprockets/848e56c99230cfa8034c10a99fc52c28 +0 -0
  99. data/test/dummy/tmp/cache/assets/development/sprockets/8619cf373138f78fdaab67c14cf6593b +0 -0
  100. data/test/dummy/tmp/cache/assets/development/sprockets/8b8f23bb1606d4e7f5738827686ff14f +0 -0
  101. data/test/dummy/tmp/cache/assets/development/sprockets/8dde0af325a3c57426da61982576c899 +0 -0
  102. data/test/dummy/tmp/cache/assets/development/sprockets/92396eadb57dc8abfb0bf5b3a01295a8 +0 -0
  103. data/test/dummy/tmp/cache/assets/development/sprockets/92a86617e44e9093fb483fc122b75752 +0 -0
  104. data/test/dummy/tmp/cache/assets/development/sprockets/940b911c55d2dc0ea6ca56b25f087739 +0 -0
  105. data/test/dummy/tmp/cache/assets/development/sprockets/a39a3034ca0b3e6ae8eaca11c3ca5ad6 +0 -0
  106. data/test/dummy/tmp/cache/assets/development/sprockets/a8036af98430c82633505d9ca5fcde5f +0 -0
  107. data/test/dummy/tmp/cache/assets/development/sprockets/b4869b1ad3dab2a1821989791a57171f +0 -0
  108. data/test/dummy/tmp/cache/assets/development/sprockets/b7ad7703003d24dab911bd3730756ca6 +0 -0
  109. data/test/dummy/tmp/cache/assets/development/sprockets/b89605b311bfb96d01c875e7a9710861 +0 -0
  110. data/test/dummy/tmp/cache/assets/development/sprockets/c237c4326b837e51c2650d4f6ed7b7a5 +0 -0
  111. data/test/dummy/tmp/cache/assets/development/sprockets/c780d1da090d4bb4d9fa09753f04e17f +0 -0
  112. data/test/dummy/tmp/cache/assets/development/sprockets/ca91101b167a195ab54cdbc39efec3e9 +0 -0
  113. data/test/dummy/tmp/cache/assets/development/sprockets/cdb61eee371606ef082a5ee3189889d2 +0 -0
  114. data/test/dummy/tmp/cache/assets/development/sprockets/d86f52fe55c0b5686bacec92537b0c03 +0 -0
  115. data/test/dummy/tmp/cache/assets/development/sprockets/e9636c04426623ad28848cb917d96a95 +0 -0
  116. data/test/dummy/tmp/cache/assets/development/sprockets/ee9a7b09a7ab141b6ae0cf8ce9197a3c +0 -0
  117. data/test/dummy/tmp/cache/assets/development/sprockets/f0fcdc72564e7709bcdeb9e88dd86135 +0 -0
  118. data/test/dummy/tmp/cache/assets/development/sprockets/f5bcd46e1a1371d63dec98bc97bcda4c +0 -0
  119. data/test/dummy/tmp/cache/assets/development/sprockets/fb3e3925ae8dcb2704d2602719387463 +0 -0
  120. data/test/dummy/tmp/cache/assets/development/sprockets/fcbbb63c7069e7c3b471d13ff0441d2a +0 -0
  121. data/test/dummy/tmp/cache/assets/development/sprockets/ff8858e82d7df03c855d847837676e31 +0 -0
  122. data/test/test_helper.rb +10 -0
  123. metadata +291 -0
@@ -0,0 +1,742 @@
1
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/nigelramsay/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138)
2
+
3
+
4
+ Started GET "/" for 127.0.0.1 at 2013-08-29 15:46:53 +1200
5
+ Processing by Rails::WelcomeController#index as HTML
6
+ Rendered /Users/nigelramsay/.rvm/gems/ruby-2.0.0-p195/gems/railties-4.0.0/lib/rails/templates/rails/welcome/index.html.erb (1.8ms)
7
+ Completed 200 OK in 9ms (Views: 8.6ms)
8
+
9
+
10
+ Started GET "/api" for 127.0.0.1 at 2013-08-29 15:47:32 +1200
11
+
12
+ ActionController::RoutingError (No route matches [GET] "/api"):
13
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
14
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
15
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
16
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
17
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
18
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
19
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
20
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
21
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
22
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
23
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
24
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
25
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
26
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
27
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
28
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
29
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
30
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
31
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
32
+ /Users/nigelramsay/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
33
+ /Users/nigelramsay/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
34
+ /Users/nigelramsay/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
35
+
36
+
37
+ Rendered /Users/nigelramsay/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
38
+ Rendered /Users/nigelramsay/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
39
+ Rendered /Users/nigelramsay/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
40
+ Rendered /Users/nigelramsay/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms)
41
+ Rendered /Users/nigelramsay/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (23.6ms)
42
+
43
+
44
+ Started GET "/grape_doc" for 127.0.0.1 at 2013-08-29 15:56:25 +1200
45
+ Processing by GrapeDoc::ApiController#index as HTML
46
+ Loading GrapeDoc configuration file doc/api_doc.yml
47
+ Loading GrapeDoc configuration file doc/api_doc.yml
48
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/grape_doc/api/index.html.erb within layouts/grape_doc/application (0.5ms)
49
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/layouts/grape_doc/_header.html.erb (3.2ms)
50
+ Completed 200 OK in 121ms (Views: 117.3ms)
51
+
52
+
53
+ Started GET "/assets/grape_doc/application.css?body=1" for 127.0.0.1 at 2013-08-29 15:56:25 +1200
54
+
55
+
56
+ Started GET "/assets/grape_doc/api.css?body=1" for 127.0.0.1 at 2013-08-29 15:56:25 +1200
57
+
58
+
59
+ Started GET "/assets/grape_doc/bootstrap_responsive.css?body=1" for 127.0.0.1 at 2013-08-29 15:56:25 +1200
60
+
61
+
62
+ Started GET "/assets/grape_doc/bootstrap.css?body=1" for 127.0.0.1 at 2013-08-29 15:56:25 +1200
63
+
64
+
65
+ Started GET "/assets/grape_doc/documentation.css?body=1" for 127.0.0.1 at 2013-08-29 15:56:25 +1200
66
+
67
+
68
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-29 15:56:25 +1200
69
+
70
+
71
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-29 15:56:25 +1200
72
+
73
+
74
+ Started GET "/assets/grape_doc/api.js?body=1" for 127.0.0.1 at 2013-08-29 15:56:25 +1200
75
+
76
+
77
+ Started GET "/assets/grape_doc/base64.js?body=1" for 127.0.0.1 at 2013-08-29 15:56:25 +1200
78
+
79
+
80
+ Started GET "/assets/grape_doc/bootstrap.js?body=1" for 127.0.0.1 at 2013-08-29 15:56:25 +1200
81
+
82
+
83
+ Started GET "/assets/grape_doc/documentation.js?body=1" for 127.0.0.1 at 2013-08-29 15:56:26 +1200
84
+
85
+
86
+ Started GET "/assets/grape_doc/status_codes.js?body=1" for 127.0.0.1 at 2013-08-29 15:56:26 +1200
87
+
88
+
89
+ Started GET "/assets/grape_doc/application.js?body=1" for 127.0.0.1 at 2013-08-29 15:56:26 +1200
90
+
91
+
92
+ Started GET "/assets/grape_doc/favicon.ico" for 127.0.0.1 at 2013-08-29 15:56:26 +1200
93
+
94
+
95
+ Started GET "/grape_doc/v1" for 127.0.0.1 at 2013-08-29 15:56:34 +1200
96
+
97
+ ActionController::RoutingError (No route matches [GET] "/grape_doc/v1"):
98
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
99
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
100
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
101
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
102
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
103
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
104
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
105
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
106
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
107
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
108
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
109
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
110
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
111
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
112
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
113
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
114
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
115
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
116
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
117
+ /Users/nigelramsay/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
118
+ /Users/nigelramsay/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
119
+ /Users/nigelramsay/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
120
+
121
+
122
+ Rendered /Users/nigelramsay/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
123
+ Rendered /Users/nigelramsay/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
124
+ Rendered /Users/nigelramsay/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
125
+ Rendered /Users/nigelramsay/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
126
+ Rendered /Users/nigelramsay/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (15.6ms)
127
+
128
+
129
+ Started GET "/grape_doc/api" for 127.0.0.1 at 2013-08-29 15:56:39 +1200
130
+ Processing by GrapeDoc::ApiController#index as HTML
131
+ Loading GrapeDoc configuration file doc/api_doc.yml
132
+ Loading GrapeDoc configuration file doc/api_doc.yml
133
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/grape_doc/api/index.html.erb within layouts/grape_doc/application (0.1ms)
134
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/layouts/grape_doc/_header.html.erb (0.7ms)
135
+ Completed 200 OK in 10ms (Views: 6.9ms)
136
+
137
+
138
+ Started GET "/grape_doc/api/v1" for 127.0.0.1 at 2013-08-29 15:56:43 +1200
139
+ Processing by GrapeDoc::ApiController#show as HTML
140
+ Parameters: {"id"=>"v1"}
141
+ Loading GrapeDoc configuration file doc/api_doc.yml
142
+ Loading GrapeDoc configuration file doc/api_doc.yml
143
+ Completed 500 Internal Server Error in 5ms
144
+
145
+ ActionView::MissingTemplate (Missing template grape_doc/api/show, grape_doc/application/show with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
146
+ * "/Users/nigelramsay/projects/abletech/grape_doc/test/dummy/app/views"
147
+ * "/Users/nigelramsay/projects/abletech/grape_doc/app/views"
148
+ ):
149
+ actionpack (4.0.0) lib/action_view/path_set.rb:46:in `find'
150
+ actionpack (4.0.0) lib/action_view/lookup_context.rb:115:in `find'
151
+ actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
152
+ actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:35:in `determine_template'
153
+ actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:8:in `render'
154
+ actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
155
+ actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
156
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template'
157
+ actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template'
158
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body'
159
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
160
+ actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
161
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render'
162
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render'
163
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
164
+ activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
165
+ /Users/nigelramsay/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
166
+ activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
167
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
168
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
169
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
170
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
171
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
172
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
173
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
174
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
175
+ activesupport (4.0.0) lib/active_support/callbacks.rb:383:in `_run__2354644043051253345__process_action__callbacks'
176
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
177
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
178
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
179
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
180
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
181
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
182
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
183
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
184
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
185
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
186
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
187
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
188
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
189
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
190
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
191
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
192
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
193
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
194
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
195
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
196
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
197
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
198
+ railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
199
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
200
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
201
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
202
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
203
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
204
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
205
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
206
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
207
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
208
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
209
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
210
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
211
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
212
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__139454342738274193__call__callbacks'
213
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
214
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
215
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
216
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
217
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
218
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
219
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
220
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
221
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
222
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
223
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
224
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
225
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
226
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
227
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
228
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
229
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
230
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
231
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
232
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
233
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
234
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
235
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
236
+ /Users/nigelramsay/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
237
+ /Users/nigelramsay/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
238
+ /Users/nigelramsay/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
239
+
240
+
241
+ Rendered /Users/nigelramsay/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.5ms)
242
+
243
+
244
+ Started GET "/grape_doc/api/v1/private" for 127.0.0.1 at 2013-08-29 15:57:15 +1200
245
+ Processing by GrapeDoc::DocumentationController#namespace as HTML
246
+ Parameters: {"api"=>"v1", "namespace"=>"private"}
247
+ Loading GrapeDoc configuration file doc/api_doc.yml
248
+ Loading GrapeDoc configuration file doc/api_doc.yml
249
+ Loading GrapeDoc configuration file doc/api_doc.yml
250
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/grape_doc/documentation/_resource_index.html.erb (39.0ms)
251
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/grape_doc/documentation/namespace.html.erb within layouts/grape_doc/application (40.4ms)
252
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/layouts/grape_doc/_header.html.erb (0.6ms)
253
+ Completed 200 OK in 52ms (Views: 47.2ms)
254
+
255
+
256
+ Started GET "/assets/grape_doc/glyphicons-halflings.png" for 127.0.0.1 at 2013-08-29 15:57:16 +1200
257
+
258
+
259
+ Started GET "/grape_doc/api/v1/private" for 127.0.0.1 at 2013-08-29 15:57:31 +1200
260
+ Processing by GrapeDoc::DocumentationController#namespace as HTML
261
+ Parameters: {"api"=>"v1", "namespace"=>"private"}
262
+ Loading GrapeDoc configuration file doc/api_doc.yml
263
+ Loading GrapeDoc configuration file doc/api_doc.yml
264
+ Loading GrapeDoc configuration file doc/api_doc.yml
265
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/grape_doc/documentation/_resource_index.html.erb (1.0ms)
266
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/grape_doc/documentation/namespace.html.erb within layouts/grape_doc/application (1.8ms)
267
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/layouts/grape_doc/_header.html.erb (0.6ms)
268
+ Completed 200 OK in 12ms (Views: 8.2ms)
269
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /Users/nigelramsay/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138)
270
+
271
+
272
+ Started GET "/" for 127.0.0.1 at 2013-08-29 16:27:39 +1200
273
+ Processing by Rails::WelcomeController#index as HTML
274
+ Rendered /Users/nigelramsay/.rvm/gems/ruby-2.0.0-p195/gems/railties-4.0.0/lib/rails/templates/rails/welcome/index.html.erb (1.4ms)
275
+ Completed 200 OK in 7ms (Views: 6.5ms)
276
+
277
+
278
+ Started GET "/api/address/polygon?utf8=%E2%9C%93&points=174.76244580000002%2C-41.3017878%2C174.7824458%2C-41.3017878%2C174.7824458%2C-41.281787800000004%2C174.76244580000002%2C-41.281787800000004&key=64f8f730-5e2c-012c-e3a5-001aa0914723&secret=&max=&callback=&format=html&commit=submit" for 127.0.0.1 at 2013-08-29 16:27:45 +1200
279
+
280
+ ActionController::RoutingError (No route matches [GET] "/api/address/polygon"):
281
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
282
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
283
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
284
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
285
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
286
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
287
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
288
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
289
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
290
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
291
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
292
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
293
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
294
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
295
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
296
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
297
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
298
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
299
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
300
+ /Users/nigelramsay/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
301
+ /Users/nigelramsay/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
302
+ /Users/nigelramsay/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
303
+
304
+
305
+ Rendered /Users/nigelramsay/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
306
+ Rendered /Users/nigelramsay/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
307
+ Rendered /Users/nigelramsay/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms)
308
+ Rendered /Users/nigelramsay/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms)
309
+ Rendered /Users/nigelramsay/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (20.9ms)
310
+
311
+
312
+ Started GET "/grape_doc/api" for 127.0.0.1 at 2013-08-29 16:27:55 +1200
313
+ Processing by GrapeDoc::ApiController#index as HTML
314
+ Loading GrapeDoc configuration file doc/api_doc.yml
315
+ Loading GrapeDoc configuration file doc/api_doc.yml
316
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/grape_doc/api/index.html.erb within layouts/grape_doc/application (0.4ms)
317
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/layouts/grape_doc/_header.html.erb (2.1ms)
318
+ Completed 200 OK in 104ms (Views: 100.8ms)
319
+
320
+
321
+ Started GET "/assets/grape_doc/api.css?body=1" for 127.0.0.1 at 2013-08-29 16:27:56 +1200
322
+
323
+
324
+ Started GET "/assets/grape_doc/bootstrap_responsive.css?body=1" for 127.0.0.1 at 2013-08-29 16:27:56 +1200
325
+
326
+
327
+ Started GET "/assets/grape_doc/documentation.css?body=1" for 127.0.0.1 at 2013-08-29 16:27:56 +1200
328
+
329
+
330
+ Started GET "/assets/grape_doc/bootstrap.css?body=1" for 127.0.0.1 at 2013-08-29 16:27:56 +1200
331
+
332
+
333
+ Started GET "/assets/grape_doc/application.css?body=1" for 127.0.0.1 at 2013-08-29 16:27:56 +1200
334
+
335
+
336
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-29 16:27:56 +1200
337
+
338
+
339
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-29 16:27:56 +1200
340
+
341
+
342
+ Started GET "/assets/grape_doc/api.js?body=1" for 127.0.0.1 at 2013-08-29 16:27:56 +1200
343
+
344
+
345
+ Started GET "/assets/grape_doc/base64.js?body=1" for 127.0.0.1 at 2013-08-29 16:27:56 +1200
346
+
347
+
348
+ Started GET "/assets/grape_doc/bootstrap.js?body=1" for 127.0.0.1 at 2013-08-29 16:27:56 +1200
349
+
350
+
351
+ Started GET "/assets/grape_doc/documentation.js?body=1" for 127.0.0.1 at 2013-08-29 16:27:56 +1200
352
+
353
+
354
+ Started GET "/assets/grape_doc/status_codes.js?body=1" for 127.0.0.1 at 2013-08-29 16:27:56 +1200
355
+
356
+
357
+ Started GET "/assets/grape_doc/application.js?body=1" for 127.0.0.1 at 2013-08-29 16:27:56 +1200
358
+
359
+
360
+ Started GET "/grape_doc/api/v1/private" for 127.0.0.1 at 2013-08-29 16:28:01 +1200
361
+ Processing by GrapeDoc::DocumentationController#namespace as HTML
362
+ Parameters: {"api"=>"v1", "namespace"=>"private"}
363
+ Loading GrapeDoc configuration file doc/api_doc.yml
364
+ Loading GrapeDoc configuration file doc/api_doc.yml
365
+ Loading GrapeDoc configuration file doc/api_doc.yml
366
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/grape_doc/documentation/_resource_index.html.erb (19.3ms)
367
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/grape_doc/documentation/namespace.html.erb within layouts/grape_doc/application (20.7ms)
368
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/layouts/grape_doc/_header.html.erb (0.7ms)
369
+ Completed 200 OK in 32ms (Views: 27.8ms)
370
+
371
+
372
+ Started GET "/assets/grape_doc/application.css?body=1" for 127.0.0.1 at 2013-08-29 16:28:01 +1200
373
+
374
+
375
+ Started GET "/assets/grape_doc/api.css?body=1" for 127.0.0.1 at 2013-08-29 16:28:01 +1200
376
+
377
+
378
+ Started GET "/assets/grape_doc/api.js?body=1" for 127.0.0.1 at 2013-08-29 16:28:01 +1200
379
+
380
+
381
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-29 16:28:01 +1200
382
+
383
+
384
+ Started GET "/assets/grape_doc/documentation.css?body=1" for 127.0.0.1 at 2013-08-29 16:28:01 +1200
385
+
386
+
387
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-29 16:28:01 +1200
388
+
389
+
390
+ Started GET "/assets/grape_doc/base64.js?body=1" for 127.0.0.1 at 2013-08-29 16:28:01 +1200
391
+
392
+
393
+ Started GET "/assets/grape_doc/status_codes.js?body=1" for 127.0.0.1 at 2013-08-29 16:28:01 +1200
394
+
395
+
396
+ Started GET "/assets/grape_doc/documentation.js?body=1" for 127.0.0.1 at 2013-08-29 16:28:01 +1200
397
+
398
+
399
+ Started GET "/assets/grape_doc/application.js?body=1" for 127.0.0.1 at 2013-08-29 16:28:01 +1200
400
+
401
+
402
+ Started GET "/assets/grape_doc/glyphicons-halflings.png" for 127.0.0.1 at 2013-08-29 16:28:01 +1200
403
+
404
+
405
+ Started GET "/grape_doc/api/v1/private" for 127.0.0.1 at 2013-08-29 16:30:13 +1200
406
+ Processing by GrapeDoc::DocumentationController#namespace as HTML
407
+ Parameters: {"api"=>"v1", "namespace"=>"private"}
408
+ Loading GrapeDoc configuration file doc/api_doc.yml
409
+ Loading GrapeDoc configuration file doc/api_doc.yml
410
+ Loading GrapeDoc configuration file doc/api_doc.yml
411
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/grape_doc/documentation/_resource_index.html.erb (1.0ms)
412
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/grape_doc/documentation/namespace.html.erb within layouts/grape_doc/application (1.7ms)
413
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/layouts/grape_doc/_header.html.erb (0.6ms)
414
+ Completed 200 OK in 46ms (Views: 41.6ms)
415
+
416
+
417
+ Started GET "/assets/grape_doc/application.css?body=1" for 127.0.0.1 at 2013-08-29 16:30:13 +1200
418
+
419
+
420
+ Started GET "/assets/grape_doc/api.css?body=1" for 127.0.0.1 at 2013-08-29 16:30:13 +1200
421
+
422
+
423
+ Started GET "/assets/grape_doc/bootstrap-theme.css?body=1" for 127.0.0.1 at 2013-08-29 16:30:13 +1200
424
+
425
+
426
+ Started GET "/assets/grape_doc/bootstrap.css?body=1" for 127.0.0.1 at 2013-08-29 16:30:13 +1200
427
+
428
+
429
+ Started GET "/assets/grape_doc/bootstrap_responsive.css?body=1" for 127.0.0.1 at 2013-08-29 16:30:13 +1200
430
+
431
+
432
+ Started GET "/assets/grape_doc/documentation.css?body=1" for 127.0.0.1 at 2013-08-29 16:30:13 +1200
433
+
434
+
435
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-29 16:30:13 +1200
436
+
437
+
438
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-29 16:30:13 +1200
439
+
440
+
441
+ Started GET "/assets/grape_doc/api.js?body=1" for 127.0.0.1 at 2013-08-29 16:30:13 +1200
442
+
443
+
444
+ Started GET "/assets/grape_doc/bootstrap.js?body=1" for 127.0.0.1 at 2013-08-29 16:30:13 +1200
445
+
446
+
447
+ Started GET "/assets/grape_doc/base64.js?body=1" for 127.0.0.1 at 2013-08-29 16:30:13 +1200
448
+
449
+
450
+ Started GET "/assets/grape_doc/documentation.js?body=1" for 127.0.0.1 at 2013-08-29 16:30:13 +1200
451
+
452
+
453
+ Started GET "/assets/grape_doc/status_codes.js?body=1" for 127.0.0.1 at 2013-08-29 16:30:13 +1200
454
+
455
+
456
+ Started GET "/assets/grape_doc/application.js?body=1" for 127.0.0.1 at 2013-08-29 16:30:13 +1200
457
+
458
+
459
+ Started GET "/assets/grape_doc/favicon.ico" for 127.0.0.1 at 2013-08-29 16:30:13 +1200
460
+
461
+
462
+ Started GET "/grape_doc/api/v1/private" for 127.0.0.1 at 2013-08-29 16:30:48 +1200
463
+ Processing by GrapeDoc::DocumentationController#namespace as HTML
464
+ Parameters: {"api"=>"v1", "namespace"=>"private"}
465
+ Loading GrapeDoc configuration file doc/api_doc.yml
466
+ Loading GrapeDoc configuration file doc/api_doc.yml
467
+ Loading GrapeDoc configuration file doc/api_doc.yml
468
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/grape_doc/documentation/_resource_index.html.erb (1.0ms)
469
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/grape_doc/documentation/namespace.html.erb within layouts/grape_doc/application (1.7ms)
470
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/layouts/grape_doc/_header.html.erb (0.6ms)
471
+ Completed 200 OK in 13ms (Views: 9.2ms)
472
+
473
+
474
+ Started GET "/assets/grape_doc/application.css?body=1" for 127.0.0.1 at 2013-08-29 16:30:48 +1200
475
+
476
+
477
+ Started GET "/assets/grape_doc/api.css?body=1" for 127.0.0.1 at 2013-08-29 16:30:48 +1200
478
+
479
+
480
+ Started GET "/assets/grape_doc/bootstrap-theme.css?body=1" for 127.0.0.1 at 2013-08-29 16:30:48 +1200
481
+
482
+
483
+ Started GET "/assets/grape_doc/bootstrap.css?body=1" for 127.0.0.1 at 2013-08-29 16:30:48 +1200
484
+
485
+
486
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-29 16:30:48 +1200
487
+
488
+
489
+ Started GET "/assets/grape_doc/bootstrap_responsive.css?body=1" for 127.0.0.1 at 2013-08-29 16:30:48 +1200
490
+
491
+
492
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-29 16:30:48 +1200
493
+
494
+
495
+ Started GET "/assets/grape_doc/documentation.css?body=1" for 127.0.0.1 at 2013-08-29 16:30:48 +1200
496
+
497
+
498
+ Started GET "/assets/grape_doc/base64.js?body=1" for 127.0.0.1 at 2013-08-29 16:30:48 +1200
499
+
500
+
501
+ Started GET "/assets/grape_doc/api.js?body=1" for 127.0.0.1 at 2013-08-29 16:30:48 +1200
502
+
503
+
504
+ Started GET "/assets/grape_doc/bootstrap.js?body=1" for 127.0.0.1 at 2013-08-29 16:30:48 +1200
505
+
506
+
507
+ Started GET "/assets/grape_doc/status_codes.js?body=1" for 127.0.0.1 at 2013-08-29 16:30:48 +1200
508
+
509
+
510
+ Started GET "/assets/grape_doc/documentation.js?body=1" for 127.0.0.1 at 2013-08-29 16:30:48 +1200
511
+
512
+
513
+ Started GET "/assets/grape_doc/application.js?body=1" for 127.0.0.1 at 2013-08-29 16:30:48 +1200
514
+
515
+
516
+ Started GET "/assets/grape_doc/favicon.ico" for 127.0.0.1 at 2013-08-29 16:30:49 +1200
517
+
518
+
519
+ Started GET "/grape_doc/api/v1/private" for 127.0.0.1 at 2013-08-29 16:31:24 +1200
520
+ Processing by GrapeDoc::DocumentationController#namespace as HTML
521
+ Parameters: {"api"=>"v1", "namespace"=>"private"}
522
+ Loading GrapeDoc configuration file doc/api_doc.yml
523
+ Loading GrapeDoc configuration file doc/api_doc.yml
524
+ Loading GrapeDoc configuration file doc/api_doc.yml
525
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/grape_doc/documentation/_resource_index.html.erb (24.0ms)
526
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/grape_doc/documentation/namespace.html.erb within layouts/grape_doc/application (24.8ms)
527
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/layouts/grape_doc/_header.html.erb (1.2ms)
528
+ Completed 200 OK in 37ms (Views: 32.7ms)
529
+
530
+
531
+ Started GET "/assets/grape_doc/application.css?body=1" for 127.0.0.1 at 2013-08-29 16:31:24 +1200
532
+
533
+
534
+ Started GET "/assets/grape_doc/api.css?body=1" for 127.0.0.1 at 2013-08-29 16:31:24 +1200
535
+
536
+
537
+ Started GET "/assets/grape_doc/bootstrap_responsive.css?body=1" for 127.0.0.1 at 2013-08-29 16:31:24 +1200
538
+
539
+
540
+ Started GET "/assets/grape_doc/bootstrap-theme.css?body=1" for 127.0.0.1 at 2013-08-29 16:31:24 +1200
541
+
542
+
543
+ Started GET "/assets/grape_doc/bootstrap.css?body=1" for 127.0.0.1 at 2013-08-29 16:31:24 +1200
544
+
545
+
546
+ Started GET "/assets/grape_doc/documentation.css?body=1" for 127.0.0.1 at 2013-08-29 16:31:24 +1200
547
+
548
+
549
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-29 16:31:24 +1200
550
+
551
+
552
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-29 16:31:24 +1200
553
+
554
+
555
+ Started GET "/assets/grape_doc/base64.js?body=1" for 127.0.0.1 at 2013-08-29 16:31:24 +1200
556
+
557
+
558
+ Started GET "/assets/grape_doc/api.js?body=1" for 127.0.0.1 at 2013-08-29 16:31:24 +1200
559
+
560
+
561
+ Started GET "/assets/grape_doc/bootstrap.js?body=1" for 127.0.0.1 at 2013-08-29 16:31:24 +1200
562
+
563
+
564
+ Started GET "/assets/grape_doc/documentation.js?body=1" for 127.0.0.1 at 2013-08-29 16:31:24 +1200
565
+
566
+
567
+ Started GET "/assets/grape_doc/application.js?body=1" for 127.0.0.1 at 2013-08-29 16:31:24 +1200
568
+
569
+
570
+ Started GET "/assets/grape_doc/status_codes.js?body=1" for 127.0.0.1 at 2013-08-29 16:31:24 +1200
571
+
572
+
573
+ Started GET "/assets/grape_doc/favicon.ico" for 127.0.0.1 at 2013-08-29 16:31:24 +1200
574
+
575
+
576
+ Started GET "/grape_doc/api/v1/private" for 127.0.0.1 at 2013-08-29 16:31:51 +1200
577
+ Processing by GrapeDoc::DocumentationController#namespace as HTML
578
+ Parameters: {"api"=>"v1", "namespace"=>"private"}
579
+ Loading GrapeDoc configuration file doc/api_doc.yml
580
+ Loading GrapeDoc configuration file doc/api_doc.yml
581
+ Loading GrapeDoc configuration file doc/api_doc.yml
582
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/grape_doc/documentation/_resource_index.html.erb (1.0ms)
583
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/grape_doc/documentation/namespace.html.erb within layouts/grape_doc/application (1.9ms)
584
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/layouts/grape_doc/_header.html.erb (1.2ms)
585
+ Completed 200 OK in 14ms (Views: 9.6ms)
586
+
587
+
588
+ Started GET "/assets/grape_doc/application.css?body=1" for 127.0.0.1 at 2013-08-29 16:31:51 +1200
589
+
590
+
591
+ Started GET "/assets/grape_doc/bootstrap.css?body=1" for 127.0.0.1 at 2013-08-29 16:31:51 +1200
592
+
593
+
594
+ Started GET "/assets/grape_doc/bootstrap-theme.css?body=1" for 127.0.0.1 at 2013-08-29 16:31:51 +1200
595
+
596
+
597
+ Started GET "/assets/grape_doc/api.css?body=1" for 127.0.0.1 at 2013-08-29 16:31:51 +1200
598
+
599
+
600
+ Started GET "/assets/grape_doc/documentation.css?body=1" for 127.0.0.1 at 2013-08-29 16:31:51 +1200
601
+
602
+
603
+ Started GET "/assets/grape_doc/bootstrap_responsive.css?body=1" for 127.0.0.1 at 2013-08-29 16:31:51 +1200
604
+
605
+
606
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-29 16:31:51 +1200
607
+
608
+
609
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-29 16:31:51 +1200
610
+
611
+
612
+ Started GET "/assets/grape_doc/api.js?body=1" for 127.0.0.1 at 2013-08-29 16:31:51 +1200
613
+
614
+
615
+ Started GET "/assets/grape_doc/bootstrap.js?body=1" for 127.0.0.1 at 2013-08-29 16:31:51 +1200
616
+
617
+
618
+ Started GET "/assets/grape_doc/base64.js?body=1" for 127.0.0.1 at 2013-08-29 16:31:51 +1200
619
+
620
+
621
+ Started GET "/assets/grape_doc/documentation.js?body=1" for 127.0.0.1 at 2013-08-29 16:31:51 +1200
622
+
623
+
624
+ Started GET "/assets/grape_doc/status_codes.js?body=1" for 127.0.0.1 at 2013-08-29 16:31:51 +1200
625
+
626
+
627
+ Started GET "/assets/grape_doc/application.js?body=1" for 127.0.0.1 at 2013-08-29 16:31:51 +1200
628
+
629
+
630
+ Started GET "/assets/grape_doc/favicon.ico" for 127.0.0.1 at 2013-08-29 16:31:51 +1200
631
+
632
+
633
+ Started GET "/grape_doc/api/v1/private" for 127.0.0.1 at 2013-08-29 16:33:20 +1200
634
+ Processing by GrapeDoc::DocumentationController#namespace as HTML
635
+ Parameters: {"api"=>"v1", "namespace"=>"private"}
636
+ Loading GrapeDoc configuration file doc/api_doc.yml
637
+ Loading GrapeDoc configuration file doc/api_doc.yml
638
+ Loading GrapeDoc configuration file doc/api_doc.yml
639
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/grape_doc/documentation/_resource_index.html.erb (1.0ms)
640
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/grape_doc/documentation/namespace.html.erb within layouts/grape_doc/application (1.8ms)
641
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/layouts/grape_doc/_header.html.erb (1.4ms)
642
+ Completed 200 OK in 14ms (Views: 9.6ms)
643
+
644
+
645
+ Started GET "/assets/grape_doc/application.css?body=1" for 127.0.0.1 at 2013-08-29 16:33:20 +1200
646
+
647
+
648
+ Started GET "/assets/grape_doc/bootstrap-theme.css?body=1" for 127.0.0.1 at 2013-08-29 16:33:20 +1200
649
+
650
+
651
+ Started GET "/assets/grape_doc/api.css?body=1" for 127.0.0.1 at 2013-08-29 16:33:20 +1200
652
+
653
+
654
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-29 16:33:20 +1200
655
+
656
+
657
+ Started GET "/assets/grape_doc/bootstrap_responsive.css?body=1" for 127.0.0.1 at 2013-08-29 16:33:20 +1200
658
+
659
+
660
+ Started GET "/assets/grape_doc/bootstrap.css?body=1" for 127.0.0.1 at 2013-08-29 16:33:20 +1200
661
+
662
+
663
+ Started GET "/assets/grape_doc/documentation.css?body=1" for 127.0.0.1 at 2013-08-29 16:33:20 +1200
664
+
665
+
666
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-29 16:33:20 +1200
667
+
668
+
669
+ Started GET "/assets/grape_doc/api.js?body=1" for 127.0.0.1 at 2013-08-29 16:33:20 +1200
670
+
671
+
672
+ Started GET "/assets/grape_doc/base64.js?body=1" for 127.0.0.1 at 2013-08-29 16:33:20 +1200
673
+
674
+
675
+ Started GET "/assets/grape_doc/documentation.js?body=1" for 127.0.0.1 at 2013-08-29 16:33:20 +1200
676
+
677
+
678
+ Started GET "/assets/grape_doc/bootstrap.js?body=1" for 127.0.0.1 at 2013-08-29 16:33:20 +1200
679
+
680
+
681
+ Started GET "/assets/grape_doc/status_codes.js?body=1" for 127.0.0.1 at 2013-08-29 16:33:20 +1200
682
+
683
+
684
+ Started GET "/assets/grape_doc/application.js?body=1" for 127.0.0.1 at 2013-08-29 16:33:20 +1200
685
+
686
+
687
+ Started GET "/assets/grape_doc/favicon.ico" for 127.0.0.1 at 2013-08-29 16:33:20 +1200
688
+
689
+
690
+ Started GET "/grape_doc/api/v1/private/members/show" for 127.0.0.1 at 2013-08-29 16:34:59 +1200
691
+ Processing by GrapeDoc::DocumentationController#api_action as HTML
692
+ Parameters: {"api"=>"v1", "namespace"=>"private", "resource"=>"members", "api_action"=>"show"}
693
+ Loading GrapeDoc configuration file doc/api_doc.yml
694
+ Loading GrapeDoc configuration file doc/api_doc.yml
695
+ Loading GrapeDoc configuration file doc/api_doc.yml
696
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/grape_doc/documentation/_resource_index.html.erb (1.1ms)
697
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/grape_doc/documentation/_parameter.html.erb (1.0ms)
698
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/grape_doc/documentation/api_action.html.erb within layouts/grape_doc/application (9.5ms)
699
+ Rendered /Users/nigelramsay/projects/abletech/grape_doc/app/views/layouts/grape_doc/_header.html.erb (1.1ms)
700
+ Completed 200 OK in 101ms (Views: 97.7ms)
701
+
702
+
703
+ Started GET "/assets/grape_doc/application.css?body=1" for 127.0.0.1 at 2013-08-29 16:34:59 +1200
704
+
705
+
706
+ Started GET "/assets/grape_doc/api.css?body=1" for 127.0.0.1 at 2013-08-29 16:34:59 +1200
707
+
708
+
709
+ Started GET "/assets/grape_doc/bootstrap.css?body=1" for 127.0.0.1 at 2013-08-29 16:34:59 +1200
710
+
711
+
712
+ Started GET "/assets/grape_doc/bootstrap_responsive.css?body=1" for 127.0.0.1 at 2013-08-29 16:34:59 +1200
713
+
714
+
715
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-29 16:34:59 +1200
716
+
717
+
718
+ Started GET "/assets/grape_doc/documentation.css?body=1" for 127.0.0.1 at 2013-08-29 16:34:59 +1200
719
+
720
+
721
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-29 16:34:59 +1200
722
+
723
+
724
+ Started GET "/assets/grape_doc/api.js?body=1" for 127.0.0.1 at 2013-08-29 16:34:59 +1200
725
+
726
+
727
+ Started GET "/assets/grape_doc/base64.js?body=1" for 127.0.0.1 at 2013-08-29 16:34:59 +1200
728
+
729
+
730
+ Started GET "/assets/grape_doc/bootstrap.js?body=1" for 127.0.0.1 at 2013-08-29 16:34:59 +1200
731
+
732
+
733
+ Started GET "/assets/grape_doc/documentation.js?body=1" for 127.0.0.1 at 2013-08-29 16:34:59 +1200
734
+
735
+
736
+ Started GET "/assets/grape_doc/status_codes.js?body=1" for 127.0.0.1 at 2013-08-29 16:34:59 +1200
737
+
738
+
739
+ Started GET "/assets/grape_doc/application.js?body=1" for 127.0.0.1 at 2013-08-29 16:34:59 +1200
740
+
741
+
742
+ Started GET "/assets/grape_doc/loading.gif" for 127.0.0.1 at 2013-08-29 16:34:59 +1200