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
File without changes
@@ -0,0 +1,9 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ title: MyString
5
+ author: MyString
6
+
7
+ two:
8
+ title: MyString
9
+ author: MyString
@@ -0,0 +1,14 @@
1
+ require 'test_helper'
2
+ require 'ostruct'
3
+
4
+ class IndexTest < ActionView::TestCase
5
+ def setup
6
+ @book = OpenStruct.new title: "Test Title", author: "Test Author"
7
+ render template: "books/index"
8
+ end
9
+ def test_layout
10
+ assert_select 'div.custom-show-attribute' do
11
+ assert_select 'h1', text: "Test Title"
12
+ end
13
+ end
14
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unified_partials
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Schenkman-Moore
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-10-21 00:00:00.000000000 Z
11
+ date: 2013-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -52,6 +52,19 @@ files:
52
52
  - app/views/attribute_presentation/_heading.html.erb
53
53
  - app/views/attribute_presentation/_label.html.erb
54
54
  - app/views/attribute_presentation/_layout.html.erb
55
+ - lib/generators/erb/unified_partials/templates/_associated.html.erb
56
+ - lib/generators/erb/unified_partials/templates/_default.html.erb
57
+ - lib/generators/erb/unified_partials/templates/_heading.html.erb
58
+ - lib/generators/erb/unified_partials/templates/_label.html.erb
59
+ - lib/generators/erb/unified_partials/templates/_layout.html.erb
60
+ - lib/generators/erb/unified_partials/unified_partials_generator.rb
61
+ - lib/generators/haml/unified_partials/templates/_associated.html.haml
62
+ - lib/generators/haml/unified_partials/templates/_default.html.haml
63
+ - lib/generators/haml/unified_partials/templates/_heading.html.haml
64
+ - lib/generators/haml/unified_partials/templates/_label.html.haml
65
+ - lib/generators/haml/unified_partials/templates/_layout.html.haml
66
+ - lib/generators/haml/unified_partials/unified_partials_generator.rb
67
+ - lib/generators/unified_partials/install_generator.rb
55
68
  - lib/tasks/unified_partials_tasks.rake
56
69
  - lib/unified_partials/engine.rb
57
70
  - lib/unified_partials/version.rb
@@ -117,7 +130,136 @@ files:
117
130
  - test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
118
131
  - test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
119
132
  - test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
133
+ - test/haml-railtie.rb
120
134
  - test/test_helper.rb
