unified_partials 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (162) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +57 -0
  3. data/app/views/attribute_presentation/_default.html.erb +1 -1
  4. data/lib/generators/erb/unified_partials/templates/_associated.html.erb +3 -0
  5. data/lib/generators/erb/unified_partials/templates/_default.html.erb +2 -0
  6. data/lib/generators/erb/unified_partials/templates/_heading.html.erb +1 -0
  7. data/lib/generators/erb/unified_partials/templates/_label.html.erb +1 -0
  8. data/lib/generators/erb/unified_partials/templates/_layout.html.erb +1 -0
  9. data/lib/generators/erb/unified_partials/unified_partials_generator.rb +43 -0
  10. data/lib/generators/haml/unified_partials/templates/_associated.html.haml +3 -0
  11. data/lib/generators/haml/unified_partials/templates/_default.html.haml +2 -0
  12. data/lib/generators/haml/unified_partials/templates/_heading.html.haml +1 -0
  13. data/lib/generators/haml/unified_partials/templates/_label.html.haml +1 -0
  14. data/lib/generators/haml/unified_partials/templates/_layout.html.haml +1 -0
  15. data/lib/generators/haml/unified_partials/unified_partials_generator.rb +16 -0
  16. data/lib/generators/unified_partials/install_generator.rb +9 -0
  17. data/lib/unified_partials/version.rb +1 -1
  18. data/test/dummy/db/development.sqlite3 +0 -0
  19. data/test/dummy/log/development.log +56 -248
  20. data/test/dummy/log/test.log +10 -342
  21. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  22. data/test/dummy/tmp/cache/assets/development/sprockets/2afdbb3902a1be5d2f045cfc837903a3 +0 -0
  23. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  24. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  25. data/test/dummy/tmp/cache/assets/development/sprockets/5a15e52e84502f9fceb7ea04020f65fc +0 -0
  26. data/test/dummy/tmp/cache/assets/development/sprockets/64db420a3a172209bf0b734312a4888a +0 -0
  27. data/test/dummy/tmp/cache/assets/development/sprockets/67ff5689dfcb845e86b74aa2d787edef +0 -0
  28. data/test/dummy/tmp/cache/assets/development/sprockets/787b6a4c2386b5edf98f90508b85cc3d +0 -0
  29. data/test/dummy/tmp/cache/assets/development/sprockets/b950c5d77d355ffc7f0edf748e04b138 +0 -0
  30. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  31. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  32. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  33. data/test/haml-railtie.rb +19 -0
  34. data/test/throwaway/README.rdoc +28 -0
  35. data/test/throwaway/Rakefile +6 -0
  36. data/test/throwaway/app/assets/javascripts/application.js +13 -0
  37. data/test/throwaway/app/assets/javascripts/books.js +2 -0
  38. data/test/throwaway/app/assets/stylesheets/application.css +13 -0
  39. data/test/throwaway/app/assets/stylesheets/books.css +4 -0
  40. data/test/throwaway/app/controllers/application_controller.rb +5 -0
  41. data/test/throwaway/app/controllers/books_controller.rb +5 -0
  42. data/test/throwaway/app/helpers/application_helper.rb +2 -0
  43. data/test/throwaway/app/helpers/books_helper.rb +2 -0
  44. data/test/throwaway/app/models/book.rb +2 -0
  45. data/test/throwaway/app/views/attribute_presentation/_associated.html.erb +3 -0
  46. data/test/throwaway/app/views/attribute_presentation/_default.html.erb +2 -0
  47. data/test/throwaway/app/views/attribute_presentation/_heading.html.erb +1 -0
  48. data/test/throwaway/app/views/attribute_presentation/_label.html.erb +1 -0
  49. data/test/throwaway/app/views/attribute_presentation/_layout.html.erb +2 -0
  50. data/test/throwaway/app/views/books/index.html.erb +5 -0
  51. data/test/throwaway/app/views/layouts/application.html.erb +14 -0
  52. data/test/throwaway/bin/bundle +3 -0
  53. data/test/throwaway/bin/rails +4 -0
  54. data/test/throwaway/bin/rake +4 -0
  55. data/test/throwaway/config.ru +4 -0
  56. data/test/throwaway/config/application.rb +23 -0
  57. data/test/throwaway/config/boot.rb +5 -0
  58. data/test/throwaway/config/database.yml +25 -0
  59. data/test/throwaway/config/environment.rb +5 -0
  60. data/test/throwaway/config/environments/development.rb +29 -0
  61. data/test/throwaway/config/environments/production.rb +80 -0
  62. data/test/throwaway/config/environments/test.rb +36 -0
  63. data/test/throwaway/config/initializers/backtrace_silencers.rb +7 -0
  64. data/test/throwaway/config/initializers/filter_parameter_logging.rb +4 -0
  65. data/test/throwaway/config/initializers/inflections.rb +16 -0
  66. data/test/throwaway/config/initializers/mime_types.rb +5 -0
  67. data/test/throwaway/config/initializers/secret_token.rb +12 -0
  68. data/test/throwaway/config/initializers/session_store.rb +3 -0
  69. data/test/throwaway/config/initializers/wrap_parameters.rb +14 -0
  70. data/test/throwaway/config/locales/en.yml +23 -0
  71. data/test/throwaway/config/routes.rb +57 -0
  72. data/test/throwaway/db/development.sqlite3 +0 -0
  73. data/test/throwaway/db/migrate/20131014134500_create_books.rb +10 -0
  74. data/test/throwaway/db/schema.rb +23 -0
  75. data/test/throwaway/db/seeds.rb +1 -0
  76. data/test/throwaway/db/test.sqlite3 +0 -0
  77. data/test/throwaway/log/development.log +107 -0
  78. data/test/throwaway/log/test.log +15 -0
  79. data/test/throwaway/public/404.html +58 -0
  80. data/test/throwaway/public/422.html +58 -0
  81. data/test/throwaway/public/500.html +57 -0
  82. data/test/throwaway/public/favicon.ico +0 -0
  83. data/test/throwaway/test/fixtures/books.yml +9 -0
  84. data/test/throwaway/test/views/index.html.erb_test.rb +14 -0
  85. data/test/throwaway/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  86. data/test/throwaway/tmp/cache/assets/development/sprockets/2afdbb3902a1be5d2f045cfc837903a3 +0 -0
  87. data/test/throwaway/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  88. data/test/throwaway/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  89. data/test/throwaway/tmp/cache/assets/development/sprockets/5a15e52e84502f9fceb7ea04020f65fc +0 -0
  90. data/test/throwaway/tmp/cache/assets/development/sprockets/64db420a3a172209bf0b734312a4888a +0 -0
  91. data/test/throwaway/tmp/cache/assets/development/sprockets/67ff5689dfcb845e86b74aa2d787edef +0 -0
  92. data/test/throwaway/tmp/cache/assets/development/sprockets/787b6a4c2386b5edf98f90508b85cc3d +0 -0
  93. data/test/throwaway/tmp/cache/assets/development/sprockets/b950c5d77d355ffc7f0edf748e04b138 +0 -0
  94. data/test/throwaway/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  95. data/test/throwaway/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  96. data/test/throwaway/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  97. data/test/throwaway_haml/README.rdoc +28 -0
  98. data/test/throwaway_haml/Rakefile +6 -0
  99. data/test/throwaway_haml/app/assets/javascripts/application.js +13 -0
  100. data/test/throwaway_haml/app/assets/javascripts/books.js +2 -0
  101. data/test/throwaway_haml/app/assets/stylesheets/application.css +13 -0
  102. data/test/throwaway_haml/app/assets/stylesheets/books.css +4 -0
  103. data/test/throwaway_haml/app/controllers/application_controller.rb +5 -0
  104. data/test/throwaway_haml/app/controllers/books_controller.rb +5 -0
  105. data/test/throwaway_haml/app/helpers/application_helper.rb +2 -0
  106. data/test/throwaway_haml/app/helpers/books_helper.rb +2 -0
  107. data/test/throwaway_haml/app/models/book.rb +2 -0
  108. data/test/throwaway_haml/app/views/attribute_presentation/_associated.html.haml +3 -0
  109. data/test/throwaway_haml/app/views/attribute_presentation/_default.html.haml +2 -0
  110. data/test/throwaway_haml/app/views/attribute_presentation/_heading.html.haml +1 -0
  111. data/test/throwaway_haml/app/views/attribute_presentation/_label.html.haml +1 -0
  112. data/test/throwaway_haml/app/views/attribute_presentation/_layout.html.erb +2 -0
  113. data/test/throwaway_haml/app/views/attribute_presentation/_layout.html.haml +1 -0
  114. data/test/throwaway_haml/app/views/books/index.html.erb +5 -0
  115. data/test/throwaway_haml/app/views/layouts/application.html.erb +14 -0
  116. data/test/throwaway_haml/bin/bundle +3 -0
  117. data/test/throwaway_haml/bin/rails +4 -0
  118. data/test/throwaway_haml/bin/rake +4 -0
  119. data/test/throwaway_haml/config.ru +4 -0
  120. data/test/throwaway_haml/config/application.rb +23 -0
  121. data/test/throwaway_haml/config/boot.rb +5 -0
  122. data/test/throwaway_haml/config/database.yml +25 -0
  123. data/test/throwaway_haml/config/environment.rb +5 -0
  124. data/test/throwaway_haml/config/environments/development.rb +29 -0
  125. data/test/throwaway_haml/config/environments/production.rb +80 -0
  126. data/test/throwaway_haml/config/environments/test.rb +36 -0
  127. data/test/throwaway_haml/config/initializers/backtrace_silencers.rb +7 -0
  128. data/test/throwaway_haml/config/initializers/filter_parameter_logging.rb +4 -0
  129. data/test/throwaway_haml/config/initializers/haml-railtie.rb +19 -0
  130. data/test/throwaway_haml/config/initializers/inflections.rb +16 -0
  131. data/test/throwaway_haml/config/initializers/mime_types.rb +5 -0
  132. data/test/throwaway_haml/config/initializers/secret_token.rb +12 -0
  133. data/test/throwaway_haml/config/initializers/session_store.rb +3 -0
  134. data/test/throwaway_haml/config/initializers/wrap_parameters.rb +14 -0
  135. data/test/throwaway_haml/config/locales/en.yml +23 -0
  136. data/test/throwaway_haml/config/routes.rb +57 -0
  137. data/test/throwaway_haml/db/development.sqlite3 +0 -0
  138. data/test/throwaway_haml/db/migrate/20131014134500_create_books.rb +10 -0
  139. data/test/throwaway_haml/db/schema.rb +23 -0
  140. data/test/throwaway_haml/db/seeds.rb +1 -0
  141. data/test/throwaway_haml/db/test.sqlite3 +0 -0
  142. data/test/throwaway_haml/log/development.log +107 -0
  143. data/test/throwaway_haml/log/test.log +15 -0
  144. data/test/throwaway_haml/public/404.html +58 -0
  145. data/test/throwaway_haml/public/422.html +58 -0
  146. data/test/throwaway_haml/public/500.html +57 -0
  147. data/test/throwaway_haml/public/favicon.ico +0 -0
  148. data/test/throwaway_haml/test/fixtures/books.yml +9 -0
  149. data/test/throwaway_haml/test/views/index.html.erb_test.rb +14 -0
  150. data/test/throwaway_haml/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  151. data/test/throwaway_haml/tmp/cache/assets/development/sprockets/2afdbb3902a1be5d2f045cfc837903a3 +0 -0
  152. data/test/throwaway_haml/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  153. data/test/throwaway_haml/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  154. data/test/throwaway_haml/tmp/cache/assets/development/sprockets/5a15e52e84502f9fceb7ea04020f65fc +0 -0
  155. data/test/throwaway_haml/tmp/cache/assets/development/sprockets/64db420a3a172209bf0b734312a4888a +0 -0
  156. data/test/throwaway_haml/tmp/cache/assets/development/sprockets/67ff5689dfcb845e86b74aa2d787edef +0 -0
  157. data/test/throwaway_haml/tmp/cache/assets/development/sprockets/787b6a4c2386b5edf98f90508b85cc3d +0 -0
  158. data/test/throwaway_haml/tmp/cache/assets/development/sprockets/b950c5d77d355ffc7f0edf748e04b138 +0 -0
  159. data/test/throwaway_haml/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  160. data/test/throwaway_haml/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  161. data/test/throwaway_haml/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  162. metadata +274 -3
