ojo 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +16 -0
  3. data/.ruby-version +1 -0
  4. data/.travis.yml +3 -0
  5. data/Gemfile +14 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +106 -0
  8. data/Rakefile +19 -0
  9. data/lib/ojo/comparison.rb +88 -0
  10. data/lib/ojo/locations.rb +26 -0
  11. data/lib/ojo/output.rb +90 -0
  12. data/lib/ojo/rails/engine.rb +6 -0
  13. data/lib/ojo/screenshot.rb +21 -0
  14. data/lib/ojo/version.rb +3 -0
  15. data/lib/ojo.rb +13 -0
  16. data/lib/tasks/ojo.rake +59 -0
  17. data/ojo.gemspec +28 -0
  18. data/test/page_objects/test_app/index_page.rb +8 -0
  19. data/test/page_objects/test_app/test_app_page.rb +6 -0
  20. data/test/page_objects.rb +13 -0
  21. data/test/phantom/browser_test.rb +9 -0
  22. data/test/phantom_test_helper.rb +67 -0
  23. data/test/test_app/Gemfile +9 -0
  24. data/test/test_app/Gemfile.lock +100 -0
  25. data/test/test_app/app/controllers/application_controller.rb +2 -0
  26. data/test/test_app/app/controllers/local_controller.rb +7 -0
  27. data/test/test_app/app/views/layouts/local.html.erb +14 -0
  28. data/test/test_app/app/views/local/index.html.erb +1 -0
  29. data/test/test_app/config/database.yml +10 -0
  30. data/test/test_app/config/initializers/ojo_initializer.rb +1 -0
  31. data/test/test_app/config/routes.rb +4 -0
  32. data/test/test_app/config.ru +31 -0
  33. data/test/test_app/log/development.log +260 -0
  34. data/test/test_app/log/test.log +2762 -0
  35. data/test/test_app/ojo_development +0 -0
  36. data/test/test_app/test_app.rb +30 -0
  37. data/test/test_helper.rb +59 -0
  38. data/test/unit/comparison_test.rb +185 -0
  39. data/test/unit/config_test.rb +9 -0
  40. data/test/unit/files_test.rb +31 -0
  41. data/test/unit/output_test.rb +38 -0
  42. metadata +164 -0