135
+ - test/throwaway/app/assets/javascripts/application.js
136
+ - test/throwaway/app/assets/javascripts/books.js
137
+ - test/throwaway/app/assets/stylesheets/application.css
138
+ - test/throwaway/app/assets/stylesheets/books.css
139
+ - test/throwaway/app/controllers/application_controller.rb
140
+ - test/throwaway/app/controllers/books_controller.rb
141
+ - test/throwaway/app/helpers/application_helper.rb
142
+ - test/throwaway/app/helpers/books_helper.rb
143
+ - test/throwaway/app/models/book.rb
144
+ - test/throwaway/app/views/attribute_presentation/_associated.html.erb
145
+ - test/throwaway/app/views/attribute_presentation/_default.html.erb
146
+ - test/throwaway/app/views/attribute_presentation/_heading.html.erb
147
+ - test/throwaway/app/views/attribute_presentation/_label.html.erb
148
+ - test/throwaway/app/views/attribute_presentation/_layout.html.erb
149
+ - test/throwaway/app/views/books/index.html.erb
150
+ - test/throwaway/app/views/layouts/application.html.erb
151
+ - test/throwaway/bin/bundle
152
+ - test/throwaway/bin/rails
153
+ - test/throwaway/bin/rake
154
+ - test/throwaway/config/application.rb
155
+ - test/throwaway/config/boot.rb
156
+ - test/throwaway/config/database.yml
157
+ - test/throwaway/config/environment.rb
158
+ - test/throwaway/config/environments/development.rb
159
+ - test/throwaway/config/environments/production.rb
160
+ - test/throwaway/config/environments/test.rb
161
+ - test/throwaway/config/initializers/backtrace_silencers.rb
162
+ - test/throwaway/config/initializers/filter_parameter_logging.rb
163
+ - test/throwaway/config/initializers/inflections.rb
164
+ - test/throwaway/config/initializers/mime_types.rb
165
+ - test/throwaway/config/initializers/secret_token.rb
166
+ - test/throwaway/config/initializers/session_store.rb
167
+ - test/throwaway/config/initializers/wrap_parameters.rb
168
+ - test/throwaway/config/locales/en.yml
169
+ - test/throwaway/config/routes.rb
170
+ - test/throwaway/config.ru
171
+ - test/throwaway/db/development.sqlite3
172
+ - test/throwaway/db/migrate/20131014134500_create_books.rb
173
+ - test/throwaway/db/schema.rb
174
+ - test/throwaway/db/seeds.rb
175
+ - test/throwaway/db/test.sqlite3
176
+ - test/throwaway/log/development.log
177
+ - test/throwaway/log/test.log
178
+ - test/throwaway/public/404.html
179
+ - test/throwaway/public/422.html
180
+ - test/throwaway/public/500.html
181
+ - test/throwaway/public/favicon.ico
182
+ - test/throwaway/Rakefile
183
+ - test/throwaway/README.rdoc
184
+ - test/throwaway/test/fixtures/books.yml
185
+ - test/throwaway/test/views/index.html.erb_test.rb
186
+ - test/throwaway/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
187
+ - test/throwaway/tmp/cache/assets/development/sprockets/2afdbb3902a1be5d2f045cfc837903a3
188
+ - test/throwaway/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
189
+ - test/throwaway/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
190
+ - test/throwaway/tmp/cache/assets/development/sprockets/5a15e52e84502f9fceb7ea04020f65fc
191
+ - test/throwaway/tmp/cache/assets/development/sprockets/64db420a3a172209bf0b734312a4888a
192
+ - test/throwaway/tmp/cache/assets/development/sprockets/67ff5689dfcb845e86b74aa2d787edef
193
+ - test/throwaway/tmp/cache/assets/development/sprockets/787b6a4c2386b5edf98f90508b85cc3d
194
+ - test/throwaway/tmp/cache/assets/development/sprockets/b950c5d77d355ffc7f0edf748e04b138
195
+ - test/throwaway/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
196
+ - test/throwaway/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
197
+ - test/throwaway/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
198
+ - test/throwaway_haml/app/assets/javascripts/application.js
199
+ - test/throwaway_haml/app/assets/javascripts/books.js
200
+ - test/throwaway_haml/app/assets/stylesheets/application.css
201
+ - test/throwaway_haml/app/assets/stylesheets/books.css
202
+ - test/throwaway_haml/app/controllers/application_controller.rb
203
+ - test/throwaway_haml/app/controllers/books_controller.rb
204
+ - test/throwaway_haml/app/helpers/application_helper.rb
205
+ - test/throwaway_haml/app/helpers/books_helper.rb
206
+ - test/throwaway_haml/app/models/book.rb
207
+ - test/throwaway_haml/app/views/attribute_presentation/_associated.html.haml
208
+ - test/throwaway_haml/app/views/attribute_presentation/_default.html.haml
209
+ - test/throwaway_haml/app/views/attribute_presentation/_heading.html.haml
210
+ - test/throwaway_haml/app/views/attribute_presentation/_label.html.haml
211
+ - test/throwaway_haml/app/views/attribute_presentation/_layout.html.erb
212
+ - test/throwaway_haml/app/views/attribute_presentation/_layout.html.haml
213
+ - test/throwaway_haml/app/views/books/index.html.erb
214
+ - test/throwaway_haml/app/views/layouts/application.html.erb
215
+ - test/throwaway_haml/bin/bundle
216
+ - test/throwaway_haml/bin/rails
217
+ - test/throwaway_haml/bin/rake
218
+ - test/throwaway_haml/config/application.rb
219
+ - test/throwaway_haml/config/boot.rb
220
+ - test/throwaway_haml/config/database.yml
221
+ - test/throwaway_haml/config/environment.rb
222
+ - test/throwaway_haml/config/environments/development.rb
223
+ - test/throwaway_haml/config/environments/production.rb
224
+ - test/throwaway_haml/config/environments/test.rb
225
+ - test/throwaway_haml/config/initializers/backtrace_silencers.rb
226
+ - test/throwaway_haml/config/initializers/filter_parameter_logging.rb
227
+ - test/throwaway_haml/config/initializers/haml-railtie.rb
228
+ - test/throwaway_haml/config/initializers/inflections.rb
229
+ - test/throwaway_haml/config/initializers/mime_types.rb
230
+ - test/throwaway_haml/config/initializers/secret_token.rb
231
+ - test/throwaway_haml/config/initializers/session_store.rb
232
+ - test/throwaway_haml/config/initializers/wrap_parameters.rb
233
+ - test/throwaway_haml/config/locales/en.yml
234
+ - test/throwaway_haml/config/routes.rb
235
+ - test/throwaway_haml/config.ru
236
+ - test/throwaway_haml/db/development.sqlite3
237
+ - test/throwaway_haml/db/migrate/20131014134500_create_books.rb
238
+ - test/throwaway_haml/db/schema.rb
239
+ - test/throwaway_haml/db/seeds.rb
240
+ - test/throwaway_haml/db/test.sqlite3
241
+ - test/throwaway_haml/log/development.log
242
+ - test/throwaway_haml/log/test.log
243
+ - test/throwaway_haml/public/404.html
244
+ - test/throwaway_haml/public/422.html
245
+ - test/throwaway_haml/public/500.html
246
+ - test/throwaway_haml/public/favicon.ico
247
+ - test/throwaway_haml/Rakefile
248
+ - test/throwaway_haml/README.rdoc
249
+ - test/throwaway_haml/test/fixtures/books.yml
250
+ - test/throwaway_haml/test/views/index.html.erb_test.rb
251
+ - test/throwaway_haml/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
252
+ - test/throwaway_haml/tmp/cache/assets/development/sprockets/2afdbb3902a1be5d2f045cfc837903a3
253
+ - test/throwaway_haml/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
254
+ - test/throwaway_haml/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
255
+ - test/throwaway_haml/tmp/cache/assets/development/sprockets/5a15e52e84502f9fceb7ea04020f65fc
256
+ - test/throwaway_haml/tmp/cache/assets/development/sprockets/64db420a3a172209bf0b734312a4888a
257
+ - test/throwaway_haml/tmp/cache/assets/development/sprockets/67ff5689dfcb845e86b74aa2d787edef
258
+ - test/throwaway_haml/tmp/cache/assets/development/sprockets/787b6a4c2386b5edf98f90508b85cc3d
259
+ - test/throwaway_haml/tmp/cache/assets/development/sprockets/b950c5d77d355ffc7f0edf748e04b138
260
+ - test/throwaway_haml/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
261
+ - test/throwaway_haml/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
262
+ - test/throwaway_haml/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
121
263
  - test/unified_partials_test.rb