@@ -1,329 +1,12 @@
1
1
   (0.3ms) begin transaction
2
- ------------------------------------------
3
- BooksControllerTest: test_should_get_index
4
- ------------------------------------------
5
- Processing by BooksController#index as HTML
6
- Book Load (0.1ms) SELECT "books".* FROM "books" ORDER BY "books"."id" ASC LIMIT 1
7
- SQLite3::SQLException: no such table: books: SELECT "books".* FROM "books" ORDER BY "books"."id" ASC LIMIT 1
8
- Completed 500 Internal Server Error in 4ms
9
-  (0.1ms) rollback transaction
10
-  (0.1ms) begin transaction
11
- -------------------------------
12
- UnifiedPartialsTest: test_truth
13
- -------------------------------
14
-  (0.1ms) rollback transaction
15
-  (0.3ms) begin transaction
16
- ------------------------------------------
17
- BooksControllerTest: test_should_get_index
18
- ------------------------------------------
19
- Processing by BooksController#index as HTML
20
- Book Load (0.2ms) SELECT "books".* FROM "books" ORDER BY "books"."id" ASC LIMIT 1
21
- SQLite3::SQLException: no such table: books: SELECT "books".* FROM "books" ORDER BY "books"."id" ASC LIMIT 1
22
- Completed 500 Internal Server Error in 4ms
23
-  (0.1ms) rollback transaction
24
-  (0.1ms) begin transaction
25
- ---------------------
26
- IndexTest: test_title
27
- ---------------------
28
-  (0.1ms) rollback transaction
29
-  (0.1ms) begin transaction
30
- -------------------------------
31
- UnifiedPartialsTest: test_truth
32
- -------------------------------
33
-  (0.1ms) rollback transaction
34
-  (0.2ms) begin transaction
35
- ------------------------------------------
36
- BooksControllerTest: test_should_get_index
37
- ------------------------------------------
38
- Processing by BooksController#index as HTML
39
- Book Load (0.1ms) SELECT "books".* FROM "books" ORDER BY "books"."id" ASC LIMIT 1
40
- SQLite3::SQLException: no such table: books: SELECT "books".* FROM "books" ORDER BY "books"."id" ASC LIMIT 1
41
- Completed 500 Internal Server Error in 3ms
42
-  (0.1ms) rollback transaction
43
-  (0.1ms) begin transaction
44
- ---------------------
45
- IndexTest: test_title
46
- ---------------------
47
-  (0.1ms) rollback transaction
48
-  (0.1ms) begin transaction
49
- -------------------------------
50
- UnifiedPartialsTest: test_truth
51
- -------------------------------
52
-  (0.1ms) rollback transaction
53
-  (0.2ms) begin transaction
54
- ------------------------------------------
55
- BooksControllerTest: test_should_get_index
56
- ------------------------------------------
57
- Processing by BooksController#index as HTML
58
- Book Load (0.1ms) SELECT "books".* FROM "books" ORDER BY "books"."id" ASC LIMIT 1
59
- SQLite3::SQLException: no such table: books: SELECT "books".* FROM "books" ORDER BY "books"."id" ASC LIMIT 1
60
- Completed 500 Internal Server Error in 3ms
61
-  (0.1ms) rollback transaction
62
-  (0.1ms) begin transaction
63
- ---------------------
64
- IndexTest: test_title
65
- ---------------------
66
-  (0.1ms) rollback transaction
67
-  (0.1ms) begin transaction
68
- -------------------------------
69
- UnifiedPartialsTest: test_truth
70
- -------------------------------
71
-  (0.1ms) rollback transaction
72
-  (0.2ms) begin transaction
73
- ---------------------
74
- IndexTest: test_title
75
- ---------------------
76
-  (0.1ms) rollback transaction
77
-  (0.1ms) begin transaction
78
- -------------------------------
79
- UnifiedPartialsTest: test_truth
80
- -------------------------------
81
-  (0.1ms) rollback transaction
82
-  (0.3ms) begin transaction
83
- ---------------------
84
- IndexTest: test_title
85
- ---------------------
86
-  (0.1ms) rollback transaction
87
-  (0.1ms) begin transaction
88
- -------------------------------
89
- UnifiedPartialsTest: test_truth
90
- -------------------------------
91
-  (0.1ms) rollback transaction
92
-  (0.2ms) begin transaction
93
- ---------------------
94
- IndexTest: test_title
95
- ---------------------
96
-  (0.1ms) rollback transaction
97
-  (0.1ms) begin transaction
98
- -------------------------------
99
- UnifiedPartialsTest: test_truth
100
- -------------------------------
101
-  (0.1ms) rollback transaction
102
-  (0.2ms) begin transaction
103
- ---------------------
104
- IndexTest: test_title
105
- ---------------------
106
-  (0.1ms) rollback transaction
107
-  (0.1ms) begin transaction
108
- -------------------------------
109
- UnifiedPartialsTest: test_truth
110
- -------------------------------
111
-  (0.1ms) rollback transaction
112
-  (0.2ms) begin transaction
113
- ---------------------
114
- IndexTest: test_title
115
- ---------------------
116
-  (0.1ms) rollback transaction
117
-  (0.1ms) begin transaction
118
- -------------------------------
119
- UnifiedPartialsTest: test_truth
120
- -------------------------------
121
-  (0.1ms) rollback transaction
122
-  (0.2ms) begin transaction
123
- ---------------------
124
- IndexTest: test_title
125
- ---------------------
126
-  (0.1ms) rollback transaction
127
-  (0.1ms) begin transaction
128
- -------------------------------
129
- UnifiedPartialsTest: test_truth
130
- -------------------------------
131
-  (0.1ms) rollback transaction
132
-  (0.2ms) begin transaction
133
- ---------------------
134
- IndexTest: test_title
135
- ---------------------
136
- Rendered books/index.html.erb (4.5ms)
137
-  (0.1ms) rollback transaction
138
-  (0.1ms) begin transaction
139
- -------------------------------
140
- UnifiedPartialsTest: test_truth
141
- -------------------------------
142
-  (0.1ms) rollback transaction
143
-  (0.2ms) begin transaction
144
- ---------------------
145
- IndexTest: test_title
146
- ---------------------
147
- Rendered books/index.html.erb (4.3ms)
148
-  (0.1ms) rollback transaction
149
-  (0.1ms) begin transaction
150
- -------------------------------
151
- UnifiedPartialsTest: test_truth
152
- -------------------------------
153
-  (0.1ms) rollback transaction
154
-  (0.2ms) begin transaction
155
- ---------------------
156
- IndexTest: test_title
157
- ---------------------
158
- Rendered books/index.html.erb (4.1ms)
159
-  (0.1ms) rollback transaction
160
-  (0.1ms) begin transaction
161
- -------------------------------
162
- UnifiedPartialsTest: test_truth
163
- -------------------------------
164
-  (0.1ms) rollback transaction
165
-  (0.2ms) begin transaction
166
- ---------------------
167
- IndexTest: test_title
168
- ---------------------
169
-  (0.1ms) rollback transaction
170
-  (0.1ms) begin transaction
171
- -------------------------------
172
- UnifiedPartialsTest: test_truth
173
- -------------------------------
174
-  (0.1ms) rollback transaction
175
-  (0.2ms) begin transaction
176
- ---------------------
177
- IndexTest: test_title
178
- ---------------------
179
-  (0.1ms) rollback transaction
180
-  (0.0ms) begin transaction
181
- -------------------------------
182
- UnifiedPartialsTest: test_truth
183
- -------------------------------
184
-  (0.1ms) rollback transaction
185
-  (0.2ms) begin transaction
186
- ---------------------
187
- IndexTest: test_title
188
- ---------------------
189
- Rendered books/index.html.erb (5.3ms)
190
-  (0.1ms) rollback transaction
191
-  (0.1ms) begin transaction
192
- -------------------------------
193
- UnifiedPartialsTest: test_truth
194
- -------------------------------
195
-  (0.1ms) rollback transaction
196
-  (0.2ms) begin transaction
197
- ---------------------
198
- IndexTest: test_title
199
- ---------------------
200
-  (0.1ms) rollback transaction
201
-  (0.1ms) begin transaction
202
- -------------------------------
203
- UnifiedPartialsTest: test_truth
204
- -------------------------------
205
-  (0.1ms) rollback transaction
206
-  (0.2ms) begin transaction
207
- ---------------------
208
- IndexTest: test_title
209
- ---------------------
210
- Rendered books/index.html.erb (4.1ms)
211
-  (0.1ms) rollback transaction
212
-  (0.1ms) begin transaction
213
- -------------------------------
214
- UnifiedPartialsTest: test_truth
215
- -------------------------------
216
-  (0.1ms) rollback transaction
217
-  (0.2ms) begin transaction
218
- ---------------------
219
- IndexTest: test_title
220
- ---------------------
221
- Rendered books/index.html.erb (336020.2ms)
222
-  (0.1ms) rollback transaction
223
-  (0.1ms) begin transaction
224
- -------------------------------
225
- UnifiedPartialsTest: test_truth
226
- -------------------------------
227
-  (0.1ms) rollback transaction
228
-  (0.2ms) begin transaction
229
- ---------------------
230
- IndexTest: test_title
231
- ---------------------
232
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_label.html.erb (0.4ms)
233
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_heading.html.erb (3.6ms)
234
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_label.html.erb (0.1ms)
235
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_default.html.erb (0.4ms)
236
- Rendered books/index.html.erb (24.5ms)
237
-  (0.1ms) rollback transaction
238
-  (0.1ms) begin transaction
239
- -------------------------------
240
- UnifiedPartialsTest: test_truth
241
- -------------------------------
242
-  (0.1ms) rollback transaction
243
-  (0.2ms) begin transaction
244
- ---------------------
245
- IndexTest: test_title
246
- ---------------------
247
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_label.html.erb (0.5ms)
248
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_heading.html.erb (2.9ms)
249
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_label.html.erb (0.1ms)
250
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_default.html.erb (0.4ms)
251
- Rendered books/index.html.erb (19.4ms)
252
-  (0.1ms) rollback transaction
253
-  (0.1ms) begin transaction
254
- -------------------------------
255
- UnifiedPartialsTest: test_truth
256
- -------------------------------
257
-  (0.1ms) rollback transaction
258
-  (0.2ms) begin transaction
259
- ----------------------
260
- IndexTest: test_layout
261
- ----------------------
262
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_label.html.erb (0.5ms)
263
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_heading.html.erb (2.9ms)
264
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_label.html.erb (0.1ms)
265
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_default.html.erb (0.4ms)
266
- Rendered books/index.html.erb (19.6ms)
267
-  (0.1ms) rollback transaction
268
-  (0.1ms) begin transaction
269
- -------------------------------
270
- UnifiedPartialsTest: test_truth
271
- -------------------------------
272
-  (0.1ms) rollback transaction
273
-  (0.2ms) begin transaction
274
- ----------------------
275
- IndexTest: test_layout
276
- ----------------------
277
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_label.html.erb (0.5ms)
278
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_heading.html.erb (3.0ms)
279
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_label.html.erb (0.2ms)
280
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_default.html.erb (0.4ms)
281
- Rendered books/index.html.erb (20.2ms)
282
-  (0.1ms) rollback transaction
283
-  (0.1ms) begin transaction
284
- -------------------------------
285
- UnifiedPartialsTest: test_truth
286
- -------------------------------
287
-  (0.1ms) rollback transaction
288
-  (0.2ms) begin transaction
289
- ----------------------
290
- IndexTest: test_layout
291
- ----------------------
292
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_label.html.erb (0.5ms)
293
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_heading.html.erb (2.8ms)
294
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_label.html.erb (0.1ms)
295
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_default.html.erb (0.4ms)
296
- Rendered books/index.html.erb (19.1ms)
297
-  (0.1ms) rollback transaction
298
-  (0.1ms) begin transaction
299
- -------------------------------
300
- UnifiedPartialsTest: test_truth
301
- -------------------------------
302
-  (0.1ms) rollback transaction
303
-  (0.3ms) begin transaction
304
- ----------------------
305
- IndexTest: test_layout
306
- ----------------------
307
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_label.html.erb (0.4ms)
308
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_heading.html.erb (3.0ms)
309
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_label.html.erb (0.1ms)
310
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_default.html.erb (0.4ms)
311
- Rendered books/index.html.erb (19.3ms)
312
-  (0.1ms) rollback transaction
313
-  (0.1ms) begin transaction
314
- -------------------------------
315
- UnifiedPartialsTest: test_truth
316
- -------------------------------
317
-  (0.1ms) rollback transaction
318
-  (0.2ms) begin transaction
319
2
  ----------------------
