woo 0.1.0.pre1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 798e2471c7925bd5fb0c8ca47a0bf798c44d2679
4
- data.tar.gz: 9f7246f08661483fdf886cb8f3c6b927f5913520
3
+ metadata.gz: 210d61a1a36a8b9acc5000ee35d3059a4633d981
4
+ data.tar.gz: 77a25bc48c54e9fc159da37c40f556e3d5e2926c
5
5
  SHA512:
6
- metadata.gz: b60116a2643ce78bbbab40c5ae22edb358e8dd415c670b5dbc2f0a2b15e547f5076e72f786dcf34b2157de7dd8d038680886e8f04465be1def18b9f1718a76ba
7
- data.tar.gz: 834f3c966f3e4cdce3a1c73d135bfd0c134607e422201920ce29e4c99a4cc55d869705515f06d8d36e4b836947c2ae043ae58df08b0b1461340e442d5c10b39d
6
+ metadata.gz: 33036293a1c3957ad73d19add71855e762cc136c91306d4d53459a0d3cfa658a72fc88e9121ee38646652742f2aeff9510a48155fef619add4b37937fd3715b4
7
+ data.tar.gz: d85a8336bc9956d07c45a17b49747f16dbb2e3b0b157db70f0d9b5dae3167307764aed4355b56b14e2e36a881dd028cdd671c676531796200ea744b9ce3c599d
data/README.md ADDED
@@ -0,0 +1,40 @@
1
+ # Woo
2
+ [![Build Status](https://travis-ci.org/adorableio/woo.svg?branch=master)](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 }
@@ -3,7 +3,7 @@ $colors-h5-background-color: $grey !default;
3
3
 
4
4
  @mixin color-block($color) {
5
5
  .color {
6
- @include box-shadow(0 0 0 1px $colors-border);
6
+ box-shadow: 0 0 0 1px $colors-border;
7
7
  background-color: $color;
8
8
  min-height: 100px;
9
9
  }
@@ -26,7 +26,7 @@ $notes-background-color: $white;
26
26
  top: 0;
27
27
  width: 300px;
28
28
 
29
- a { @include box-shadow(0 1px 0 0 $black); }
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 { @include box-shadow(none); }
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
- @include box-shadow(0 1px 0 0 transparent);
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
- @include box-shadow(inset 0 0 0 1px $nav-link-hr-color);
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
- @include box-shadow(0 1px 0 0 rgba($black, .08));
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
- @include box-shadow(inset 0 -20px 0 #fafaff);
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;
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Woo
2
- VERSION = "0.1.0.pre1"
2
+ VERSION = "0.1.0"
3
3
  end
@@ -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
   (0.1ms) rollback transaction
81
+  (0.2ms) begin transaction
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
+  (0.1ms) rollback transaction
89
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
97
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
105
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
113
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
121
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
129
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
137
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
145
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
153
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
161
+  (0.2ms) begin transaction
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
+  (0.1ms) rollback transaction
169
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
177
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
185
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
193
+  (0.0ms) begin transaction
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
+  (0.2ms) rollback transaction
201
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
209
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
217
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
225
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
233
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
241
+  (0.4ms) begin transaction
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
+  (0.1ms) rollback transaction
249
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
257
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
265
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
273
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
281
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
289
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
297
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
305
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
313
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
321
+  (0.4ms) begin transaction
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
+  (0.1ms) rollback transaction
329
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
337
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
345
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
353
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
361
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
369
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
377
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
385
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
393
+  (0.2ms) begin transaction
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
+  (0.1ms) rollback transaction
401
+  (0.3ms) begin transaction
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
+  (0.2ms) rollback transaction
409
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
417
+  (0.1ms) begin transaction
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
+  (0.3ms) rollback transaction
425
+  (1.2ms) begin transaction
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
+  (0.1ms) rollback transaction
433
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
441
+  (0.2ms) begin transaction
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
+  (0.1ms) rollback transaction
449
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
457
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
465
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
473
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
481
+  (0.2ms) begin transaction
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
+  (0.1ms) rollback transaction
489
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
497
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
505
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
513
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
521
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
529
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
537
+  (0.1ms) begin transaction
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
+  (0.2ms) rollback transaction
545
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
553
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
561
+  (0.2ms) begin transaction
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
+  (0.1ms) rollback transaction
569
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
577
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
585
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
593
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
601
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
609
+  (0.2ms) begin transaction
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
+  (0.1ms) rollback transaction
617
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
625
+  (0.1ms) begin transaction
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
+  (0.3ms) rollback transaction
633
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
641
+  (0.3ms) begin transaction
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
+  (0.1ms) rollback transaction
649
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
657
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
665
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
673
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
681
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
689
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
697
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
705
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
713
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
721
+  (0.2ms) begin transaction
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
+  (0.1ms) rollback transaction
729
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
737
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
745
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
753
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
761
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
769
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
777
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
785
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
793
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
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.pre1
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: 1.3.1
351
+ version: '0'
351
352
  requirements: []
352
353
  rubyforge_project:
353
354
  rubygems_version: 2.0.14