122
264
  homepage: http://github.com/samsm/unified_partials
123
265
  licenses: []
@@ -138,7 +280,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
138
280
  version: '0'
139
281
  requirements: []
140
282
  rubyforge_project:
141
- rubygems_version: 2.0.6
283
+ rubygems_version: 2.0.3
142
284
  signing_key:
143
285
  specification_version: 4
144
286
  summary: Site-wide view partials made easier.
@@ -202,5 +344,134 @@ test_files:
202
344
  - test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
203
345
  - test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
204
346
  - test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
347
+ - test/haml-railtie.rb
205
348
  - test/test_helper.rb
349
+ - test/throwaway/app/assets/javascripts/application.js
350
+ - test/throwaway/app/assets/javascripts/books.js
351
+ - test/throwaway/app/assets/stylesheets/application.css
352
+ - test/throwaway/app/assets/stylesheets/books.css
353
+ - test/throwaway/app/controllers/application_controller.rb
354
+ - test/throwaway/app/controllers/books_controller.rb
355
+ - test/throwaway/app/helpers/application_helper.rb
356
+ - test/throwaway/app/helpers/books_helper.rb
357
+ - test/throwaway/app/models/book.rb
358
+ - test/throwaway/app/views/attribute_presentation/_associated.html.erb
359
+ - test/throwaway/app/views/attribute_presentation/_default.html.erb
360
+ - test/throwaway/app/views/attribute_presentation/_heading.html.erb
361
+ - test/throwaway/app/views/attribute_presentation/_label.html.erb
362
+ - test/throwaway/app/views/attribute_presentation/_layout.html.erb
363
+ - test/throwaway/app/views/books/index.html.erb
364
+ - test/throwaway/app/views/layouts/application.html.erb
365
+ - test/throwaway/bin/bundle
366
+ - test/throwaway/bin/rails
367
+ - test/throwaway/bin/rake
368
+ - test/throwaway/config/application.rb
369
+ - test/throwaway/config/boot.rb
370
+ - test/throwaway/config/database.yml
371
+ - test/throwaway/config/environment.rb
372
+ - test/throwaway/config/environments/development.rb
373
+ - test/throwaway/config/environments/production.rb
374
+ - test/throwaway/config/environments/test.rb
375
+ - test/throwaway/config/initializers/backtrace_silencers.rb
376
+ - test/throwaway/config/initializers/filter_parameter_logging.rb
377
+ - test/throwaway/config/initializers/inflections.rb
378
+ - test/throwaway/config/initializers/mime_types.rb
379
+ - test/throwaway/config/initializers/secret_token.rb
380
+ - test/throwaway/config/initializers/session_store.rb
381
+ - test/throwaway/config/initializers/wrap_parameters.rb
382
+ - test/throwaway/config/locales/en.yml
383
+ - test/throwaway/config/routes.rb
384
+ - test/throwaway/config.ru
385
+ - test/throwaway/db/development.sqlite3
386
+ - test/throwaway/db/migrate/20131014134500_create_books.rb
387
+ - test/throwaway/db/schema.rb
388
+ - test/throwaway/db/seeds.rb
389
+ - test/throwaway/db/test.sqlite3
390
+ - test/throwaway/log/development.log
391
+ - test/throwaway/log/test.log
392
+ - test/throwaway/public/404.html
393
+ - test/throwaway/public/422.html
394
+ - test/throwaway/public/500.html
395
+ - test/throwaway/public/favicon.ico
396
+ - test/throwaway/Rakefile
397
+ - test/throwaway/README.rdoc
398
+ - test/throwaway/test/fixtures/books.yml
399
+ - test/throwaway/test/views/index.html.erb_test.rb
400
+ - test/throwaway/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
401
+ - test/throwaway/tmp/cache/assets/development/sprockets/2afdbb3902a1be5d2f045cfc837903a3
402
+ - test/throwaway/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
403
+ - test/throwaway/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
404
+ - test/throwaway/tmp/cache/assets/development/sprockets/5a15e52e84502f9fceb7ea04020f65fc
405
+ - test/throwaway/tmp/cache/assets/development/sprockets/64db420a3a172209bf0b734312a4888a
406
+ - test/throwaway/tmp/cache/assets/development/sprockets/67ff5689dfcb845e86b74aa2d787edef
407
+ - test/throwaway/tmp/cache/assets/development/sprockets/787b6a4c2386b5edf98f90508b85cc3d
408
+ - test/throwaway/tmp/cache/assets/development/sprockets/b950c5d77d355ffc7f0edf748e04b138
409
+ - test/throwaway/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
410
+ - test/throwaway/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
411
+ - test/throwaway/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
412
+ - test/throwaway_haml/app/assets/javascripts/application.js
413
+ - test/throwaway_haml/app/assets/javascripts/books.js
414
+ - test/throwaway_haml/app/assets/stylesheets/application.css
415
+ - test/throwaway_haml/app/assets/stylesheets/books.css
416
+ - test/throwaway_haml/app/controllers/application_controller.rb
417
+ - test/throwaway_haml/app/controllers/books_controller.rb
418
+ - test/throwaway_haml/app/helpers/application_helper.rb
419
+ - test/throwaway_haml/app/helpers/books_helper.rb
420
+ - test/throwaway_haml/app/models/book.rb
421
+ - test/throwaway_haml/app/views/attribute_presentation/_associated.html.haml
422
+ - test/throwaway_haml/app/views/attribute_presentation/_default.html.haml
423
+ - test/throwaway_haml/app/views/attribute_presentation/_heading.html.haml
424
+ - test/throwaway_haml/app/views/attribute_presentation/_label.html.haml
425
+ - test/throwaway_haml/app/views/attribute_presentation/_layout.html.erb
426
+ - test/throwaway_haml/app/views/attribute_presentation/_layout.html.haml
427
+ - test/throwaway_haml/app/views/books/index.html.erb
428
+ - test/throwaway_haml/app/views/layouts/application.html.erb
429
+ - test/throwaway_haml/bin/bundle
430
+ - test/throwaway_haml/bin/rails
431
+ - test/throwaway_haml/bin/rake
432
+ - test/throwaway_haml/config/application.rb
433
+ - test/throwaway_haml/config/boot.rb
434
+ - test/throwaway_haml/config/database.yml
435
+ - test/throwaway_haml/config/environment.rb
436
+ - test/throwaway_haml/config/environments/development.rb
437
+ - test/throwaway_haml/config/environments/production.rb
438
+ - test/throwaway_haml/config/environments/test.rb
439
+ - test/throwaway_haml/config/initializers/backtrace_silencers.rb
440
+ - test/throwaway_haml/config/initializers/filter_parameter_logging.rb
441
+ - test/throwaway_haml/config/initializers/haml-railtie.rb
442
+ - test/throwaway_haml/config/initializers/inflections.rb
443
+ - test/throwaway_haml/config/initializers/mime_types.rb
444
+ - test/throwaway_haml/config/initializers/secret_token.rb
445
+ - test/throwaway_haml/config/initializers/session_store.rb
446
+ - test/throwaway_haml/config/initializers/wrap_parameters.rb
447
+ - test/throwaway_haml/config/locales/en.yml
448
+ - test/throwaway_haml/config/routes.rb
449
+ - test/throwaway_haml/config.ru
450
+ - test/throwaway_haml/db/development.sqlite3
451
+ - test/throwaway_haml/db/migrate/20131014134500_create_books.rb
452
+ - test/throwaway_haml/db/schema.rb
453
+ - test/throwaway_haml/db/seeds.rb
454
+ - test/throwaway_haml/db/test.sqlite3
455
+ - test/throwaway_haml/log/development.log
456
+ - test/throwaway_haml/log/test.log
457
+ - test/throwaway_haml/public/404.html
458
+ - test/throwaway_haml/public/422.html
459
+ - test/throwaway_haml/public/500.html
460
+ - test/throwaway_haml/public/favicon.ico
461
+ - test/throwaway_haml/Rakefile
462
+ - test/throwaway_haml/README.rdoc
463
+ - test/throwaway_haml/test/fixtures/books.yml
464
+ - test/throwaway_haml/test/views/index.html.erb_test.rb
465
+ - test/throwaway_haml/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
466
+ - test/throwaway_haml/tmp/cache/assets/development/sprockets/2afdbb3902a1be5d2f045cfc837903a3
467
+ - test/throwaway_haml/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af
468
+ - test/throwaway_haml/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
469
+ - test/throwaway_haml/tmp/cache/assets/development/sprockets/5a15e52e84502f9fceb7ea04020f65fc
470
+ - test/throwaway_haml/tmp/cache/assets/development/sprockets/64db420a3a172209bf0b734312a4888a
471
+ - test/throwaway_haml/tmp/cache/assets/development/sprockets/67ff5689dfcb845e86b74aa2d787edef
472
+ - test/throwaway_haml/tmp/cache/assets/development/sprockets/787b6a4c2386b5edf98f90508b85cc3d
473
+ - test/throwaway_haml/tmp/cache/assets/development/sprockets/b950c5d77d355ffc7f0edf748e04b138
474
+ - test/throwaway_haml/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994
475
+ - test/throwaway_haml/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
476
+ - test/throwaway_haml/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
206
477
  - test/unified_partials_test.rb