320
3
  IndexTest: test_layout
321
4
  ----------------------
322
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_label.html.erb (0.5ms)
323
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_heading.html.erb (2.8ms)
324
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_label.html.erb (0.1ms)
325
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_default.html.erb (0.5ms)
326
- Rendered books/index.html.erb (19.8ms)
5
+ Rendered /opt/boxen/repositories/mine/unified_partials/app/views/attribute_presentation/_label.html.erb (0.9ms)
6
+ Rendered /opt/boxen/repositories/mine/unified_partials/app/views/attribute_presentation/_heading.html.erb (4.1ms)
7
+ Rendered /opt/boxen/repositories/mine/unified_partials/app/views/attribute_presentation/_label.html.erb (0.1ms)
8
+ Rendered /opt/boxen/repositories/mine/unified_partials/app/views/attribute_presentation/_default.html.erb (0.8ms)
9
+ Rendered books/index.html.erb (35.1ms)
327
10
   (0.1ms) rollback transaction
328
11
   (0.1ms) begin transaction
329
12
  -------------------------------
@@ -334,26 +17,11 @@ UnifiedPartialsTest: test_truth
334
17
  ----------------------
335
18
  IndexTest: test_layout
336
19
  ----------------------
337
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_label.html.erb (0.5ms)
338
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_heading.html.erb (2.9ms)
339
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_label.html.erb (0.1ms)
340
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_default.html.erb (0.4ms)
341
- Rendered books/index.html.erb (19.8ms)
342
-  (0.1ms) rollback transaction
343
-  (0.1ms) begin transaction
344
- -------------------------------
345
- UnifiedPartialsTest: test_truth
346
- -------------------------------
347
-  (0.1ms) rollback transaction
348
-  (0.2ms) begin transaction
349
- ----------------------
350
- IndexTest: test_layout
351
- ----------------------
352
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_label.html.erb (0.4ms)
353
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_heading.html.erb (3.2ms)
354
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_label.html.erb (0.1ms)
355
- Rendered /Users/samsm/Repositories/mine/unified_partials/app/views/attribute_presentation/_default.html.erb (0.5ms)
356
- Rendered books/index.html.erb (20.4ms)
20
+ Rendered /opt/boxen/repositories/mine/unified_partials/app/views/attribute_presentation/_label.html.erb (0.5ms)
21
+ Rendered /opt/boxen/repositories/mine/unified_partials/app/views/attribute_presentation/_heading.html.erb (3.8ms)
22
+ Rendered /opt/boxen/repositories/mine/unified_partials/app/views/attribute_presentation/_label.html.erb (0.1ms)
23
+ Rendered /opt/boxen/repositories/mine/unified_partials/app/views/attribute_presentation/_default.html.erb (0.5ms)
24
+ Rendered books/index.html.erb (26.0ms)
357
25
   (0.1ms) rollback transaction