@@ -0,0 +1,100 @@
1
+ PATH
2
+ remote: ../..
3
+ specs:
4
+ ojo (0.0.1)
5
+ collimator
6
+ open4
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionmailer (3.2.16)
12
+ actionpack (= 3.2.16)
13
+ mail (~> 2.5.4)
14
+ actionpack (3.2.16)
15
+ activemodel (= 3.2.16)
16
+ activesupport (= 3.2.16)
17
+ builder (~> 3.0.0)
18
+ erubis (~> 2.7.0)
19
+ journey (~> 1.0.4)
20
+ rack (~> 1.4.5)
21
+ rack-cache (~> 1.2)
22
+ rack-test (~> 0.6.1)
23
+ sprockets (~> 2.2.1)
24
+ activemodel (3.2.16)
25
+ activesupport (= 3.2.16)
26
+ builder (~> 3.0.0)
27
+ activerecord (3.2.16)
28
+ activemodel (= 3.2.16)
29
+ activesupport (= 3.2.16)
30
+ arel (~> 3.0.2)
31
+ tzinfo (~> 0.3.29)
32
+ activeresource (3.2.16)
33
+ activemodel (= 3.2.16)
34
+ activesupport (= 3.2.16)
35
+ activesupport (3.2.16)
36
+ i18n (~> 0.6, >= 0.6.4)
37
+ multi_json (~> 1.0)
38
+ arel (3.0.3)
39
+ builder (3.0.4)
40
+ collimator (0.0.3)
41
+ colored
42
+ colored (1.2)
43
+ erubis (2.7.0)
44
+ hike (1.2.3)
45
+ i18n (0.6.11)
46
+ journey (1.0.4)
47
+ json (1.8.1)
48
+ mail (2.5.4)
49
+ mime-types (~> 1.16)
50
+ treetop (~> 1.4.8)
51
+ mime-types (1.25.1)
52
+ multi_json (1.10.1)
53
+ open4 (1.3.4)
54
+ polyglot (0.3.5)
55
+ rack (1.4.5)
56
+ rack-cache (1.2)
57
+ rack (>= 0.4)
58
+ rack-ssl (1.3.4)
59
+ rack
60
+ rack-test (0.6.2)
61
+ rack (>= 1.0)
62
+ rails (3.2.16)
63
+ actionmailer (= 3.2.16)
64
+ actionpack (= 3.2.16)
65
+ activerecord (= 3.2.16)
66
+ activeresource (= 3.2.16)
67
+ activesupport (= 3.2.16)
68
+ bundler (~> 1.0)
69
+ railties (= 3.2.16)
70
+ railties (3.2.16)
71
+ actionpack (= 3.2.16)
72
+ activesupport (= 3.2.16)
73
+ rack-ssl (~> 1.3.2)
74
+ rake (>= 0.8.7)
75
+ rdoc (~> 3.4)
76
+ thor (>= 0.14.6, < 2.0)
77
+ rake (10.3.2)
78
+ rdoc (3.12.2)
79
+ json (~> 1.4)
80
+ sprockets (2.2.2)
81
+ hike (~> 1.2)
82
+ multi_json (~> 1.0)
83
+ rack (~> 1.0)
84
+ tilt (~> 1.1, != 1.3.0)
85
+ sqlite3 (1.3.9)
86
+ thor (0.19.1)
87
+ tilt (1.4.1)
88
+ treetop (1.4.15)
89
+ polyglot
90
+ polyglot (>= 0.3.1)
91
+ tzinfo (0.3.41)
92
+
93
+ PLATFORMS
94
+ ruby
95
+
96
+ DEPENDENCIES
97
+ json
98
+ ojo!
99
+ rails (= 3.2.16)
100
+ sqlite3
@@ -0,0 +1,2 @@
1
+ class ApplicationController < ActionController::Base
2
+ end
@@ -0,0 +1,7 @@
1
+ class LocalController < ApplicationController
2
+
3
+ def index
4
+ @data = "A whole lot of stuff from the local#index route"
5
+ end
6
+
7
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Local</title>
5
+ <%= stylesheet_link_tag "local_app" %>
6
+
7
+ </head>
8
+ <body>
9
+ <h1>local layout</h1>
10
+ <hr/>
11
+ <%= yield %>
12
+ <hr/>
13
+ </body>
14
+ </html>
@@ -0,0 +1 @@
1
+ <h1>local index</h1>
@@ -0,0 +1,10 @@
1
+ test:
2
+ adapter: sqlite3
3
+ database: ojo_development
4
+ pool: 5
5
+ timeout: 5000
6
+ development:
7
+ adapter: sqlite3
8
+ database: ojo_development
9
+ pool: 5
10
+ timeout: 5000
@@ -0,0 +1 @@
1
+ Ojo.location = File.join(Rails.root, 'tmp', 'ojo_data')
@@ -0,0 +1,4 @@
1
+ Rails.application.routes.draw do
2
+ resources :local
3
+ root :to => 'local#index'
4
+ end
@@ -0,0 +1,31 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+ ENV['RAILS_ENV'] = 'development'
3
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
4
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..'))
5
+
6
+ require 'rubygems'
7
+ require 'bundler'
8
+
9
+ # Set up gems listed in the Gemfile.
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __FILE__)
11
+
12
+ require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
13
+
14
+ begin
15
+ Bundler.setup(:default, :development)
16
+ rescue Bundler::BundlerError => e
17
+ $stderr.puts e.message
18
+ $stderr.puts "Run `bundle install` to install missing gems"
19
+ exit e.status_code
20
+ end
21
+
22
+ require "action_controller/railtie"
23
+ require "sprockets/railtie"
24
+ require 'rails'
25
+
26
+ require 'ojo'
27
+
28
+ Rails.backtrace_cleaner.remove_silencers!
29
+
30
+ require 'test_app'
31
+ run OjoApp::Application
@@ -0,0 +1,260 @@
1
+
2
+
3
+ Started GET "/ojo" for 127.0.0.1 at 2014-10-13 15:07:41 -0700
4
+ Processing by OjoController#index as HTML
5
+ Rendered /Users/geordie/src/gems/ojo/app/views/ojo/index.html.erb within layouts/ojo (0.4ms)
6
+ Completed 200 OK in 9ms (Views: 8.9ms)
7
+
8
+
9
+ Started GET "/assets/ojo.css" for 127.0.0.1 at 2014-10-13 15:07:41 -0700
10
+
11
+
12
+ Started GET "/assets/normalize.css" for 127.0.0.1 at 2014-10-13 15:07:41 -0700
13
+
14
+
15
+ Started GET "/ojo" for 127.0.0.1 at 2014-10-13 20:39:46 -0700
16
+ Processing by OjoController#index as HTML
17
+ Rendered /Users/geordie/src/gems/ojo/app/views/ojo/index.html.erb within layouts/ojo (0.7ms)
18
+ Completed 200 OK in 5.2ms (Views: 5.0ms)
19
+
20
+
21
+ Started GET "/assets/normalize.css" for 127.0.0.1 at 2014-10-13 20:39:46 -0700
22
+ Compiled normalize.css (0ms) (pid 97857)
23
+ Served asset /normalize.css - 200 OK (14ms)
24
+
25
+
26
+ Started GET "/assets/ojo.css" for 127.0.0.1 at 2014-10-13 20:39:46 -0700
27
+ Compiled ojo.css (0ms) (pid 97857)
28
+ Served asset /ojo.css - 200 OK (12ms)
29
+
30
+
31
+ Started GET "/ojo" for 127.0.0.1 at 2014-10-13 20:41:48 -0700
32
+ Processing by OjoController#index as HTML
33
+ Rendered /Users/geordie/src/gems/ojo/app/views/ojo/index.html.erb within layouts/ojo (0.0ms)
34
+ Completed 200 OK in 1.0ms (Views: 0.8ms)
35
+
36
+
37
+ Started GET "/assets/normalize.css" for 127.0.0.1 at 2014-10-13 20:41:48 -0700
38
+ Served asset /normalize.css - 304 Not Modified (0ms)
39
+
40
+
41
+ Started GET "/assets/ojo.css" for 127.0.0.1 at 2014-10-13 20:41:48 -0700
42
+ Served asset /ojo.css - 304 Not Modified (0ms)
43
+
44
+
45
+ Started GET "/ojo" for 127.0.0.1 at 2014-10-13 20:42:05 -0700
46
+ Processing by OjoController#index as HTML
47
+ Rendered /Users/geordie/src/gems/ojo/app/views/ojo/index.html.erb within layouts/ojo (0.1ms)
48
+ Completed 200 OK in 1.0ms (Views: 0.9ms)
49
+
50
+
51
+ Started GET "/assets/ojo.css" for 127.0.0.1 at 2014-10-13 20:42:05 -0700
52
+ Served asset /ojo.css - 304 Not Modified (0ms)
53
+
54
+
55
+ Started GET "/assets/normalize.css" for 127.0.0.1 at 2014-10-13 20:42:05 -0700
56
+ Served asset /normalize.css - 304 Not Modified (0ms)
57
+
58
+
59
+ Started GET "/ojo" for 127.0.0.1 at 2014-10-13 20:42:14 -0700
60
+ Processing by OjoController#index as HTML
61
+ Rendered /Users/geordie/src/gems/ojo/app/views/ojo/index.html.erb within layouts/ojo (0.6ms)
62
+ Completed 200 OK in 5.1ms (Views: 4.8ms)
63
+
64
+
65
+ Started GET "/assets/normalize.css" for 127.0.0.1 at 2014-10-13 20:42:14 -0700
66
+ Served asset /normalize.css - 304 Not Modified (2ms)
67
+
68
+
69
+ Started GET "/assets/ojo.css" for 127.0.0.1 at 2014-10-13 20:42:14 -0700
70
+ Served asset /ojo.css - 304 Not Modified (1ms)
71
+
72
+
73
+ Started GET "/ojo" for 127.0.0.1 at 2014-10-13 20:42:44 -0700
74
+ Processing by OjoController#index as HTML
75
+ Rendered /Users/geordie/src/gems/ojo/app/views/ojo/index.html.erb within layouts/ojo (0.0ms)
76
+ Completed 200 OK in 1.0ms (Views: 0.9ms)
77
+
78
+
79
+ Started GET "/assets/normalize.css" for 127.0.0.1 at 2014-10-13 20:42:44 -0700
80
+ Served asset /normalize.css - 304 Not Modified (0ms)
81
+
82
+
83
+ Started GET "/assets/ojo.css" for 127.0.0.1 at 2014-10-13 20:42:44 -0700
84
+ Served asset /ojo.css - 304 Not Modified (0ms)
85
+
86
+
87
+ Started GET "/ojo" for 127.0.0.1 at 2014-10-13 20:42:54 -0700
88
+ Processing by OjoController#index as HTML
89
+ Completed 500 Internal Server Error in 2.1ms
90
+
91
+ NameError (undefined local variable or method `d' for #<OjoController:0x0000010118a748>):
92
+ /Users/geordie/src/gems/ojo/app/controllers/ojo_controller.rb:5:in `block in index'
93
+ /Users/geordie/src/gems/ojo/app/controllers/ojo_controller.rb:5:in `select'
94
+ /Users/geordie/src/gems/ojo/app/controllers/ojo_controller.rb:5:in `index'
95
+ actionpack (3.2.16) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
96
+ actionpack (3.2.16) lib/abstract_controller/base.rb:167:in `process_action'
97
+ actionpack (3.2.16) lib/action_controller/metal/rendering.rb:10:in `process_action'
98
+ actionpack (3.2.16) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
99
+ activesupport (3.2.16) lib/active_support/callbacks.rb:414:in `_run__2458242158774748331__process_action__820881166150797124__callbacks'
100
+ activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `__run_callback'
101
+ activesupport (3.2.16) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
102
+ activesupport (3.2.16) lib/active_support/callbacks.rb:81:in `run_callbacks'
103
+ actionpack (3.2.16) lib/abstract_controller/callbacks.rb:17:in `process_action'
104
+ actionpack (3.2.16) lib/action_controller/metal/rescue.rb:29:in `process_action'
105
+ actionpack (3.2.16) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
106
+ activesupport (3.2.16) lib/active_support/notifications.rb:123:in `block in instrument'
107
+ activesupport (3.2.16) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
108
+ activesupport (3.2.16) lib/active_support/notifications.rb:123:in `instrument'
109
+ actionpack (3.2.16) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
110
+ actionpack (3.2.16) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
111
+ actionpack (3.2.16) lib/abstract_controller/base.rb:121:in `process'
112
+ actionpack (3.2.16) lib/abstract_controller/rendering.rb:45:in `process'
113
+ actionpack (3.2.16) lib/action_controller/metal.rb:203:in `dispatch'
114
+ actionpack (3.2.16) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
115
+ actionpack (3.2.16) lib/action_controller/metal.rb:246:in `block in action'
116
+ actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:73:in `call'
117
+ actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
118
+ actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:36:in `call'
119
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
120
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
121
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
122
+ actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:608:in `call'
123
+ actionpack (3.2.16) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
124
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
125
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
126
+ actionpack (3.2.16) lib/action_dispatch/middleware/head.rb:14:in `call'
127
+ actionpack (3.2.16) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
128
+ actionpack (3.2.16) lib/action_dispatch/middleware/flash.rb:242:in `call'
129
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
130
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
131
+ actionpack (3.2.16) lib/action_dispatch/middleware/cookies.rb:341:in `call'
132
+ actionpack (3.2.16) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
133
+ activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `_run__2553995625834201740__call__3284594636383933761__callbacks'
134
+ activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `__run_callback'
135
+ activesupport (3.2.16) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
136
+ activesupport (3.2.16) lib/active_support/callbacks.rb:81:in `run_callbacks'
137
+ actionpack (3.2.16) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
138
+ actionpack (3.2.16) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
139
+ actionpack (3.2.16) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
140
+ actionpack (3.2.16) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
141
+ railties (3.2.16) lib/rails/rack/logger.rb:32:in `call_app'
142
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `block in call'
143
+ activesupport (3.2.16) lib/active_support/tagged_logging.rb:22:in `tagged'
144
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
145
+ actionpack (3.2.16) lib/action_dispatch/middleware/request_id.rb:22:in `call'
146
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
147
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
148
+ activesupport (3.2.16) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
149
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
150
+ actionpack (3.2.16) lib/action_dispatch/middleware/static.rb:63:in `call'
151
+ railties (3.2.16) lib/rails/engine.rb:484:in `call'
152
+ railties (3.2.16) lib/rails/application.rb:231:in `call'
153
+ railties (3.2.16) lib/rails/railtie/configurable.rb:30:in `method_missing'
154
+ rack (1.4.5) lib/rack/lint.rb:48:in `_call'
155
+ rack (1.4.5) lib/rack/lint.rb:36:in `call'
156
+ rack (1.4.5) lib/rack/showexceptions.rb:24:in `call'
157
+ rack (1.4.5) lib/rack/commonlogger.rb:33:in `call'
158
+ rack (1.4.5) lib/rack/chunked.rb:43:in `call'
159
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
160
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
161
+ /Users/geordie/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
162
+ /Users/geordie/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
163
+ /Users/geordie/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
164
+
165
+
166
+
167
+
168
+ Started GET "/ojo" for 127.0.0.1 at 2014-10-13 20:42:54 -0700
169
+ Processing by OjoController#index as HTML
170
+ Completed 500 Internal Server Error in 1.4ms
171
+
172
+ NameError (undefined local variable or method `d' for #<OjoController:0x00000101269f60>):
173
+ /Users/geordie/src/gems/ojo/app/controllers/ojo_controller.rb:5:in `block in index'
174
+ /Users/geordie/src/gems/ojo/app/controllers/ojo_controller.rb:5:in `select'
175
+ /Users/geordie/src/gems/ojo/app/controllers/ojo_controller.rb:5:in `index'
176
+ actionpack (3.2.16) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
177
+ actionpack (3.2.16) lib/abstract_controller/base.rb:167:in `process_action'
178
+ actionpack (3.2.16) lib/action_controller/metal/rendering.rb:10:in `process_action'
179
+ actionpack (3.2.16) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
180
+ activesupport (3.2.16) lib/active_support/callbacks.rb:414:in `_run__2458242158774748331__process_action__820881166150797124__callbacks'
181
+ activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `__run_callback'
182
+ activesupport (3.2.16) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
183
+ activesupport (3.2.16) lib/active_support/callbacks.rb:81:in `run_callbacks'
184
+ actionpack (3.2.16) lib/abstract_controller/callbacks.rb:17:in `process_action'
185
+ actionpack (3.2.16) lib/action_controller/metal/rescue.rb:29:in `process_action'
186
+ actionpack (3.2.16) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
187
+ activesupport (3.2.16) lib/active_support/notifications.rb:123:in `block in instrument'
188
+ activesupport (3.2.16) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
189
+ activesupport (3.2.16) lib/active_support/notifications.rb:123:in `instrument'
190
+ actionpack (3.2.16) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
191
+ actionpack (3.2.16) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
192
+ actionpack (3.2.16) lib/abstract_controller/base.rb:121:in `process'
193
+ actionpack (3.2.16) lib/abstract_controller/rendering.rb:45:in `process'
194
+ actionpack (3.2.16) lib/action_controller/metal.rb:203:in `dispatch'
195
+ actionpack (3.2.16) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
196
+ actionpack (3.2.16) lib/action_controller/metal.rb:246:in `block in action'
197
+ actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:73:in `call'
198
+ actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
199
+ actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:36:in `call'
200
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
201
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
202
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
203
+ actionpack (3.2.16) lib/action_dispatch/routing/route_set.rb:608:in `call'
204
+ actionpack (3.2.16) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
205
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
206
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
207
+ actionpack (3.2.16) lib/action_dispatch/middleware/head.rb:14:in `call'
208
+ actionpack (3.2.16) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
209
+ actionpack (3.2.16) lib/action_dispatch/middleware/flash.rb:242:in `call'
210
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
211
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
212
+ actionpack (3.2.16) lib/action_dispatch/middleware/cookies.rb:341:in `call'
213
+ actionpack (3.2.16) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
214
+ activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `_run__2553995625834201740__call__3284594636383933761__callbacks'
215
+ activesupport (3.2.16) lib/active_support/callbacks.rb:405:in `__run_callback'
216
+ activesupport (3.2.16) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
217
+ activesupport (3.2.16) lib/active_support/callbacks.rb:81:in `run_callbacks'
218
+ actionpack (3.2.16) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
219
+ actionpack (3.2.16) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
220
+ actionpack (3.2.16) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
221
+ actionpack (3.2.16) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
222
+ railties (3.2.16) lib/rails/rack/logger.rb:32:in `call_app'
223
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `block in call'
224
+ activesupport (3.2.16) lib/active_support/tagged_logging.rb:22:in `tagged'
225
+ railties (3.2.16) lib/rails/rack/logger.rb:16:in `call'
226
+ actionpack (3.2.16) lib/action_dispatch/middleware/request_id.rb:22:in `call'
227
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
228
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
229
+ activesupport (3.2.16) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
230
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
231
+ actionpack (3.2.16) lib/action_dispatch/middleware/static.rb:63:in `call'
232
+ railties (3.2.16) lib/rails/engine.rb:484:in `call'
233
+ railties (3.2.16) lib/rails/application.rb:231:in `call'
234
+ railties (3.2.16) lib/rails/railtie/configurable.rb:30:in `method_missing'
235
+ rack (1.4.5) lib/rack/lint.rb:48:in `_call'
236
+ rack (1.4.5) lib/rack/lint.rb:36:in `call'
237
+ rack (1.4.5) lib/rack/showexceptions.rb:24:in `call'
238
+ rack (1.4.5) lib/rack/commonlogger.rb:33:in `call'
239
+ rack (1.4.5) lib/rack/chunked.rb:43:in `call'
240
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
241
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
242
+ /Users/geordie/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
243
+ /Users/geordie/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
244
+ /Users/geordie/.rvm/rubies/ruby-2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
245
+
246
+
247
+
248
+
249
+ Started GET "/ojo" for 127.0.0.1 at 2014-10-13 20:43:35 -0700
250
+ Processing by OjoController#index as HTML
251
+ Rendered /Users/geordie/src/gems/ojo/app/views/ojo/index.html.erb within layouts/ojo (0.7ms)
252
+ Completed 200 OK in 5.8ms (Views: 5.6ms)
253
+
254
+
255
+ Started GET "/assets/normalize.css" for 127.0.0.1 at 2014-10-13 20:43:35 -0700
256
+ Served asset /normalize.css - 304 Not Modified (3ms)
257
+
258
+
259
+ Started GET "/assets/ojo.css" for 127.0.0.1 at 2014-10-13 20:43:35 -0700
260
+ Served asset /ojo.css - 304 Not Modified (1ms)