gitkeeper 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (79) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +5 -0
  4. data/Rakefile +34 -0
  5. data/app/assets/javascripts/gitkeeper/application.js +13 -0
  6. data/app/assets/javascripts/gitkeeper/auth.js +2 -0
  7. data/app/assets/stylesheets/gitkeeper/application.css +13 -0
  8. data/app/assets/stylesheets/gitkeeper/auth.css +4 -0
  9. data/app/controllers/gitkeeper/application_controller.rb +10 -0
  10. data/app/controllers/gitkeeper/auth_controller.rb +12 -0
  11. data/app/controllers/gitkeeper/sessions_controller.rb +31 -0
  12. data/app/helpers/gitkeeper/application_helper.rb +4 -0
  13. data/app/helpers/gitkeeper/auth_helper.rb +4 -0
  14. data/app/helpers/gitkeeper/sessions_helper.rb +4 -0
  15. data/app/models/gitkeeper/user.rb +26 -0
  16. data/app/views/gitkeeper/home/index.html.erb +14 -0
  17. data/app/views/layouts/gitkeeper/application.html.erb +19 -0
  18. data/config/initializers/omniauth-github.rb +6 -0
  19. data/config/mongoid.yml +77 -0
  20. data/config/routes.rb +11 -0
  21. data/lib/gitkeeper/engine.rb +10 -0
  22. data/lib/gitkeeper/version.rb +3 -0
  23. data/lib/gitkeeper.rb +4 -0
  24. data/lib/tasks/gitkeeper_tasks.rake +4 -0
  25. data/test/controllers/gitkeeper/home_controller_test.rb +11 -0
  26. data/test/controllers/gitkeeper/sessions_controller_test.rb +9 -0
  27. data/test/dummy/README.rdoc +28 -0
  28. data/test/dummy/Rakefile +6 -0
  29. data/test/dummy/app/assets/javascripts/application.js +13 -0
  30. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  31. data/test/dummy/app/controllers/application_controller.rb +5 -0
  32. data/test/dummy/app/helpers/application_helper.rb +2 -0
  33. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  34. data/test/dummy/bin/bundle +3 -0
  35. data/test/dummy/bin/rails +4 -0
  36. data/test/dummy/bin/rake +4 -0
  37. data/test/dummy/config/application.rb +23 -0
  38. data/test/dummy/config/boot.rb +5 -0
  39. data/test/dummy/config/database.yml +25 -0
  40. data/test/dummy/config/environment.rb +5 -0
  41. data/test/dummy/config/environments/development.rb +29 -0
  42. data/test/dummy/config/environments/production.rb +80 -0
  43. data/test/dummy/config/environments/test.rb +36 -0
  44. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  45. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  46. data/test/dummy/config/initializers/inflections.rb +16 -0
  47. data/test/dummy/config/initializers/mime_types.rb +5 -0
  48. data/test/dummy/config/initializers/secret_token.rb +12 -0
  49. data/test/dummy/config/initializers/session_store.rb +3 -0
  50. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  51. data/test/dummy/config/locales/en.yml +23 -0
  52. data/test/dummy/config/routes.rb +4 -0
  53. data/test/dummy/config.ru +4 -0
  54. data/test/dummy/db/development.sqlite3 +0 -0
  55. data/test/dummy/log/development.log +528 -0
  56. data/test/dummy/public/404.html +58 -0
  57. data/test/dummy/public/422.html +58 -0
  58. data/test/dummy/public/500.html +57 -0
  59. data/test/dummy/public/favicon.ico +0 -0
  60. data/test/dummy/tmp/cache/assets/development/sprockets/0d43c2fffb90616467474f4963a5bd20 +0 -0
  61. data/test/dummy/tmp/cache/assets/development/sprockets/136fdd338016b349d83ef0caa9a215fc +0 -0
  62. data/test/dummy/tmp/cache/assets/development/sprockets/4511884698b2382b62c73553862fc25c +0 -0
  63. data/test/dummy/tmp/cache/assets/development/sprockets/466167c2c3774603f579aa00a38cfd5f +0 -0
  64. data/test/dummy/tmp/cache/assets/development/sprockets/4a6f6808fb26bc7501a13b060fe116f2 +0 -0
  65. data/test/dummy/tmp/cache/assets/development/sprockets/507374e39f7708a4e35b2ab14cb29363 +0 -0
  66. data/test/dummy/tmp/cache/assets/development/sprockets/525d3e06dc02c95c17f5a46605ef2d82 +0 -0
  67. data/test/dummy/tmp/cache/assets/development/sprockets/b5ec637916f7bd17d0401f36b9c99bd0 +0 -0
  68. data/test/dummy/tmp/cache/assets/development/sprockets/b891fcf65ef6be8630179dbdc2b98879 +0 -0
  69. data/test/dummy/tmp/cache/assets/development/sprockets/bda53d0822f8100c68fb52ad73614306 +0 -0
  70. data/test/dummy/tmp/cache/assets/development/sprockets/ca995e40bfdeb3b92db0ec1e546eaf1f +0 -0
  71. data/test/dummy/tmp/cache/assets/development/sprockets/db96c127311b4c7180e505fbb1d5e9aa +0 -0
  72. data/test/fixtures/gitkeeper/users.yml +11 -0
  73. data/test/gitkeeper_test.rb +7 -0
  74. data/test/helpers/gitkeeper/home_helper_test.rb +6 -0
  75. data/test/helpers/gitkeeper/sessions_helper_test.rb +6 -0
  76. data/test/integration/navigation_test.rb +10 -0
  77. data/test/models/gitkeeper/user_test.rb +9 -0
  78. data/test/test_helper.rb +15 -0
  79. metadata +245 -0