358
26
   (0.1ms) begin transaction
359
27
  -------------------------------
@@ -0,0 +1,19 @@
1
+ require 'haml'
2
+ require 'rails'
3
+
4
+ module Haml
5
+ module Rails
6
+ class Railtie < ::Rails::Railtie
7
+ if ::Rails.version.to_f >= 3.1
8
+ config.app_generators.template_engine :haml
9
+ else
10
+ config.generators.template_engine :haml
11
+ end
12
+
13
+ config.before_initialize do
14
+ Haml.init_rails(binding)
15
+ Haml::Template.options[:format] = :html5
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,28 @@
1
+ == README
2
+
3
+ This README would normally document whatever steps are necessary to get the
4
+ application up and running.
5
+
6
+ Things you may want to cover:
7
+
8
+ * Ruby version
9
+
10
+ * System dependencies
11
+
12
+ * Configuration
13
+
14
+ * Database creation
15
+
16
+ * Database initialization
17
+
18
+ * How to run the test suite
19
+
20
+ * Services (job queues, cache servers, search engines, etc.)
21
+
22
+ * Deployment instructions
23
+
24
+ * ...
25
+
26
+
27
+ Please feel free to use a different markup language if you do not plan to run
28
+ <tt>rake doc:app</tt>.
@@ -0,0 +1,6 @@
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+ require File.expand_path('../config/application', __FILE__)
5
+
6
+ Dummy::Application.load_tasks