woo 0.1.0.pre1 → 0.1.0
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/README.md +40 -0
- data/Rakefile +1 -7
- data/app/assets/stylesheets/woo/mixins/_color-block.scss +1 -1
- data/app/assets/stylesheets/woo/partials/_main.scss +6 -6
- data/lib/tasks/woo_tasks.rake +13 -0
- data/lib/woo/version.rb +1 -1
- data/spec/dummy/log/test.log +720 -0
- data/spec/dummy/tmp/cache/assets/test/sass/d7ac028af260026cd3b3bd45cf2361a18ce93f9f/_main.scssc +0 -0
- data/spec/dummy/tmp/cache/assets/test/sass/e2ce3019c46b9c7027751df11f2882a950935992/_color-block.scssc +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/3cf56fbaeb11a71641cb51665887dd42 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/ecd61bdb5cd6261fc8da8d6c7d35c059 +0 -0
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 210d61a1a36a8b9acc5000ee35d3059a4633d981
|
4
|
+
data.tar.gz: 77a25bc48c54e9fc159da37c40f556e3d5e2926c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 33036293a1c3957ad73d19add71855e762cc136c91306d4d53459a0d3cfa658a72fc88e9121ee38646652742f2aeff9510a48155fef619add4b37937fd3715b4
|
7
|
+
data.tar.gz: d85a8336bc9956d07c45a17b49747f16dbb2e3b0b157db70f0d9b5dae3167307764aed4355b56b14e2e36a881dd028cdd671c676531796200ea744b9ce3c599d
|
data/README.md
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
# Woo
|
2
|
+
[](https://travis-ci.org/adorableio/woo)
|
3
|
+
|
4
|
+
The Woo stylguide integrates with your Rails app, using your existing css.
|
5
|
+
|
6
|
+
## Setup
|
7
|
+
|
8
|
+
### Add the Gem
|
9
|
+
|
10
|
+
```ruby
|
11
|
+
# Gemfile
|
12
|
+
gem 'woo'
|
13
|
+
```
|
14
|
+
|
15
|
+
### Mount the Woo Engine
|
16
|
+
|
17
|
+
```ruby
|
18
|
+
# config/routes.rb
|
19
|
+
mount Woo::Engine, at: '/styleguide'
|
20
|
+
```
|
21
|
+
|
22
|
+
## Generators
|
23
|
+
|
24
|
+
Woo features 2 generators to create views used within the styleguide.
|
25
|
+
|
26
|
+
### Pages
|
27
|
+
Creates app/views/styleguide/DIRECTORY/NAME.html.haml
|
28
|
+
If <DIRECTORY> is not specified, it will default to 'pages'
|
29
|
+
|
30
|
+
```
|
31
|
+
rails generate woo:page [DIRECTORY/]NAME
|
32
|
+
```
|
33
|
+
|
34
|
+
### UI Elements
|
35
|
+
Creates app/views/styleguide/ui_elements/_NAME.html.haml
|
36
|
+
ui_elements are rendered as partials
|
37
|
+
|
38
|
+
```
|
39
|
+
rails generate styleguide:ui_element NAME
|
40
|
+
```
|
data/Rakefile
CHANGED
@@ -10,10 +10,4 @@ load 'rails/tasks/engine.rake'
|
|
10
10
|
|
11
11
|
Bundler::GemHelper.install_tasks
|
12
12
|
|
13
|
-
Dir[File.join(File.dirname(__FILE__), 'tasks/**/*.rake')].each {|f| load f }
|
14
|
-
|
15
|
-
require 'rspec/core'
|
16
|
-
require 'rspec/core/rake_task'
|
17
|
-
|
18
|
-
desc "Run all specs in spec directory (excluding plugin specs)"
|
19
|
-
task default: :spec
|
13
|
+
Dir[File.join(File.dirname(__FILE__), 'lib/tasks/**/*.rake')].each {|f| load f }
|
@@ -26,7 +26,7 @@ $notes-background-color: $white;
|
|
26
26
|
top: 0;
|
27
27
|
width: 300px;
|
28
28
|
|
29
|
-
a {
|
29
|
+
a { box-shadow: 0 1px 0 0 $black; }
|
30
30
|
|
31
31
|
.menu { @include inline-icon('close'); }
|
32
32
|
.nav-item { opacity: 1; }
|
@@ -66,7 +66,7 @@ $notes-background-color: $white;
|
|
66
66
|
z-index: 1000;
|
67
67
|
span { display: none; }
|
68
68
|
|
69
|
-
&:hover {
|
69
|
+
&:hover { box-shadow: none; }
|
70
70
|
}
|
71
71
|
|
72
72
|
.nav-item {
|
@@ -111,7 +111,7 @@ $notes-background-color: $white;
|
|
111
111
|
|
112
112
|
a {
|
113
113
|
@include transition(all .3s ease);
|
114
|
-
|
114
|
+
box-shadow: 0 1px 0 0 transparent;
|
115
115
|
color: $nav-link-color;
|
116
116
|
font-family: $header-font;
|
117
117
|
font-size: 1em;
|
@@ -139,7 +139,7 @@ $notes-background-color: $white;
|
|
139
139
|
padding-left: 45px;
|
140
140
|
position: relative;
|
141
141
|
&:before {
|
142
|
-
|
142
|
+
box-shadow: inset 0 0 0 1px $nav-link-hr-color;
|
143
143
|
border-radius: 1000px;
|
144
144
|
left: 25px;
|
145
145
|
position: absolute;
|
@@ -224,7 +224,7 @@ $notes-background-color: $white;
|
|
224
224
|
padding: 4em;
|
225
225
|
}
|
226
226
|
.notes-title {
|
227
|
-
|
227
|
+
box-shadow: 0 1px 0 0 rgba($black, .08);
|
228
228
|
color: rgba($black, .35);
|
229
229
|
font-size: rem-calc(14);
|
230
230
|
font-weight: 100;
|
@@ -273,7 +273,7 @@ $notes-background-color: $white;
|
|
273
273
|
|
274
274
|
+ pre { display: none; }
|
275
275
|
+ pre code {
|
276
|
-
|
276
|
+
box-shadow: inset 0 -20px 0 #fafaff;
|
277
277
|
background-color: #f3f3fa;
|
278
278
|
font-size: 14px;
|
279
279
|
padding: 4em 20px 4.6em;
|
data/lib/tasks/woo_tasks.rake
CHANGED
@@ -2,3 +2,16 @@
|
|
2
2
|
# task :styleguide do
|
3
3
|
# # Task goes here
|
4
4
|
# end
|
5
|
+
|
6
|
+
begin
|
7
|
+
require 'rspec/core/rake_task'
|
8
|
+
|
9
|
+
desc 'Run all the tests for Woo!'
|
10
|
+
RSpec::Core::RakeTask.new(:spec) do |t|
|
11
|
+
t.verbose = false
|
12
|
+
end
|
13
|
+
|
14
|
+
task :default => :spec
|
15
|
+
rescue LoadError
|
16
|
+
# no rspec available
|
17
|
+
end
|
data/lib/woo/version.rb
CHANGED
data/spec/dummy/log/test.log
CHANGED
@@ -78,3 +78,723 @@ Processing by Woo::StyleguideController#index as HTML
|
|
78
78
|
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.6ms)
|
79
79
|
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
80
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)
|
96
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
97
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
98
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 13:24:18 -0400
|
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
|
107
|
+
Processing by Woo::StyleguideController#index as HTML
|
108
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
109
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
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 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
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)
|
128
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
129
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
130
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 13:24:18 -0400
|
131
|
+
Processing by Woo::StyleguideController#index as HTML
|
132
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
133
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
134
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
135
|
+
Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
136
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
137
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
138
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 13:24:18 -0400
|
139
|
+
Processing by Woo::StyleguideController#index as HTML
|
140
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
141
|
+
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.4ms)
|
143
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
144
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
145
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
146
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 13:24:18 -0400
|
147
|
+
Processing by Woo::StyleguideController#index as HTML
|
148
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
149
|
+
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.4ms)
|
151
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
152
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
153
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
154
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 13:24:18 -0400
|
155
|
+
Processing by Woo::StyleguideController#index as HTML
|
156
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
157
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
158
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
159
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
160
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
161
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
162
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:39:28 -0400
|
163
|
+
Processing by Woo::StyleguideController#index as HTML
|
164
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (3.0ms)
|
165
|
+
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 (7.8ms)
|
167
|
+
Completed 200 OK in 74ms (Views: 74.1ms | ActiveRecord: 0.0ms)
|
168
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
169
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
170
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:39:28 -0400
|
171
|
+
Processing by Woo::StyleguideController#index as HTML
|
172
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.2ms)
|
173
|
+
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 (1.1ms)
|
175
|
+
Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
|
176
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
177
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
178
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:39:28 -0400
|
179
|
+
Processing by Woo::StyleguideController#index as HTML
|
180
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
181
|
+
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.4ms)
|
183
|
+
Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
184
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
185
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
186
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:39:28 -0400
|
187
|
+
Processing by Woo::StyleguideController#index as HTML
|
188
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
189
|
+
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.5ms)
|
191
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
192
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
193
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
194
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:39:28 -0400
|
195
|
+
Processing by Woo::StyleguideController#index as HTML
|
196
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
197
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
198
|
+
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.5ms | ActiveRecord: 0.0ms)
|
200
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
201
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
202
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:39:28 -0400
|
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
|
219
|
+
Processing by Woo::StyleguideController#index as HTML
|
220
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
221
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
222
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
223
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
224
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
225
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
226
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:39:28 -0400
|
227
|
+
Processing by Woo::StyleguideController#index as HTML
|
228
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
229
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
230
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
231
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
232
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
233
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
234
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:39:28 -0400
|
235
|
+
Processing by Woo::StyleguideController#index as HTML
|
236
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
237
|
+
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.4ms)
|
239
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
|
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)
|
248
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
249
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
250
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:53:00 -0400
|
251
|
+
Processing by Woo::StyleguideController#index as HTML
|
252
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
253
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
254
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
255
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
256
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
257
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
258
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:53:00 -0400
|
259
|
+
Processing by Woo::StyleguideController#index as HTML
|
260
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
261
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
262
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
263
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
264
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
265
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
266
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:53:00 -0400
|
267
|
+
Processing by Woo::StyleguideController#index as HTML
|
268
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
269
|
+
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 (0.6ms)
|
271
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
272
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
273
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
274
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:53:00 -0400
|
275
|
+
Processing by Woo::StyleguideController#index as HTML
|
276
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
277
|
+
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.4ms)
|
279
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
280
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
281
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
282
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:53:00 -0400
|
283
|
+
Processing by Woo::StyleguideController#index as HTML
|
284
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
285
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
286
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
287
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
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)
|
296
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
297
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
298
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:53:01 -0400
|
299
|
+
Processing by Woo::StyleguideController#index as HTML
|
300
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
301
|
+
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.8ms)
|
303
|
+
Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
304
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
305
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
306
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:53:01 -0400
|
307
|
+
Processing by Woo::StyleguideController#index as HTML
|
308
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
309
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
310
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
311
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
312
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
313
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
314
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:53:01 -0400
|
315
|
+
Processing by Woo::StyleguideController#index as HTML
|
316
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
317
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
318
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
319
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
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)
|
328
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
329
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
330
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:14 -0400
|
331
|
+
Processing by Woo::StyleguideController#index as HTML
|
332
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
333
|
+
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 (0.7ms)
|
335
|
+
Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
336
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
337
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
338
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:14 -0400
|
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
|
347
|
+
Processing by Woo::StyleguideController#index as HTML
|
348
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
349
|
+
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.4ms)
|
351
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
352
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
353
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
354
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:14 -0400
|
355
|
+
Processing by Woo::StyleguideController#index as HTML
|
356
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
357
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
358
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
359
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
360
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
361
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
362
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:14 -0400
|
363
|
+
Processing by Woo::StyleguideController#index as HTML
|
364
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.4ms)
|
365
|
+
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 (2.0ms)
|
367
|
+
Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.0ms)
|
368
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
369
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
370
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:14 -0400
|
371
|
+
Processing by Woo::StyleguideController#index as HTML
|
372
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.2ms)
|
373
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
374
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.8ms)
|
375
|
+
Completed 200 OK in 8ms (Views: 7.9ms | ActiveRecord: 0.0ms)
|
376
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
377
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
378
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:14 -0400
|
379
|
+
Processing by Woo::StyleguideController#index as HTML
|
380
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
381
|
+
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.8ms)
|
383
|
+
Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
|
384
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
385
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
386
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:14 -0400
|
387
|
+
Processing by Woo::StyleguideController#index as HTML
|
388
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
389
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
390
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
391
|
+
Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
|
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)
|
400
|
+
[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
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
410
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:37 -0400
|
411
|
+
Processing by Woo::StyleguideController#index as HTML
|
412
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
413
|
+
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.5ms)
|
415
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
416
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
417
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
418
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:37 -0400
|
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
|
427
|
+
Processing by Woo::StyleguideController#index as HTML
|
428
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.3ms)
|
429
|
+
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.1ms)
|
431
|
+
Completed 200 OK in 18ms (Views: 5.4ms | ActiveRecord: 0.0ms)
|
432
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
433
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
434
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:37 -0400
|
435
|
+
Processing by Woo::StyleguideController#index as HTML
|
436
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
437
|
+
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 (1.0ms)
|
439
|
+
Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
|
440
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
441
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
442
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:37 -0400
|
443
|
+
Processing by Woo::StyleguideController#index as HTML
|
444
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
445
|
+
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.5ms)
|
447
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
448
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
449
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
450
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:37 -0400
|
451
|
+
Processing by Woo::StyleguideController#index as HTML
|
452
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
453
|
+
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.7ms)
|
455
|
+
Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
456
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
457
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
458
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:37 -0400
|
459
|
+
Processing by Woo::StyleguideController#index as HTML
|
460
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.2ms)
|
461
|
+
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.4ms)
|
463
|
+
Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
|
464
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
465
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
466
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:37 -0400
|
467
|
+
Processing by Woo::StyleguideController#index as HTML
|
468
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
469
|
+
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.4ms)
|
471
|
+
Completed 200 OK in 5ms (Views: 4.9ms | 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-01 14:58:37 -0400
|
475
|
+
Processing by Woo::StyleguideController#index as HTML
|
476
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.2ms)
|
477
|
+
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 (1.1ms)
|
479
|
+
Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
|
480
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
481
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
482
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:48 -0400
|
483
|
+
Processing by Woo::StyleguideController#index as HTML
|
484
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (5.1ms)
|
485
|
+
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 (12.0ms)
|
487
|
+
Completed 200 OK in 114ms (Views: 113.5ms | ActiveRecord: 0.0ms)
|
488
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
489
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
490
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:48 -0400
|
491
|
+
Processing by Woo::StyleguideController#index as HTML
|
492
|
+
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.1ms)
|
494
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.7ms)
|
495
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
|
496
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
497
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
498
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:48 -0400
|
499
|
+
Processing by Woo::StyleguideController#index as HTML
|
500
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
501
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
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 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
|
504
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
505
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
506
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:48 -0400
|
507
|
+
Processing by Woo::StyleguideController#index as HTML
|
508
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
509
|
+
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.5ms)
|
511
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
512
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
513
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
514
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:48 -0400
|
515
|
+
Processing by Woo::StyleguideController#index as HTML
|
516
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
517
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
518
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
519
|
+
Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
|
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)
|
528
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
529
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
530
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:48 -0400
|
531
|
+
Processing by Woo::StyleguideController#index as HTML
|
532
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.2ms)
|
533
|
+
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 (5.7ms)
|
535
|
+
Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.0ms)
|
536
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
537
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
538
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:48 -0400
|
539
|
+
Processing by Woo::StyleguideController#index as HTML
|
540
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
541
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
542
|
+
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.9ms | ActiveRecord: 0.0ms)
|
544
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
545
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
546
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:48 -0400
|
547
|
+
Processing by Woo::StyleguideController#index as HTML
|
548
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
549
|
+
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.5ms)
|
551
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
552
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
553
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
554
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 14:58:48 -0400
|
555
|
+
Processing by Woo::StyleguideController#index as HTML
|
556
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.2ms)
|
557
|
+
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 (1.0ms)
|
559
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
|
560
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
561
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
562
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:01:29 -0400
|
563
|
+
Processing by Woo::StyleguideController#index as HTML
|
564
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (3.4ms)
|
565
|
+
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 (9.9ms)
|
567
|
+
Completed 200 OK in 88ms (Views: 87.7ms | ActiveRecord: 0.0ms)
|
568
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
569
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
570
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:01:29 -0400
|
571
|
+
Processing by Woo::StyleguideController#index as HTML
|
572
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
573
|
+
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.7ms)
|
575
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
576
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
577
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
578
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:01:29 -0400
|
579
|
+
Processing by Woo::StyleguideController#index as HTML
|
580
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
581
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
582
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
583
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
584
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
585
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
586
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:01:29 -0400
|
587
|
+
Processing by Woo::StyleguideController#index as HTML
|
588
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
589
|
+
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.6ms)
|
591
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
592
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
593
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
594
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:01:29 -0400
|
595
|
+
Processing by Woo::StyleguideController#index as HTML
|
596
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
597
|
+
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.4ms)
|
599
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
600
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
601
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
602
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:01:29 -0400
|
603
|
+
Processing by Woo::StyleguideController#index as HTML
|
604
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
605
|
+
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.6ms)
|
607
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
608
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
609
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
610
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:01:29 -0400
|
611
|
+
Processing by Woo::StyleguideController#index as HTML
|
612
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
613
|
+
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.7ms)
|
615
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
|
616
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
617
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
618
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:01:29 -0400
|
619
|
+
Processing by Woo::StyleguideController#index as HTML
|
620
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
621
|
+
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.5ms)
|
623
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
624
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
625
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
626
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:01:29 -0400
|
627
|
+
Processing by Woo::StyleguideController#index as HTML
|
628
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
629
|
+
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.4ms)
|
631
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
|
632
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
633
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
634
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:01:29 -0400
|
635
|
+
Processing by Woo::StyleguideController#index as HTML
|
636
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
637
|
+
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 (0.6ms)
|
639
|
+
Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
640
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
641
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
642
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:08:21 -0400
|
643
|
+
Processing by Woo::StyleguideController#index as HTML
|
644
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (3.1ms)
|
645
|
+
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 (7.6ms)
|
647
|
+
Completed 200 OK in 69ms (Views: 68.6ms | ActiveRecord: 0.0ms)
|
648
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
649
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
650
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:08:21 -0400
|
651
|
+
Processing by Woo::StyleguideController#index as HTML
|
652
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
653
|
+
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.4ms)
|
655
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
656
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
657
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
658
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:08:21 -0400
|
659
|
+
Processing by Woo::StyleguideController#index as HTML
|
660
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
661
|
+
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.6ms)
|
663
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
664
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
665
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
666
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:08:21 -0400
|
667
|
+
Processing by Woo::StyleguideController#index as HTML
|
668
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
669
|
+
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.6ms)
|
671
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
672
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
673
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
674
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:08:21 -0400
|
675
|
+
Processing by Woo::StyleguideController#index as HTML
|
676
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
677
|
+
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.7ms)
|
679
|
+
Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
680
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
681
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
682
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:08:21 -0400
|
683
|
+
Processing by Woo::StyleguideController#index as HTML
|
684
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
685
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
686
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.7ms)
|
687
|
+
Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
|
688
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
689
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
690
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:08:21 -0400
|
691
|
+
Processing by Woo::StyleguideController#index as HTML
|
692
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.2ms)
|
693
|
+
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.7ms)
|
695
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
696
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
697
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
698
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:08:21 -0400
|
699
|
+
Processing by Woo::StyleguideController#index as HTML
|
700
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
701
|
+
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.5ms)
|
703
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
704
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
705
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
706
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:08:21 -0400
|
707
|
+
Processing by Woo::StyleguideController#index as HTML
|
708
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
709
|
+
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.5ms)
|
711
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
|
712
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
713
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
714
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:08:21 -0400
|
715
|
+
Processing by Woo::StyleguideController#index as HTML
|
716
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
717
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
718
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
719
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
720
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
721
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
722
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:25:53 -0400
|
723
|
+
Processing by Woo::StyleguideController#index as HTML
|
724
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (3.1ms)
|
725
|
+
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 (8.7ms)
|
727
|
+
Completed 200 OK in 68ms (Views: 67.8ms | ActiveRecord: 0.0ms)
|
728
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
729
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
730
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:25:53 -0400
|
731
|
+
Processing by Woo::StyleguideController#index as HTML
|
732
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
733
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
734
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.5ms)
|
735
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
736
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
737
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
738
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:25:53 -0400
|
739
|
+
Processing by Woo::StyleguideController#index as HTML
|
740
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
741
|
+
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.4ms)
|
743
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
744
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
745
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
746
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:25:53 -0400
|
747
|
+
Processing by Woo::StyleguideController#index as HTML
|
748
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
749
|
+
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.4ms)
|
751
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
752
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
753
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
754
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:25:53 -0400
|
755
|
+
Processing by Woo::StyleguideController#index as HTML
|
756
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
757
|
+
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.4ms)
|
759
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
760
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
761
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
762
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:25:53 -0400
|
763
|
+
Processing by Woo::StyleguideController#index as HTML
|
764
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
765
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_single_page.html.haml (0.0ms)
|
766
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/styleguide/index.html.haml within layouts/woo/application (0.4ms)
|
767
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
768
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
769
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
770
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:25:53 -0400
|
771
|
+
Processing by Woo::StyleguideController#index as HTML
|
772
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
773
|
+
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.4ms)
|
775
|
+
Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
776
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
777
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
778
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:25:53 -0400
|
779
|
+
Processing by Woo::StyleguideController#index as HTML
|
780
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
781
|
+
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.4ms)
|
783
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
784
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
785
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
786
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:25:53 -0400
|
787
|
+
Processing by Woo::StyleguideController#index as HTML
|
788
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
789
|
+
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.7ms)
|
791
|
+
Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
|
792
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
793
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
794
|
+
Started GET "/styleguide" for 127.0.0.1 at 2014-10-01 15:25:53 -0400
|
795
|
+
Processing by Woo::StyleguideController#index as HTML
|
796
|
+
Rendered /Users/itg/git/adorable/woo/app/views/woo/shared/_navigation.html.haml (0.1ms)
|
797
|
+
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.4ms)
|
799
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
800
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
data/spec/dummy/tmp/cache/assets/test/sass/d7ac028af260026cd3b3bd45cf2361a18ce93f9f/_main.scssc
CHANGED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: woo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kevin Altman
|
@@ -199,6 +199,7 @@ files:
|
|
199
199
|
- lib/woo.rb
|
200
200
|
- MIT-LICENSE
|
201
201
|
- Rakefile
|
202
|
+
- README.md
|
202
203
|
- spec/dummy/app/assets/javascripts/application.js
|
203
204
|
- spec/dummy/app/assets/stylesheets/application.css
|
204
205
|
- spec/dummy/app/controllers/application_controller.rb
|
@@ -345,9 +346,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
345
346
|
version: '0'
|
346
347
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
347
348
|
requirements:
|
348
|
-
- - "
|
349
|
+
- - ">="
|
349
350
|
- !ruby/object:Gem::Version
|
350
|
-
version:
|
351
|
+
version: '0'
|
351
352
|
requirements: []
|
352
353
|
rubyforge_project:
|
353
354
|
rubygems_version: 2.0.14
|