woo 0.1.6 → 0.1.7
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.
- checksums.yaml +4 -4
- data/Rakefile +13 -0
- data/lib/woo/version.rb +1 -1
- data/spec/dummy/log/test.log +272 -432
- data/spec/dummy/tmp/cache/assets/test/sass/5fd3876eecef2e9bd8fc80d4c493f057f354dd8c/_colors.scssc +0 -0
- data/spec/dummy/tmp/cache/assets/test/sass/d7ac028af260026cd3b3bd45cf2361a18ce93f9f/_main.scssc +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/08600075f52af9d468fe34bcea6d0d57 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/1754c677c454f8b81d27324e042b5a65 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/3308159ddc9775ba0f9ec0f6191639cc +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/3cf56fbaeb11a71641cb51665887dd42 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/4ba82a90ac6fb663689e3e8b6195474c +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/554868cceed0ff20b16880175624f733 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/78dea6b195d50673f4f9699a5f7e2ded +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/7dcce2b68cbc289c07b2459d634adb59 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/7f6ea693302218a049b9b1e6ba3431dc +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/84c1be0faecbf40a3afcf6951ee17491 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/94d16f82212c6d4e1c3961162ab39841 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/9640ee5cbc50fdd78aa4e312f3a8ea9e +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/a53116191c95e01103f5c75eccdad41d +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/b676b4e71ea4aba9cb5f900d0069f808 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d3acdb2f7a7f0787aa49cd54287026b6 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d3b8704e383845890a2dffe15df3cd18 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/ecd61bdb5cd6261fc8da8d6c7d35c059 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/f1d877035839e65c2d5425d59e44bb2a +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- metadata +14 -3
- data/lib/tasks/woo_tasks.rake +0 -17
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 170bee29b17ab8526ddfb5b9a80c236c17833448
|
|
4
|
+
data.tar.gz: 2d3af7b7a0f5a1dbec806a8fa5d52bee3ec0e322
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ac9a0d9c3798f6ed76fdc06bc8c9169e3e9fdc97f9bbb4317050e52eb647052c0a8040bda872e39254658a2ab980c55f04e37f487226e61d07736c96be1579eb
|
|
7
|
+
data.tar.gz: 18fbff2d674bfcad50d0c799a5deb8eca0290edf4fc91cc8dcdef6c0e7136bc37ef8087015f00ff55763f65627690c18cfa62e2f10ef2fea9ba160de63e4fd06
|
data/Rakefile
CHANGED
|
@@ -11,3 +11,16 @@ load 'rails/tasks/engine.rake'
|
|
|
11
11
|
Bundler::GemHelper.install_tasks
|
|
12
12
|
|
|
13
13
|
Dir[File.join(File.dirname(__FILE__), 'lib/tasks/**/*.rake')].each {|f| load f }
|
|
14
|
+
|
|
15
|
+
begin
|
|
16
|
+
require 'rspec/core/rake_task'
|
|
17
|
+
|
|
18
|
+
desc "Run all specs in spec directory (excluding plugin specs)"
|
|
19
|
+
RSpec::Core::RakeTask.new(:spec) do |t|
|
|
20
|
+
t.verbose = false
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
task :default => :spec
|
|
24
|
+
rescue LoadError
|
|
25
|
+
puts 'Rspec is, unfortunately, not available. Perhaps add it to your Gemfile?'
|
|
26
|
+
end
|
data/lib/woo/version.rb
CHANGED
data/spec/dummy/log/test.log
CHANGED
|
@@ -1,800 +1,640 @@
|
|
|
1
1
|
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
2
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
2
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:08:10 -0400
|
|
3
3
|
Processing by Woo::StyleguideController#index as HTML
|
|
4
4
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (3.5ms)
|
|
5
5
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
6
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (
|
|
7
|
-
Completed 200 OK in
|
|
8
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
|
9
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
10
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 09:39:58 -0400
|
|
11
|
-
Processing by Woo::StyleguideController#index as HTML
|
|
12
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
13
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
14
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
15
|
-
Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
|
16
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
|
17
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
18
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 09:39:58 -0400
|
|
19
|
-
Processing by Woo::StyleguideController#index as HTML
|
|
20
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
21
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
22
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
23
|
-
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
24
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
|
25
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
26
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 09:39:58 -0400
|
|
27
|
-
Processing by Woo::StyleguideController#index as HTML
|
|
28
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
29
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
30
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
31
|
-
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
|
6
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (9.5ms)
|
|
7
|
+
Completed 200 OK in 975ms (Views: 974.8ms | ActiveRecord: 0.0ms)
|
|
32
8
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
33
9
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
34
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
10
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:08:11 -0400
|
|
35
11
|
Processing by Woo::StyleguideController#index as HTML
|
|
36
12
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
37
13
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
38
14
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
39
|
-
Completed 200 OK in
|
|
15
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
|
40
16
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
41
17
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
42
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
43
|
-
Processing by Woo::StyleguideController#index as HTML
|
|
44
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
45
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
46
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.6ms)
|
|
47
|
-
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
|
48
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
|
49
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
50
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 09:39:58 -0400
|
|
18
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:08:11 -0400
|
|
51
19
|
Processing by Woo::StyleguideController#index as HTML
|
|
52
20
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.2ms)
|
|
53
21
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
54
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (
|
|
55
|
-
Completed 200 OK in
|
|
56
|
-
[1m[35m (0.
|
|
57
|
-
[1m[36m (0.
|
|
58
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
22
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.7ms)
|
|
23
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
|
24
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
25
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
26
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:08:11 -0400
|
|
59
27
|
Processing by Woo::StyleguideController#index as HTML
|
|
60
28
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
61
29
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
62
30
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
63
|
-
Completed 200 OK in 2ms (Views:
|
|
31
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
|
64
32
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
65
33
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
66
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
34
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:08:11 -0400
|
|
67
35
|
Processing by Woo::StyleguideController#index as HTML
|
|
68
36
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
69
37
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
70
38
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
71
|
-
Completed 200 OK in 2ms (Views:
|
|
72
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
|
73
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
74
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 09:39:58 -0400
|
|
75
|
-
Processing by Woo::StyleguideController#index as HTML
|
|
76
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
77
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
78
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.6ms)
|
|
79
|
-
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
|
80
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
|
81
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
82
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 13:24:17 -0400
|
|
83
|
-
Processing by Woo::StyleguideController#index as HTML
|
|
84
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (3.3ms)
|
|
85
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
86
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (9.4ms)
|
|
87
|
-
Completed 200 OK in 415ms (Views: 414.6ms | ActiveRecord: 0.0ms)
|
|
88
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
|
89
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
90
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 13:24:18 -0400
|
|
91
|
-
Processing by Woo::StyleguideController#index as HTML
|
|
92
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
93
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
94
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
95
|
-
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
|
39
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
|
96
40
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
97
41
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
98
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
99
|
-
Processing by Woo::StyleguideController#index as HTML
|
|
100
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
101
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
102
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
103
|
-
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
|
104
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
|
105
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
106
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 13:24:18 -0400
|
|
42
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:08:11 -0400
|
|
107
43
|
Processing by Woo::StyleguideController#index as HTML
|
|
108
44
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
109
45
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
110
46
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
111
|
-
Completed 200 OK in
|
|
112
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
|
113
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
114
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 13:24:18 -0400
|
|
115
|
-
Processing by Woo::StyleguideController#index as HTML
|
|
116
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
117
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
118
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
119
|
-
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
|
120
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
|
121
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
122
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 13:24:18 -0400
|
|
123
|
-
Processing by Woo::StyleguideController#index as HTML
|
|
124
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
125
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
126
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
127
|
-
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
|
47
|
+
Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
|
128
48
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
129
|
-
[1m[36m (0.
|
|
130
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
49
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
50
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:08:11 -0400
|
|
131
51
|
Processing by Woo::StyleguideController#index as HTML
|
|
132
52
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
133
53
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
134
54
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
135
|
-
Completed 200 OK in
|
|
55
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
136
56
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
137
57
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
138
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
58
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:08:11 -0400
|
|
139
59
|
Processing by Woo::StyleguideController#index as HTML
|
|
140
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.
|
|
60
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.2ms)
|
|
141
61
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
142
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
143
|
-
Completed 200 OK in
|
|
62
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.9ms)
|
|
63
|
+
Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
|
|
144
64
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
145
|
-
[1m[36m (0.
|
|
146
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
65
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
66
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:08:11 -0400
|
|
147
67
|
Processing by Woo::StyleguideController#index as HTML
|
|
148
68
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
149
69
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
150
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
151
|
-
Completed 200 OK in 3ms (Views:
|
|
70
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
71
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
|
152
72
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
153
|
-
[1m[36m (0.
|
|
154
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
73
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
74
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:08:11 -0400
|
|
155
75
|
Processing by Woo::StyleguideController#index as HTML
|
|
156
76
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
157
77
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
158
78
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
159
|
-
Completed 200 OK in
|
|
79
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
160
80
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
161
81
|
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
162
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
82
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:13:24 -0400
|
|
163
83
|
Processing by Woo::StyleguideController#index as HTML
|
|
164
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (3.
|
|
84
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (3.9ms)
|
|
165
85
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
166
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (
|
|
167
|
-
Completed 200 OK in
|
|
86
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (18.9ms)
|
|
87
|
+
Completed 200 OK in 104ms (Views: 103.6ms | ActiveRecord: 0.0ms)
|
|
168
88
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
169
89
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
170
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
90
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:13:25 -0400
|
|
171
91
|
Processing by Woo::StyleguideController#index as HTML
|
|
172
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.
|
|
92
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
173
93
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
174
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (
|
|
175
|
-
Completed 200 OK in
|
|
94
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
95
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
176
96
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
177
|
-
[1m[36m (0.
|
|
178
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
97
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
98
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:13:25 -0400
|
|
179
99
|
Processing by Woo::StyleguideController#index as HTML
|
|
180
100
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
181
101
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
182
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
183
|
-
Completed 200 OK in
|
|
102
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.9ms)
|
|
103
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
|
184
104
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
185
|
-
[1m[36m (0.
|
|
186
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
105
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
106
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:13:25 -0400
|
|
187
107
|
Processing by Woo::StyleguideController#index as HTML
|
|
188
108
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
189
109
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
190
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
191
|
-
Completed 200 OK in
|
|
110
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
111
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
|
192
112
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
193
|
-
[1m[36m (0.
|
|
194
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
113
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
114
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:13:25 -0400
|
|
195
115
|
Processing by Woo::StyleguideController#index as HTML
|
|
196
116
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
197
117
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
198
118
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.6ms)
|
|
199
|
-
Completed 200 OK in 5ms (Views: 4.
|
|
119
|
+
Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
|
|
200
120
|
[1m[35m (0.2ms)[0m rollback transaction
|
|
201
121
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
202
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
203
|
-
Processing by Woo::StyleguideController#index as HTML
|
|
204
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
205
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
206
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.7ms)
|
|
207
|
-
Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
|
|
208
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
|
209
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
210
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:39:28 -0400
|
|
211
|
-
Processing by Woo::StyleguideController#index as HTML
|
|
212
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
213
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
214
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.9ms)
|
|
215
|
-
Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
|
216
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
|
217
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
218
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:39:28 -0400
|
|
122
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:13:25 -0400
|
|
219
123
|
Processing by Woo::StyleguideController#index as HTML
|
|
220
124
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
221
125
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
222
126
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
223
|
-
Completed 200 OK in
|
|
127
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
|
224
128
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
225
129
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
226
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
130
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:13:25 -0400
|
|
227
131
|
Processing by Woo::StyleguideController#index as HTML
|
|
228
132
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
229
133
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
230
134
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
231
|
-
Completed 200 OK in
|
|
135
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
|
232
136
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
233
|
-
[1m[36m (0.
|
|
234
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
137
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
138
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:13:25 -0400
|
|
235
139
|
Processing by Woo::StyleguideController#index as HTML
|
|
236
140
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
237
141
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
238
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
239
|
-
Completed 200 OK in
|
|
240
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
|
241
|
-
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
|
242
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:53:00 -0400
|
|
243
|
-
Processing by Woo::StyleguideController#index as HTML
|
|
244
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (3.1ms)
|
|
245
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
246
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (9.8ms)
|
|
247
|
-
Completed 200 OK in 93ms (Views: 92.7ms | ActiveRecord: 0.0ms)
|
|
142
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
143
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
|
248
144
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
249
145
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
250
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
146
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:13:25 -0400
|
|
251
147
|
Processing by Woo::StyleguideController#index as HTML
|
|
252
148
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
253
149
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
254
150
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
255
|
-
Completed 200 OK in
|
|
151
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
|
256
152
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
257
153
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
258
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
154
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:13:25 -0400
|
|
259
155
|
Processing by Woo::StyleguideController#index as HTML
|
|
260
156
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
261
157
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
262
158
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
263
|
-
Completed 200 OK in
|
|
159
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
|
264
160
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
265
|
-
[1m[36m (0.
|
|
266
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
161
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
162
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:32:07 -0400
|
|
267
163
|
Processing by Woo::StyleguideController#index as HTML
|
|
268
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (
|
|
164
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (4.0ms)
|
|
269
165
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
270
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (
|
|
271
|
-
Completed 200 OK in
|
|
166
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (10.5ms)
|
|
167
|
+
Completed 200 OK in 85ms (Views: 85.1ms | ActiveRecord: 0.0ms)
|
|
272
168
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
273
|
-
[1m[36m (0.
|
|
274
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
169
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
170
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:32:07 -0400
|
|
275
171
|
Processing by Woo::StyleguideController#index as HTML
|
|
276
172
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
277
173
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
278
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
279
|
-
Completed 200 OK in
|
|
174
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
175
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
280
176
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
281
177
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
282
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
178
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:32:07 -0400
|
|
283
179
|
Processing by Woo::StyleguideController#index as HTML
|
|
284
180
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
285
181
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
286
182
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
287
|
-
Completed 200 OK in
|
|
288
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
|
289
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
290
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:53:00 -0400
|
|
291
|
-
Processing by Woo::StyleguideController#index as HTML
|
|
292
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.2ms)
|
|
293
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
294
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.9ms)
|
|
295
|
-
Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.0ms)
|
|
183
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
296
184
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
297
185
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
298
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
186
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:32:07 -0400
|
|
299
187
|
Processing by Woo::StyleguideController#index as HTML
|
|
300
188
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
301
189
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
302
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
303
|
-
Completed 200 OK in
|
|
190
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
191
|
+
Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
|
304
192
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
305
|
-
[1m[36m (0.
|
|
306
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
193
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
194
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:32:07 -0400
|
|
307
195
|
Processing by Woo::StyleguideController#index as HTML
|
|
308
196
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
309
197
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
310
198
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
311
|
-
Completed 200 OK in
|
|
199
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
|
312
200
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
313
201
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
314
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
202
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:32:07 -0400
|
|
315
203
|
Processing by Woo::StyleguideController#index as HTML
|
|
316
204
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
317
205
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
318
206
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
319
|
-
Completed 200 OK in
|
|
320
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
|
321
|
-
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
|
322
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:14 -0400
|
|
323
|
-
Processing by Woo::StyleguideController#index as HTML
|
|
324
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (7.5ms)
|
|
325
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
326
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (19.0ms)
|
|
327
|
-
Completed 200 OK in 129ms (Views: 128.6ms | ActiveRecord: 0.0ms)
|
|
207
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
|
328
208
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
329
209
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
330
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
210
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:32:07 -0400
|
|
331
211
|
Processing by Woo::StyleguideController#index as HTML
|
|
332
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.
|
|
212
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.2ms)
|
|
333
213
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
334
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (
|
|
214
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (1.0ms)
|
|
335
215
|
Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
|
336
216
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
337
|
-
[1m[36m (0.
|
|
338
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
339
|
-
Processing by Woo::StyleguideController#index as HTML
|
|
340
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
341
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
342
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
343
|
-
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
|
344
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
|
345
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
346
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:14 -0400
|
|
217
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
218
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:32:07 -0400
|
|
347
219
|
Processing by Woo::StyleguideController#index as HTML
|
|
348
220
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
349
221
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
350
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
351
|
-
Completed 200 OK in
|
|
222
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
223
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
352
224
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
353
|
-
[1m[36m (0.
|
|
354
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
225
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
226
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:32:07 -0400
|
|
355
227
|
Processing by Woo::StyleguideController#index as HTML
|
|
356
228
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
357
229
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
358
230
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
359
|
-
Completed 200 OK in
|
|
231
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
360
232
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
361
233
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
362
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
234
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:32:07 -0400
|
|
363
235
|
Processing by Woo::StyleguideController#index as HTML
|
|
364
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.
|
|
236
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
365
237
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
366
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (
|
|
367
|
-
Completed 200 OK in
|
|
238
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
239
|
+
Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
|
368
240
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
369
|
-
[1m[36m (0.
|
|
370
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
241
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
|
242
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:33:12 -0400
|
|
371
243
|
Processing by Woo::StyleguideController#index as HTML
|
|
372
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (
|
|
373
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.
|
|
374
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (
|
|
375
|
-
Completed 200 OK in
|
|
244
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (4.2ms)
|
|
245
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.1ms)
|
|
246
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (10.9ms)
|
|
247
|
+
Completed 200 OK in 87ms (Views: 86.3ms | ActiveRecord: 0.0ms)
|
|
376
248
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
377
249
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
378
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
250
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:33:12 -0400
|
|
379
251
|
Processing by Woo::StyleguideController#index as HTML
|
|
380
252
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
381
253
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
382
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
383
|
-
Completed 200 OK in
|
|
254
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
255
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
|
384
256
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
385
257
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
386
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
258
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:33:12 -0400
|
|
387
259
|
Processing by Woo::StyleguideController#index as HTML
|
|
388
260
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
389
261
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
390
262
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
391
|
-
Completed 200 OK in
|
|
392
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
|
393
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
394
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:14 -0400
|
|
395
|
-
Processing by Woo::StyleguideController#index as HTML
|
|
396
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.4ms)
|
|
397
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
398
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (2.9ms)
|
|
399
|
-
Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.0ms)
|
|
263
|
+
Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
|
400
264
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
401
|
-
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
|
402
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:36 -0400
|
|
403
|
-
Processing by Woo::StyleguideController#index as HTML
|
|
404
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (4.8ms)
|
|
405
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
406
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (20.2ms)
|
|
407
|
-
Completed 200 OK in 122ms (Views: 121.5ms | ActiveRecord: 0.0ms)
|
|
408
|
-
[1m[35m (0.2ms)[0m rollback transaction
|
|
409
265
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
410
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
266
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:33:12 -0400
|
|
411
267
|
Processing by Woo::StyleguideController#index as HTML
|
|
412
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.
|
|
268
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.2ms)
|
|
413
269
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
414
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
415
|
-
Completed 200 OK in 4ms (Views:
|
|
270
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.9ms)
|
|
271
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
|
416
272
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
417
273
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
418
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
419
|
-
Processing by Woo::StyleguideController#index as HTML
|
|
420
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
421
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
422
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
423
|
-
Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)
|
|
424
|
-
[1m[35m (0.3ms)[0m rollback transaction
|
|
425
|
-
[1m[36m (1.2ms)[0m [1mbegin transaction[0m
|
|
426
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:37 -0400
|
|
274
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:33:12 -0400
|
|
427
275
|
Processing by Woo::StyleguideController#index as HTML
|
|
428
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.
|
|
276
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.2ms)
|
|
429
277
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
430
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (1.
|
|
431
|
-
Completed 200 OK in
|
|
278
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (1.3ms)
|
|
279
|
+
Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
|
|
432
280
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
433
281
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
434
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
282
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:33:12 -0400
|
|
435
283
|
Processing by Woo::StyleguideController#index as HTML
|
|
436
284
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
437
285
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
438
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (
|
|
439
|
-
Completed 200 OK in
|
|
286
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.6ms)
|
|
287
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
|
440
288
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
441
|
-
[1m[36m (0.
|
|
442
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
289
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
290
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:33:12 -0400
|
|
443
291
|
Processing by Woo::StyleguideController#index as HTML
|
|
444
292
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
445
293
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
446
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
447
|
-
Completed 200 OK in
|
|
294
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
295
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
|
448
296
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
449
297
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
450
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
298
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:33:12 -0400
|
|
451
299
|
Processing by Woo::StyleguideController#index as HTML
|
|
452
300
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
453
301
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
454
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
455
|
-
Completed 200 OK in
|
|
302
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.8ms)
|
|
303
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
|
456
304
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
457
305
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
458
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
306
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:33:12 -0400
|
|
459
307
|
Processing by Woo::StyleguideController#index as HTML
|
|
460
308
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.2ms)
|
|
461
309
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
462
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (1.
|
|
463
|
-
Completed 200 OK in
|
|
310
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (1.0ms)
|
|
311
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
|
|
464
312
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
465
313
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
466
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
314
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:33:12 -0400
|
|
467
315
|
Processing by Woo::StyleguideController#index as HTML
|
|
468
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.
|
|
316
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.2ms)
|
|
469
317
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
470
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
471
|
-
Completed 200 OK in 5ms (Views: 4.
|
|
318
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.9ms)
|
|
319
|
+
Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
|
472
320
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
473
|
-
[1m[36m (0.
|
|
474
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
321
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
|
322
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:34:56 -0400
|
|
475
323
|
Processing by Woo::StyleguideController#index as HTML
|
|
476
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (
|
|
324
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (3.0ms)
|
|
477
325
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
478
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (
|
|
479
|
-
Completed 200 OK in
|
|
326
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (8.6ms)
|
|
327
|
+
Completed 200 OK in 126ms (Views: 125.2ms | ActiveRecord: 0.0ms)
|
|
480
328
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
481
|
-
[1m[36m (0.
|
|
482
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
329
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
330
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:34:56 -0400
|
|
483
331
|
Processing by Woo::StyleguideController#index as HTML
|
|
484
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (
|
|
332
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
485
333
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
486
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (
|
|
487
|
-
Completed 200 OK in
|
|
488
|
-
[1m[35m (0.
|
|
334
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
335
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
|
336
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
489
337
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
490
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
338
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:34:56 -0400
|
|
491
339
|
Processing by Woo::StyleguideController#index as HTML
|
|
492
340
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
493
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.
|
|
494
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
495
|
-
Completed 200 OK in
|
|
341
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
342
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
343
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
496
344
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
497
345
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
498
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
346
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:34:56 -0400
|
|
499
347
|
Processing by Woo::StyleguideController#index as HTML
|
|
500
348
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
501
349
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
502
350
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
503
|
-
Completed 200 OK in
|
|
351
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
504
352
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
505
353
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
506
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
354
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:34:56 -0400
|
|
507
355
|
Processing by Woo::StyleguideController#index as HTML
|
|
508
356
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
509
357
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
510
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
511
|
-
Completed 200 OK in
|
|
358
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
359
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
512
360
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
513
|
-
[1m[36m (0.
|
|
514
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
361
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
362
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:34:56 -0400
|
|
515
363
|
Processing by Woo::StyleguideController#index as HTML
|
|
516
364
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
517
365
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
518
366
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
519
|
-
Completed 200 OK in
|
|
520
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
|
521
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
522
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:48 -0400
|
|
523
|
-
Processing by Woo::StyleguideController#index as HTML
|
|
524
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.2ms)
|
|
525
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
526
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (1.5ms)
|
|
527
|
-
Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
|
|
367
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
528
368
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
529
369
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
530
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
370
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:34:56 -0400
|
|
531
371
|
Processing by Woo::StyleguideController#index as HTML
|
|
532
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.
|
|
372
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
533
373
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
534
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (
|
|
535
|
-
Completed 200 OK in
|
|
374
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.7ms)
|
|
375
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
|
536
376
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
537
377
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
538
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
378
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:34:56 -0400
|
|
539
379
|
Processing by Woo::StyleguideController#index as HTML
|
|
540
380
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
541
381
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
542
382
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
543
|
-
Completed 200 OK in 4ms (Views: 3.
|
|
544
|
-
[1m[35m (0.
|
|
383
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
|
384
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
545
385
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
546
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
386
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:34:56 -0400
|
|
547
387
|
Processing by Woo::StyleguideController#index as HTML
|
|
548
388
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
549
389
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
550
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
551
|
-
Completed 200 OK in
|
|
390
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.7ms)
|
|
391
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
|
552
392
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
553
|
-
[1m[36m (0.
|
|
554
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
393
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
394
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:34:56 -0400
|
|
555
395
|
Processing by Woo::StyleguideController#index as HTML
|
|
556
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.
|
|
396
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
557
397
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
558
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (
|
|
559
|
-
Completed 200 OK in
|
|
398
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.7ms)
|
|
399
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
|
560
400
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
561
|
-
[1m[36m (0.
|
|
562
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
401
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
|
402
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:58:58 -0400
|
|
563
403
|
Processing by Woo::StyleguideController#index as HTML
|
|
564
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (3.
|
|
404
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (3.2ms)
|
|
565
405
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
566
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (
|
|
567
|
-
Completed 200 OK in
|
|
406
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (10.1ms)
|
|
407
|
+
Completed 200 OK in 89ms (Views: 89.0ms | ActiveRecord: 0.0ms)
|
|
568
408
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
569
409
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
570
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
410
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:58:58 -0400
|
|
571
411
|
Processing by Woo::StyleguideController#index as HTML
|
|
572
412
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
573
413
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
574
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
575
|
-
Completed 200 OK in
|
|
414
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
415
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
|
576
416
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
577
|
-
[1m[36m (0.
|
|
578
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
417
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
418
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:58:58 -0400
|
|
579
419
|
Processing by Woo::StyleguideController#index as HTML
|
|
580
420
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
581
421
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
582
422
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
583
|
-
Completed 200 OK in
|
|
423
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
|
584
424
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
585
425
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
586
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
426
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:58:58 -0400
|
|
587
427
|
Processing by Woo::StyleguideController#index as HTML
|
|
588
428
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
589
429
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
590
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
591
|
-
Completed 200 OK in
|
|
430
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
431
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
|
592
432
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
593
433
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
594
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
434
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:58:58 -0400
|
|
595
435
|
Processing by Woo::StyleguideController#index as HTML
|
|
596
436
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
597
437
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
598
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
438
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
599
439
|
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
|
600
440
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
601
|
-
[1m[36m (0.
|
|
602
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
441
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
442
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:58:58 -0400
|
|
603
443
|
Processing by Woo::StyleguideController#index as HTML
|
|
604
444
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
605
445
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
606
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
607
|
-
Completed 200 OK in
|
|
446
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.8ms)
|
|
447
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
|
608
448
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
609
|
-
[1m[36m (0.
|
|
610
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
449
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
450
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:58:58 -0400
|
|
611
451
|
Processing by Woo::StyleguideController#index as HTML
|
|
612
452
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
613
453
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
614
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
615
|
-
Completed 200 OK in
|
|
454
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
455
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
|
616
456
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
617
457
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
618
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
458
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:58:58 -0400
|
|
619
459
|
Processing by Woo::StyleguideController#index as HTML
|
|
620
460
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
621
461
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
622
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
623
|
-
Completed 200 OK in
|
|
462
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.7ms)
|
|
463
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
|
624
464
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
625
465
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
626
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
466
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:58:58 -0400
|
|
627
467
|
Processing by Woo::StyleguideController#index as HTML
|
|
628
468
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
629
469
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
630
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
631
|
-
Completed 200 OK in
|
|
632
|
-
[1m[35m (0.
|
|
633
|
-
[1m[36m (0.
|
|
634
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
470
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.8ms)
|
|
471
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
|
472
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
473
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
474
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 10:58:58 -0400
|
|
635
475
|
Processing by Woo::StyleguideController#index as HTML
|
|
636
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.
|
|
476
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.3ms)
|
|
637
477
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
638
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (
|
|
639
|
-
Completed 200 OK in
|
|
478
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (1.5ms)
|
|
479
|
+
Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.0ms)
|
|
640
480
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
641
|
-
[1m[36m (0.
|
|
642
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
481
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
482
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 11:14:20 -0400
|
|
643
483
|
Processing by Woo::StyleguideController#index as HTML
|
|
644
484
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (3.1ms)
|
|
645
485
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
646
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (
|
|
647
|
-
Completed 200 OK in
|
|
486
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (14.1ms)
|
|
487
|
+
Completed 200 OK in 106ms (Views: 105.5ms | ActiveRecord: 0.0ms)
|
|
648
488
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
649
|
-
[1m[36m (0.
|
|
650
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
489
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
490
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 11:14:20 -0400
|
|
651
491
|
Processing by Woo::StyleguideController#index as HTML
|
|
652
492
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
653
493
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
654
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
655
|
-
Completed 200 OK in
|
|
494
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.6ms)
|
|
495
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
|
656
496
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
657
497
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
658
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
498
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 11:14:20 -0400
|
|
659
499
|
Processing by Woo::StyleguideController#index as HTML
|
|
660
500
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
661
501
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
662
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
663
|
-
Completed 200 OK in
|
|
502
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
503
|
+
Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
|
664
504
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
665
505
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
666
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
506
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 11:14:20 -0400
|
|
667
507
|
Processing by Woo::StyleguideController#index as HTML
|
|
668
508
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
669
509
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
670
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
671
|
-
Completed 200 OK in 4ms (Views: 3.
|
|
510
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.8ms)
|
|
511
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
|
672
512
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
673
513
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
674
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
514
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 11:14:20 -0400
|
|
675
515
|
Processing by Woo::StyleguideController#index as HTML
|
|
676
516
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
677
517
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
678
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
679
|
-
Completed 200 OK in
|
|
518
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
519
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
|
680
520
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
681
521
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
682
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
522
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 11:14:20 -0400
|
|
683
523
|
Processing by Woo::StyleguideController#index as HTML
|
|
684
524
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
685
525
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
686
526
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.7ms)
|
|
687
|
-
Completed 200 OK in
|
|
527
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
|
688
528
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
689
529
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
690
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
530
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 11:14:20 -0400
|
|
691
531
|
Processing by Woo::StyleguideController#index as HTML
|
|
692
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.
|
|
532
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
693
533
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
694
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
695
|
-
Completed 200 OK in
|
|
534
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.6ms)
|
|
535
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
|
696
536
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
697
537
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
698
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
538
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 11:14:20 -0400
|
|
699
539
|
Processing by Woo::StyleguideController#index as HTML
|
|
700
540
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
701
541
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
702
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
703
|
-
Completed 200 OK in
|
|
542
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
543
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
|
704
544
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
705
545
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
706
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
546
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 11:14:20 -0400
|
|
707
547
|
Processing by Woo::StyleguideController#index as HTML
|
|
708
548
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
709
549
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
710
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
711
|
-
Completed 200 OK in
|
|
550
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
551
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
|
712
552
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
713
|
-
[1m[36m (0.
|
|
714
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
553
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
554
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 11:14:20 -0400
|
|
715
555
|
Processing by Woo::StyleguideController#index as HTML
|
|
716
556
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
717
557
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
718
558
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
719
|
-
Completed 200 OK in
|
|
559
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
|
720
560
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
721
|
-
[1m[36m (0.
|
|
722
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
561
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
|
562
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 11:15:58 -0400
|
|
723
563
|
Processing by Woo::StyleguideController#index as HTML
|
|
724
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (3.
|
|
564
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (3.0ms)
|
|
725
565
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
726
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (
|
|
727
|
-
Completed 200 OK in
|
|
566
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (7.0ms)
|
|
567
|
+
Completed 200 OK in 62ms (Views: 62.0ms | ActiveRecord: 0.0ms)
|
|
728
568
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
729
|
-
[1m[36m (0.
|
|
730
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
569
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
570
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 11:15:58 -0400
|
|
731
571
|
Processing by Woo::StyleguideController#index as HTML
|
|
732
572
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
733
573
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
734
574
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
735
|
-
Completed 200 OK in
|
|
575
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
736
576
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
737
|
-
[1m[36m (0.
|
|
738
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
577
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
578
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 11:15:58 -0400
|
|
739
579
|
Processing by Woo::StyleguideController#index as HTML
|
|
740
580
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
741
581
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
742
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
743
|
-
Completed 200 OK in
|
|
582
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
583
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
744
584
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
745
|
-
[1m[36m (0.
|
|
746
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
585
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
586
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 11:15:58 -0400
|
|
747
587
|
Processing by Woo::StyleguideController#index as HTML
|
|
748
588
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
749
589
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
750
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
751
|
-
Completed 200 OK in
|
|
590
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
591
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
752
592
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
753
593
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
754
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
594
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 11:15:58 -0400
|
|
755
595
|
Processing by Woo::StyleguideController#index as HTML
|
|
756
596
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
757
597
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
758
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
759
|
-
Completed 200 OK in
|
|
598
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
599
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
760
600
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
761
601
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
762
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
602
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 11:15:58 -0400
|
|
763
603
|
Processing by Woo::StyleguideController#index as HTML
|
|
764
604
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
765
605
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
766
606
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
|
767
|
-
Completed 200 OK in
|
|
607
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
|
768
608
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
769
609
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
770
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
610
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 11:15:58 -0400
|
|
771
611
|
Processing by Woo::StyleguideController#index as HTML
|
|
772
612
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
773
613
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
774
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
775
|
-
Completed 200 OK in
|
|
614
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
615
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
|
776
616
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
777
|
-
[1m[36m (0.
|
|
778
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
617
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
618
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 11:15:58 -0400
|
|
779
619
|
Processing by Woo::StyleguideController#index as HTML
|
|
780
620
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
781
621
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
782
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
783
|
-
Completed 200 OK in
|
|
622
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
623
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
|
784
624
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
785
|
-
[1m[36m (0.
|
|
786
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
625
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
626
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 11:15:58 -0400
|
|
787
627
|
Processing by Woo::StyleguideController#index as HTML
|
|
788
628
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
789
629
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
790
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
791
|
-
Completed 200 OK in
|
|
630
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
631
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
|
792
632
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
793
|
-
[1m[36m (0.
|
|
794
|
-
Started GET "/styleguide" for 127.0.0.1 at 2014-10-
|
|
633
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
634
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-16 11:15:58 -0400
|
|
795
635
|
Processing by Woo::StyleguideController#index as HTML
|
|
796
636
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
|
797
637
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
|
798
|
-
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.
|
|
799
|
-
Completed 200 OK in
|
|
638
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
|
639
|
+
Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
|
800
640
|
[1m[35m (0.1ms)[0m rollback transaction
|