@@ -0,0 +1,528 @@
1
+
2
+
3
+ Started GET "/auth/github" for 127.0.0.1 at 2013-07-04 18:32:22 +0200
4
+
5
+
6
+ Started GET "/auth/github/callback?code=d417f49f68620247d515&state=e50b9d62948eaf108b1be88b9d04935d9c353c24a1121b0c" for 127.0.0.1 at 2013-07-04 18:32:23 +0200
7
+
8
+ ActionController::RoutingError (No route matches [GET] "/auth/github/callback"):
9
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
10
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
11
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
12
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
13
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
14
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
15
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
16
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
17
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
18
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
19
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
20
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
21
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
22
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
23
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
24
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
25
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
26
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
27
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
28
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
29
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
30
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
31
+
32
+
33
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
34
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms)
35
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
36
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (102.6ms)
37
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (155.8ms)
38
+
39
+
40
+ Started GET "/" for 127.0.0.1 at 2013-07-04 18:32:44 +0200
41
+ Processing by Rails::WelcomeController#index as HTML
42
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/railties-4.0.0/lib/rails/templates/rails/welcome/index.html.erb (2.3ms)
43
+ Completed 200 OK in 37ms (Views: 35.9ms | ActiveRecord: 0.0ms)
44
+
45
+
46
+ Started GET "/gitkeeper" for 127.0.0.1 at 2013-07-04 18:33:30 +0200
47
+ Processing by Gitkeeper::HomeController#index as HTML
48
+ Rendered /home/lsoave/rails/github/gitkeeper/app/views/gitkeeper/home/index.html.erb within layouts/gitkeeper/application (2.7ms)
49
+ Completed 200 OK in 120ms (Views: 69.9ms | ActiveRecord: 0.0ms)
50
+
51
+
52
+ Started GET "/assets/gitkeeper/application.css?body=1" for 127.0.0.1 at 2013-07-04 18:33:31 +0200
53
+
54
+
55
+ Started GET "/assets/gitkeeper/application.js?body=1" for 127.0.0.1 at 2013-07-04 18:33:31 +0200
56
+
57
+
58
+ Started GET "/assets/gitkeeper/home.js?body=1" for 127.0.0.1 at 2013-07-04 18:33:31 +0200
59
+
60
+
61
+ Started GET "/assets/gitkeeper/home.css?body=1" for 127.0.0.1 at 2013-07-04 18:33:31 +0200
62
+
63
+
64
+ Started GET "/auth/github" for 127.0.0.1 at 2013-07-04 18:33:34 +0200
65
+
66
+
67
+ Started GET "/auth/github/callback?code=904457b352d2d5c7b2dd&state=5b321d225d624e06d33fa946e8a0f9ef57d09b314c7cfb51" for 127.0.0.1 at 2013-07-04 18:33:34 +0200
68
+
69
+ ActionController::RoutingError (No route matches [GET] "/auth/github/callback"):
70
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
71
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
72
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
73
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
74
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
75
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
76
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
77
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
78
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
79
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
80
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
81
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
82
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
83
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
84
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
85
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
86
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
87
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
88
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
89
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
90
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
91
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
92
+
93
+
94
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms)
95
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms)
96
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
97
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.6ms)
98
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (49.3ms)
99
+
100
+
101
+ Started GET "/signout" for 127.0.0.1 at 2013-07-04 18:33:41 +0200
102
+
103
+ ActionController::RoutingError (No route matches [GET] "/signout"):
104
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
105
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
106
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
107
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
108
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
109
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
110
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
111
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
112
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
113
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
114
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
115
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
116
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
117
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
118
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
119
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
120
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
121
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
122
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
123
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
124
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
125
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
126
+
127
+
128
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.7ms)
129
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms)
130
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
131
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms)
132
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (39.7ms)
133
+
134
+
135
+ Started GET "/gitkeeper/auth/github/" for 127.0.0.1 at 2013-07-04 18:34:31 +0200
136
+
137
+ ActionController::RoutingError (No route matches [GET] "/gitkeeper/auth/github"):
138
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
139
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
140
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
141
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
142
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
143
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
144
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
145
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
146
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
147
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
148
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
149
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
150
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
151
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
152
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
153
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
154
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
155
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
156
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
157
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
158
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
159
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
160
+
161
+
162
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.3ms)
163
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms)
164
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
165
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms)
166
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (44.7ms)
167
+
168
+
169
+ Started GET "/gitkeeper" for 127.0.0.1 at 2013-07-04 18:42:28 +0200
170
+ Processing by Gitkeeper::HomeController#index as HTML
171
+ Rendered /home/lsoave/rails/github/gitkeeper/app/views/gitkeeper/home/index.html.erb within layouts/gitkeeper/application (2.8ms)
172
+ Completed 200 OK in 93ms (Views: 46.5ms | ActiveRecord: 0.0ms)
173
+
174
+
175
+ Started GET "/assets/gitkeeper/application.css?body=1" for 127.0.0.1 at 2013-07-04 18:42:28 +0200
176
+
177
+
178
+ Started GET "/assets/gitkeeper/home.js?body=1" for 127.0.0.1 at 2013-07-04 18:42:28 +0200
179
+
180
+
181
+ Started GET "/assets/gitkeeper/home.css?body=1" for 127.0.0.1 at 2013-07-04 18:42:28 +0200
182
+
183
+
184
+ Started GET "/assets/gitkeeper/application.js?body=1" for 127.0.0.1 at 2013-07-04 18:42:28 +0200
185
+
186
+
187
+ Started GET "/auth/github" for 127.0.0.1 at 2013-07-04 18:42:30 +0200
188
+
189
+
190
+ Started GET "/auth/github/callback?code=425ad5051e3708abe32c&state=7cf3cda4d914e740b5b6674f93995a9010deca4bbd6708e3" for 127.0.0.1 at 2013-07-04 18:42:31 +0200
191
+
192
+ ActionController::RoutingError (uninitialized constant SessionsController):
193
+ activesupport (4.0.0) lib/active_support/inflector/methods.rb:226:in `const_get'
194
+ activesupport (4.0.0) lib/active_support/inflector/methods.rb:226:in `block in constantize'
195
+ activesupport (4.0.0) lib/active_support/inflector/methods.rb:224:in `each'
196
+ activesupport (4.0.0) lib/active_support/inflector/methods.rb:224:in `inject'
197
+ activesupport (4.0.0) lib/active_support/inflector/methods.rb:224:in `constantize'
198
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
199
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:66:in `controller'
200
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:44:in `call'
201
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
202
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
203
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
204
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
205
+ omniauth (1.1.4) lib/omniauth/strategy.rb:401:in `call_app!'
206
+ omniauth (1.1.4) lib/omniauth/strategy.rb:363:in `callback_phase'
207
+ omniauth-oauth2 (1.1.1) lib/omniauth/strategies/oauth2.rb:77:in `callback_phase'
208
+ omniauth (1.1.4) lib/omniauth/strategy.rb:226:in `callback_call'
209
+ omniauth (1.1.4) lib/omniauth/strategy.rb:182:in `call!'
210
+ omniauth (1.1.4) lib/omniauth/strategy.rb:164:in `call'
211
+ omniauth (1.1.4) lib/omniauth/builder.rb:49:in `call'
212
+ /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/bundler/gems/mongoid-d52c33bce36a/lib/rack/mongoid/middleware/identity_map.rb:34:in `block in call'
213
+ /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/bundler/gems/mongoid-d52c33bce36a/lib/mongoid/unit_of_work.rb:39:in `unit_of_work'
214
+ /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/bundler/gems/mongoid-d52c33bce36a/lib/rack/mongoid/middleware/identity_map.rb:34:in `call'
215
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
216
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
217
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
218
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
219
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
220
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
221
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
222
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
223
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
224
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
225
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
226
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
227
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__150536492__call__callbacks'
228
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
229
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
230
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
231
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
232
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
233
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
234
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
235
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
236
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
237
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
238
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
239
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
240
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
241
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
242
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
243
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
244
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
245
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
246
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
247
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
248
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
249
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
250
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
251
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
252
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
253
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
254
+
255
+
256
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.7ms)
257
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms)
258
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
259
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.9ms)
260
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (59.9ms)
261
+
262
+
263
+ Started GET "/gitkeeper" for 127.0.0.1 at 2013-07-04 18:43:54 +0200
264
+ Processing by Gitkeeper::HomeController#index as HTML
265
+ Rendered /home/lsoave/rails/github/gitkeeper/app/views/gitkeeper/home/index.html.erb within layouts/gitkeeper/application (2.7ms)
266
+ Completed 200 OK in 95ms (Views: 48.6ms | ActiveRecord: 0.0ms)
267
+
268
+
269
+ Started GET "/assets/gitkeeper/application.css?body=1" for 127.0.0.1 at 2013-07-04 18:43:54 +0200
270
+
271
+
272
+ Started GET "/assets/gitkeeper/home.js?body=1" for 127.0.0.1 at 2013-07-04 18:43:54 +0200
273
+
274
+
275
+ Started GET "/assets/gitkeeper/home.css?body=1" for 127.0.0.1 at 2013-07-04 18:43:54 +0200
276
+
277
+
278
+ Started GET "/assets/gitkeeper/application.js?body=1" for 127.0.0.1 at 2013-07-04 18:43:54 +0200
279
+
280
+
281
+ Started GET "/auth/github" for 127.0.0.1 at 2013-07-04 18:43:59 +0200
282
+
283
+
284
+ Started GET "/auth/github/callback?code=69703fb3562da2e7ba3e&state=4a2cb62accd481690bd7e51d2fb543b10d9c5340d6054ff5" for 127.0.0.1 at 2013-07-04 18:44:00 +0200
285
+
286
+ ActionController::RoutingError (No route matches [GET] "/auth/github/callback"):
287
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
288
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
289
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
290
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
291
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
292
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
293
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
294
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
295
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
296
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
297
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
298
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
299
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
300
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
301
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
302
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
303
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
304
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
305
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
306
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
307
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
308
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
309
+
310
+
311
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
312
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms)
313
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
314
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.5ms)
315
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (48.3ms)
316
+
317
+
318
+ Started GET "/gitkeeper" for 127.0.0.1 at 2013-07-04 18:47:44 +0200
319
+ Processing by Gitkeeper::HomeController#index as HTML
320
+ Rendered /home/lsoave/rails/github/gitkeeper/app/views/gitkeeper/home/index.html.erb within layouts/gitkeeper/application (2.7ms)
321
+ Completed 200 OK in 95ms (Views: 46.6ms | ActiveRecord: 0.0ms)
322
+
323
+
324
+ Started GET "/assets/gitkeeper/application.css?body=1" for 127.0.0.1 at 2013-07-04 18:47:44 +0200
325
+
326
+
327
+ Started GET "/assets/gitkeeper/application.js?body=1" for 127.0.0.1 at 2013-07-04 18:47:44 +0200
328
+
329
+
330
+ Started GET "/assets/gitkeeper/home.css?body=1" for 127.0.0.1 at 2013-07-04 18:47:44 +0200
331
+
332
+
333
+ Started GET "/assets/gitkeeper/home.js?body=1" for 127.0.0.1 at 2013-07-04 18:47:44 +0200
334
+
335
+
336
+ Started GET "/auth/github" for 127.0.0.1 at 2013-07-04 18:47:47 +0200
337
+
338
+
339
+ Started GET "/auth/github/callback?code=becf501b6d99f86341f9&state=eb4125c2da8ba1d8c981e62b354759ea62e50f8514fff97e" for 127.0.0.1 at 2013-07-04 18:47:48 +0200
340
+
341
+ ActionController::RoutingError (No route matches [GET] "/auth/github/callback"):
342
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
343
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
344
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
345
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
346
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
347
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
348
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
349
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
350
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
351
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
352
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
353
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
354
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
355
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
356
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
357
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
358
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
359
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
360
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
361
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
362
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
363
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
364
+
365
+
366
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
367
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms)
368
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
369
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.4ms)
370
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (52.8ms)
371
+
372
+
373
+ Started GET "/gitkeeper/auth/github/callback" for 127.0.0.1 at 2013-07-04 18:48:00 +0200
374
+ Processing by Gitkeeper::SessionsController#create as HTML
375
+ Parameters: {"provider"=>"github"}
376
+ Completed 500 Internal Server Error in 3ms
377
+
378
+ SyntaxError (/home/lsoave/rails/github/gitkeeper/app/models/gitkeeper/user.rb:26: syntax error, unexpected end-of-input, expecting keyword_end):
379
+ activesupport (4.0.0) lib/active_support/dependencies.rb:423:in `load'
380
+ activesupport (4.0.0) lib/active_support/dependencies.rb:423:in `block in load_file'
381
+ activesupport (4.0.0) lib/active_support/dependencies.rb:615:in `new_constants_in'
382
+ activesupport (4.0.0) lib/active_support/dependencies.rb:422:in `load_file'
383
+ activesupport (4.0.0) lib/active_support/dependencies.rb:323:in `require_or_load'
384
+ activesupport (4.0.0) lib/active_support/dependencies.rb:462:in `load_missing_constant'
385
+ activesupport (4.0.0) lib/active_support/dependencies.rb:183:in `const_missing'
386
+ activesupport (4.0.0) lib/active_support/dependencies.rb:494:in `load_missing_constant'
387
+ activesupport (4.0.0) lib/active_support/dependencies.rb:183:in `const_missing'
388
+ /home/lsoave/rails/github/gitkeeper/app/controllers/gitkeeper/sessions_controller.rb:27:in `user_find_or_create_from_auth_hash'
389
+ /home/lsoave/rails/github/gitkeeper/app/controllers/gitkeeper/sessions_controller.rb:16:in `create'
390
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
391
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
392
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
393
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
394
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__584239726__process_action__callbacks'
395
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
396
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
397
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
398
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
399
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
400
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
401
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
402
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
403
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
404
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
405
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
406
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
407
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
408
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
409
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
410
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
411
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
412
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
413
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
414
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
415
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
416
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
417
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
418
+ railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
419
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
420
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
421
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
422
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
423
+ omniauth (1.1.4) lib/omniauth/strategy.rb:184:in `call!'
424
+ omniauth (1.1.4) lib/omniauth/strategy.rb:164:in `call'
425
+ omniauth (1.1.4) lib/omniauth/builder.rb:49:in `call'
426
+ /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/bundler/gems/mongoid-d52c33bce36a/lib/rack/mongoid/middleware/identity_map.rb:34:in `block in call'
427
+ /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/bundler/gems/mongoid-d52c33bce36a/lib/mongoid/unit_of_work.rb:39:in `unit_of_work'
428
+ /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/bundler/gems/mongoid-d52c33bce36a/lib/rack/mongoid/middleware/identity_map.rb:34:in `call'
429
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
430
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
431
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
432
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
433
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
434
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
435
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
436
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
437
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
438
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
439
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
440
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
441
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__1061467145__call__callbacks'
442
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
443
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
444
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
445
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
446
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
447
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
448
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
449
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
450
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
451
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
452
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
453
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
454
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
455
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
456
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
457
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
458
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
459
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
460
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
461
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
462
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
463
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
464
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
465
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
466
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
467
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
468
+
469
+
470
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.5ms)
471
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.9ms)
472
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.7ms)
473
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (31.6ms)
474
+
475
+
476
+ Started GET "/gitkeeper" for 127.0.0.1 at 2013-07-04 18:50:49 +0200
477
+ Processing by Gitkeeper::HomeController#index as HTML
478
+ Rendered /home/lsoave/rails/github/gitkeeper/app/views/gitkeeper/home/index.html.erb within layouts/gitkeeper/application (2.8ms)
479
+ Completed 200 OK in 93ms (Views: 46.6ms | ActiveRecord: 0.0ms)
480
+
481
+
482
+ Started GET "/assets/gitkeeper/application.css?body=1" for 127.0.0.1 at 2013-07-04 18:50:49 +0200
483
+
484
+
485
+ Started GET "/assets/gitkeeper/home.css?body=1" for 127.0.0.1 at 2013-07-04 18:50:50 +0200
486
+
487
+
488
+ Started GET "/assets/gitkeeper/home.js?body=1" for 127.0.0.1 at 2013-07-04 18:50:50 +0200
489
+
490
+
491
+ Started GET "/assets/gitkeeper/application.js?body=1" for 127.0.0.1 at 2013-07-04 18:50:50 +0200
492
+
493
+
494
+ Started GET "/auth/github" for 127.0.0.1 at 2013-07-04 18:50:52 +0200
495
+
496
+
497
+ Started GET "/auth/github/callback?code=084bb3d3e282e1e356f2&state=cba01cf42858b732ffef70bd4ed2cb931d153769461acad2" for 127.0.0.1 at 2013-07-04 18:50:52 +0200
498
+
499
+ ActionController::RoutingError (No route matches [GET] "/auth/github/callback"):
500
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
501
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
502
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
503
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
504
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
505
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
506
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
507
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
508
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
509
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
510
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
511
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
512
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
513
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
514
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
515
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
516
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
517
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
518
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
519
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
520
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
521
+ /home/lsoave/.rvm/rubies/ruby-2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
522
+
523
+
524
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.2ms)
525
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms)
526
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
527
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.4ms)
528
+ Rendered /home/lsoave/.rvm/gems/ruby-2.0.0-p0@rails-4.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (52.9ms)
@@ -0,0 +1,58 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/404.html -->
52
+ <div class="dialog">
53
+ <h1>The page you were looking for doesn't exist.</h1>
54
+ <p>You may have mistyped the address or the page may have moved.</p>
55
+ </div>
56
+ <p>If you are the application owner check the logs for more information.</p>
57
+ </body>
58
+ </html>