wheels 0.1.11 → 0.1.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (300) hide show
  1. data/LICENSE +20 -0
  2. data/README.rdoc +17 -0
  3. data/Rakefile +22 -22
  4. data/VERSION +1 -0
  5. data/app/controllers/access_control_entries_controller.rb +38 -0
  6. data/app/controllers/app_configs_controller.rb +17 -0
  7. data/app/controllers/application_controller.rb +39 -0
  8. data/app/controllers/attachments_controller.rb +16 -0
  9. data/app/controllers/blogs_controller.rb +39 -0
  10. data/app/controllers/discussions_controller.rb +10 -0
  11. data/app/controllers/external_links_controller.rb +5 -0
  12. data/app/controllers/feedbacks_controller.rb +10 -0
  13. data/app/controllers/forum_messages_controller.rb +13 -0
  14. data/app/controllers/forums_controller.rb +2 -0
  15. data/app/controllers/galleries_controller.rb +60 -0
  16. data/app/controllers/images_controller.rb +30 -0
  17. data/app/controllers/menus_controller.rb +2 -0
  18. data/app/controllers/pages_controller.rb +80 -0
  19. data/app/controllers/profiles_controller.rb +16 -0
  20. data/app/controllers/sitemaps_controller.rb +135 -0
  21. data/app/controllers/users_controller.rb +28 -0
  22. data/app/helpers/access_control_entries_helper.rb +2 -0
  23. data/app/helpers/app_configs_helper.rb +2 -0
  24. data/app/helpers/application_helper.rb +43 -0
  25. data/app/helpers/blogs_helper.rb +10 -0
  26. data/app/helpers/discussions_helper.rb +2 -0
  27. data/app/helpers/external_links_helper.rb +2 -0
  28. data/app/helpers/feedbacks_helper.rb +2 -0
  29. data/app/helpers/forums_helper.rb +2 -0
  30. data/app/helpers/menus_helper.rb +2 -0
  31. data/app/helpers/pages_helper.rb +192 -0
  32. data/app/helpers/sitemaps_helper.rb +12 -0
  33. data/app/mailers/feedback_mailer.rb +10 -0
  34. data/app/models/ability.rb +43 -0
  35. data/app/models/access_control_entry.rb +109 -0
  36. data/app/models/app_config.rb +26 -0
  37. data/app/models/attachment.rb +10 -0
  38. data/app/models/blog.rb +10 -0
  39. data/app/models/discussion.rb +19 -0
  40. data/app/models/external_link.rb +10 -0
  41. data/app/models/feedback.rb +11 -0
  42. data/app/models/forum.rb +4 -0
  43. data/app/models/forum_message.rb +5 -0
  44. data/app/models/gallery.rb +5 -0
  45. data/app/models/image.rb +10 -0
  46. data/app/models/menu.rb +5 -0
  47. data/app/models/page.rb +8 -0
  48. data/app/models/page_revision.rb +2 -0
  49. data/app/models/profile.rb +12 -0
  50. data/app/models/role.rb +29 -0
  51. data/app/models/s3_provider.rb +84 -0
  52. data/app/models/sitemap.rb +175 -0
  53. data/app/models/tagging.rb +4 -0
  54. data/app/models/user.rb +69 -0
  55. data/app/validators/email_validator.rb +22 -0
  56. data/app/views/access_control_entries/_form.html.haml +33 -0
  57. data/app/views/access_control_entries/_index.html.haml +53 -0
  58. data/app/views/access_control_entries/_show.html.haml +12 -0
  59. data/app/views/access_control_entries/create.js.haml +3 -0
  60. data/app/views/access_control_entries/destroy.js.haml +3 -0
  61. data/app/views/access_control_entries/edit.html.haml +7 -0
  62. data/app/views/access_control_entries/edit.js.haml +3 -0
  63. data/app/views/access_control_entries/index.html.haml +2 -0
  64. data/app/views/access_control_entries/index.js.haml +3 -0
  65. data/app/views/access_control_entries/new.html.haml +5 -0
  66. data/app/views/access_control_entries/new.js.haml +3 -0
  67. data/app/views/access_control_entries/show.html.haml +2 -0
  68. data/app/views/access_control_entries/show.js.haml +4 -0
  69. data/app/views/access_control_entries/update.js.haml +3 -0
  70. data/app/views/app_configs/_form.html.haml +11 -0
  71. data/app/views/app_configs/_index.html.haml +6 -0
  72. data/app/views/app_configs/_show.html.haml +3 -0
  73. data/app/views/app_configs/create.js.haml +3 -0
  74. data/app/views/app_configs/css.css.haml +2 -0
  75. data/app/views/app_configs/destroy.js.haml +3 -0
  76. data/app/views/app_configs/edit.html.haml +2 -0
  77. data/app/views/app_configs/edit.js.haml +3 -0
  78. data/app/views/app_configs/index.html.haml +2 -0
  79. data/app/views/app_configs/index.js.haml +3 -0
  80. data/app/views/app_configs/new.html.haml +2 -0
  81. data/app/views/app_configs/new.js.haml +3 -0
  82. data/app/views/app_configs/show.html.haml +2 -0
  83. data/app/views/app_configs/show.js.haml +3 -0
  84. data/app/views/app_configs/update.js.haml +3 -0
  85. data/app/views/attachments/_form.html.haml +26 -0
  86. data/app/views/attachments/_index.html.haml +9 -0
  87. data/app/views/attachments/_show.html.haml +6 -0
  88. data/app/views/attachments/_uploadify.html.erb +12 -0
  89. data/app/views/attachments/create.js.haml +3 -0
  90. data/app/views/attachments/destroy.js.haml +3 -0
  91. data/app/views/attachments/edit.js.haml +3 -0
  92. data/app/views/attachments/index.html.haml +2 -0
  93. data/app/views/attachments/index.js.haml +3 -0
  94. data/app/views/attachments/new.html.haml +3 -0
  95. data/app/views/attachments/new.js.haml +3 -0
  96. data/app/views/attachments/show.html.haml +2 -0
  97. data/app/views/attachments/show.js.haml +3 -0
  98. data/app/views/attachments/update.js.haml +3 -0
  99. data/app/views/blogs/_form.html.haml +22 -0
  100. data/app/views/blogs/edit.html.haml +8 -0
  101. data/app/views/blogs/index.html.haml +21 -0
  102. data/app/views/blogs/index.xml.builder +27 -0
  103. data/app/views/blogs/new.html.haml +6 -0
  104. data/app/views/blogs/show.html.haml +25 -0
  105. data/app/views/discussions/_form.html.haml +16 -0
  106. data/app/views/discussions/edit.html.haml +7 -0
  107. data/app/views/discussions/index.html.haml +10 -0
  108. data/app/views/discussions/new.html.haml +25 -0
  109. data/app/views/discussions/show.html.haml +16 -0
  110. data/app/views/external_links/_fields_for.html.haml +2 -0
  111. data/app/views/external_links/_form.html.haml +18 -0
  112. data/app/views/external_links/_show.html.haml +7 -0
  113. data/app/views/external_links/create.js.haml +3 -0
  114. data/app/views/external_links/destroy.js.haml +3 -0
  115. data/app/views/external_links/edit.html.haml +7 -0
  116. data/app/views/external_links/edit.js.haml +3 -0
  117. data/app/views/external_links/index.html.haml +23 -0
  118. data/app/views/external_links/index.js.haml +3 -0
  119. data/app/views/external_links/new.html.haml +5 -0
  120. data/app/views/external_links/new.js.haml +3 -0
  121. data/app/views/external_links/show.html.haml +2 -0
  122. data/app/views/external_links/show.js.haml +3 -0
  123. data/app/views/external_links/update.js.haml +3 -0
  124. data/app/views/feedback_mailer/submit_feedback.html.haml +22 -0
  125. data/app/views/feedbacks/_form.html.haml +38 -0
  126. data/app/views/feedbacks/index.html.haml +27 -0
  127. data/app/views/feedbacks/new.html.haml +6 -0
  128. data/app/views/feedbacks/show.html.haml +19 -0
  129. data/app/views/forum_messages/_form.html.haml +6 -0
  130. data/app/views/forum_messages/index.html.haml +11 -0
  131. data/app/views/forum_messages/new.html.haml +5 -0
  132. data/app/views/forums/_form.html.haml +13 -0
  133. data/app/views/forums/edit.html.haml +7 -0
  134. data/app/views/forums/index.html.haml +23 -0
  135. data/app/views/forums/new.html.haml +5 -0
  136. data/app/views/forums/show.html.haml +20 -0
  137. data/app/views/galleries/_form.html.haml +30 -0
  138. data/app/views/galleries/_show.html.haml +21 -0
  139. data/app/views/galleries/edit.html.haml +7 -0
  140. data/app/views/galleries/index.html.haml +15 -0
  141. data/app/views/galleries/new.html.haml +5 -0
  142. data/app/views/galleries/show.html.haml +4 -0
  143. data/app/views/images/_form.html.haml +10 -0
  144. data/app/views/images/create.js.haml +3 -0
  145. data/app/views/images/destroy.js.haml +3 -0
  146. data/app/views/images/edit.html.haml +7 -0
  147. data/app/views/images/edit.js.haml +3 -0
  148. data/app/views/images/index.html.haml +17 -0
  149. data/app/views/images/index.js.haml +3 -0
  150. data/app/views/images/new.html.haml +5 -0
  151. data/app/views/images/new.js.haml +3 -0
  152. data/app/views/images/show.html.haml +5 -0
  153. data/app/views/images/show.js.haml +3 -0
  154. data/app/views/images/update.js.haml +3 -0
  155. data/app/views/layouts/application.html.haml +60 -0
  156. data/app/views/layouts/bare.html.haml +2 -0
  157. data/app/views/layouts/image_dialog.html.haml +18 -0
  158. data/app/views/loadbehind/_destroy.js.haml +3 -0
  159. data/app/views/loadbehind/_edit.js.haml +4 -0
  160. data/app/views/loadbehind/_errors.html.haml +5 -0
  161. data/app/views/loadbehind/_growl_template.html.haml +65 -0
  162. data/app/views/loadbehind/_show_box.html.haml +9 -0
  163. data/app/views/loadbehind/_view.js.haml +4 -0
  164. data/app/views/loadbehind/growl.js.haml +4 -0
  165. data/app/views/loadbehind/index.js.haml +4 -0
  166. data/app/views/menus/_form.html.haml +13 -0
  167. data/app/views/menus/edit.html.haml +7 -0
  168. data/app/views/menus/index.html.haml +19 -0
  169. data/app/views/menus/new.html.haml +5 -0
  170. data/app/views/menus/show.html.haml +7 -0
  171. data/app/views/pages/_child_pages_links.html.haml +5 -0
  172. data/app/views/pages/_control_panel.html.haml +15 -0
  173. data/app/views/pages/_form.html.haml +27 -0
  174. data/app/views/pages/_form_fields.html.haml +23 -0
  175. data/app/views/pages/_show.html.haml +4 -0
  176. data/app/views/pages/_show_attachment.html.haml +6 -0
  177. data/app/views/pages/_show_small.html.haml +2 -0
  178. data/app/views/pages/create.js.haml +3 -0
  179. data/app/views/pages/destroy.js.haml +3 -0
  180. data/app/views/pages/edit.html.haml +16 -0
  181. data/app/views/pages/edit.js.haml +4 -0
  182. data/app/views/pages/index.html.haml +19 -0
  183. data/app/views/pages/index.js.haml +3 -0
  184. data/app/views/pages/new.html.haml +5 -0
  185. data/app/views/pages/new.js.haml +3 -0
  186. data/app/views/pages/show.html.haml +18 -0
  187. data/app/views/pages/show.js.haml +3 -0
  188. data/app/views/pages/update.js.haml +3 -0
  189. data/app/views/profiles/_form.html.haml +26 -0
  190. data/app/views/profiles/edit.html.haml +7 -0
  191. data/app/views/profiles/index.html.haml +25 -0
  192. data/app/views/profiles/new.html.haml +5 -0
  193. data/app/views/profiles/show.html.haml +21 -0
  194. data/app/views/sitemaps/edit.html.haml +12 -0
  195. data/app/views/sitemaps/index.html.haml +83 -0
  196. data/app/views/sitemaps/index.json.erb +23 -0
  197. data/app/views/sitemaps/new.html.haml +8 -0
  198. data/app/views/sitemaps/new.js.erb +0 -0
  199. data/app/views/users/edit.html.haml +45 -0
  200. data/app/views/users/index.html.haml +19 -0
  201. data/config/amazon_s3.yml +15 -0
  202. data/db/migrate/0000_devise_create_users.rb +26 -0
  203. data/db/migrate/0010_add_fields_to_users.rb +28 -0
  204. data/db/migrate/0020_create_blogs.rb +16 -0
  205. data/db/migrate/0030_create_galleries.rb +15 -0
  206. data/db/migrate/0040_create_images.rb +17 -0
  207. data/db/migrate/0050_create_profiles.rb +24 -0
  208. data/db/migrate/0060_insert_admin_user_and_roles.rb +24 -0
  209. data/db/migrate/0070_create_pages.rb +16 -0
  210. data/db/migrate/0080_create_forums.rb +13 -0
  211. data/db/migrate/0090_create_discussions.rb +14 -0
  212. data/db/migrate/0100_create_forum_messages.rb +15 -0
  213. data/db/migrate/0110_create_access_control_entries.rb +23 -0
  214. data/db/migrate/0120_create_attachments.rb +17 -0
  215. data/db/migrate/0130_create_roles.rb +13 -0
  216. data/db/migrate/0140_create_feedbacks.rb +20 -0
  217. data/db/migrate/0150_create_external_links.rb +14 -0
  218. data/db/migrate/0160_create_sitemaps.rb +17 -0
  219. data/db/migrate/0170_create_menus.rb +14 -0
  220. data/db/migrate/0180_acts_as_taggable_on_migration.rb +28 -0
  221. data/db/migrate/20100912194121_add_stylesheet_to_pages.rb +9 -0
  222. data/db/migrate/20100913073354_add_position_to_access_control_entries.rb +9 -0
  223. data/init.rb +2 -0
  224. data/lib/{core_extensions.rb → generators/core_extensions.rb} +2 -2
  225. data/lib/generators/templates/haml/app/views/layouts/application.html.haml +0 -0
  226. data/lib/generators/wheels/wheels_generator.rb +2 -0
  227. data/lib/generators/wheels_update/wheels_update_generator.rb +1 -1
  228. data/lib/wheels/routes.rb +13 -2
  229. data/wheels.gemspec +254 -122
  230. metadata +268 -124
  231. data/README +0 -2
  232. data/lib/generators/wheels/recipes/public.rb +0 -9
  233. data/lib/generators/wheels_update/core_extensions.3.rb +0 -64
  234. data/lib/wheels/base.rb +0 -7
  235. data/test/functional/access_control_entries_controller_test.rb +0 -49
  236. data/test/functional/app_configs_controller_test.rb +0 -49
  237. data/test/functional/discussions_controller_test.rb +0 -49
  238. data/test/functional/external_links_controller_test.rb +0 -49
  239. data/test/functional/feedback_mailer_test.rb +0 -8
  240. data/test/functional/feedbacks_controller_test.rb +0 -49
  241. data/test/functional/forums_controller_test.rb +0 -49
  242. data/test/functional/layouts_controller_test.rb +0 -49
  243. data/test/functional/member_pages_controller_test.rb +0 -49
  244. data/test/functional/members_controller_test.rb +0 -8
  245. data/test/functional/menus_controller_test.rb +0 -49
  246. data/test/functional/pages_controller_test.rb +0 -49
  247. data/test/functional/product_revisions_controller_test.rb +0 -49
  248. data/test/performance/browsing_test.rb +0 -9
  249. data/test/test_helper.rb +0 -13
  250. data/test/unit/access_control_entry_test.rb +0 -8
  251. data/test/unit/app_config_test.rb +0 -8
  252. data/test/unit/attachment_test.rb +0 -8
  253. data/test/unit/discussion_test.rb +0 -8
  254. data/test/unit/external_link_test.rb +0 -8
  255. data/test/unit/feedback_test.rb +0 -8
  256. data/test/unit/forum_message_test.rb +0 -8
  257. data/test/unit/forum_test.rb +0 -8
  258. data/test/unit/helpers/access_control_entries_helper_test.rb +0 -4
  259. data/test/unit/helpers/app_configs_helper_test.rb +0 -4
  260. data/test/unit/helpers/discussions_helper_test.rb +0 -4
  261. data/test/unit/helpers/external_links_helper_test.rb +0 -4
  262. data/test/unit/helpers/feedbacks_helper_test.rb +0 -4
  263. data/test/unit/helpers/forums_helper_test.rb +0 -4
  264. data/test/unit/helpers/layouts_helper_test.rb +0 -4
  265. data/test/unit/helpers/member_pages_helper_test.rb +0 -4
  266. data/test/unit/helpers/members_helper_test.rb +0 -4
  267. data/test/unit/helpers/menus_helper_test.rb +0 -4
  268. data/test/unit/helpers/pages_helper_test.rb +0 -4
  269. data/test/unit/helpers/product_revisions_helper_test.rb +0 -4
  270. data/test/unit/layout_test.rb +0 -8
  271. data/test/unit/member_page_test.rb +0 -8
  272. data/test/unit/menu_test.rb +0 -8
  273. data/test/unit/page_revision_test.rb +0 -8
  274. data/test/unit/page_test.rb +0 -8
  275. data/test/unit/product_revision_test.rb +0 -8
  276. data/test/unit/settings_test.rb +0 -8
  277. data/test/unit/sitemap_test.rb +0 -8
  278. data/test/unit/user_test.rb +0 -8
  279. /data/{lib/generators/wheels/templates/haml/app/views/layouts/application.html.haml → app/views/sitemaps/edit.js.erb} +0 -0
  280. /data/lib/generators/{wheels/recipes → recipes}/cancan.rb +0 -0
  281. /data/lib/generators/{wheels/recipes → recipes}/cucumber.rb +0 -0
  282. /data/lib/generators/{wheels/recipes → recipes}/default.rb +0 -0
  283. /data/lib/generators/{wheels/recipes → recipes}/design.rb +0 -0
  284. /data/lib/generators/{wheels/recipes → recipes}/devise.rb +0 -0
  285. /data/lib/generators/{wheels/recipes → recipes}/factory_girl.rb +0 -0
  286. /data/lib/generators/{wheels/recipes → recipes}/haml.rb +0 -0
  287. /data/lib/generators/{wheels/recipes → recipes}/jquery.rb +0 -0
  288. /data/lib/generators/{wheels/recipes → recipes}/mongoid.rb +0 -0
  289. /data/lib/generators/{wheels/recipes → recipes}/postgresql.rb +0 -0
  290. /data/lib/generators/{wheels/recipes → recipes}/recipes.rb +0 -0
  291. /data/lib/generators/{wheels/recipes → recipes}/remarkable.rb +0 -0
  292. /data/lib/generators/{wheels/recipes → recipes}/rspec.rb +0 -0
  293. /data/lib/generators/{wheels/recipes → recipes}/wheels.rb +0 -0
  294. /data/lib/generators/{wheels_update/recipes/wheels.rb → recipes/wheels_update.rb} +0 -0
  295. /data/lib/generators/{wheels/snippets → snippets}/cucumber/database_config +0 -0
  296. /data/lib/generators/{wheels/templates → templates}/cancan/ability.rb +0 -0
  297. /data/lib/generators/{wheels/templates → templates}/database/postgresql.yml +0 -0
  298. /data/lib/generators/{wheels/templates → templates}/git/gitignore +0 -0
  299. /data/lib/generators/{wheels/templates → templates}/mongoid/features/step_definitions/mongoid_steps.rb +0 -0
  300. /data/lib/generators/{wheels/templates → templates}/mongoid/features/support/hooks.rb +0 -0
data/wheels.gemspec CHANGED
@@ -5,50 +5,272 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{wheels}
8
- s.version = "0.1.11"
8
+ s.version = "0.1.12"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Tyler Gannon"]
12
12
  s.date = %q{2010-09-13}
13
- s.description = %q{some extra stuff for rails apps}
14
- s.email = %q{t--g__a--nnon@gmail.com}
13
+ s.description = %q{Call rails generate wheels.}
14
+ s.email = %q{tgannon@gmail.com}
15
15
  s.extra_rdoc_files = [
16
- "README"
16
+ "README.rdoc"
17
17
  ]
18
18
  s.files = [
19
19
  "Gemfile",
20
- "README",
20
+ "LICENSE",
21
+ "README.rdoc",
21
22
  "Rakefile",
22
- "lib/core_extensions.rb",
23
+ "VERSION",
24
+ "app/controllers/access_control_entries_controller.rb",
25
+ "app/controllers/app_configs_controller.rb",
26
+ "app/controllers/application_controller.rb",
27
+ "app/controllers/attachments_controller.rb",
28
+ "app/controllers/blogs_controller.rb",
29
+ "app/controllers/discussions_controller.rb",
30
+ "app/controllers/external_links_controller.rb",
31
+ "app/controllers/feedbacks_controller.rb",
32
+ "app/controllers/forum_messages_controller.rb",
33
+ "app/controllers/forums_controller.rb",
34
+ "app/controllers/galleries_controller.rb",
35
+ "app/controllers/images_controller.rb",
36
+ "app/controllers/menus_controller.rb",
37
+ "app/controllers/pages_controller.rb",
38
+ "app/controllers/profiles_controller.rb",
39
+ "app/controllers/sitemaps_controller.rb",
40
+ "app/controllers/users_controller.rb",
41
+ "app/helpers/access_control_entries_helper.rb",
42
+ "app/helpers/app_configs_helper.rb",
43
+ "app/helpers/application_helper.rb",
44
+ "app/helpers/blogs_helper.rb",
45
+ "app/helpers/discussions_helper.rb",
46
+ "app/helpers/external_links_helper.rb",
47
+ "app/helpers/feedbacks_helper.rb",
48
+ "app/helpers/forums_helper.rb",
49
+ "app/helpers/menus_helper.rb",
50
+ "app/helpers/pages_helper.rb",
51
+ "app/helpers/sitemaps_helper.rb",
52
+ "app/mailers/feedback_mailer.rb",
53
+ "app/models/ability.rb",
54
+ "app/models/access_control_entry.rb",
55
+ "app/models/app_config.rb",
56
+ "app/models/attachment.rb",
57
+ "app/models/blog.rb",
58
+ "app/models/discussion.rb",
59
+ "app/models/external_link.rb",
60
+ "app/models/feedback.rb",
61
+ "app/models/forum.rb",
62
+ "app/models/forum_message.rb",
63
+ "app/models/gallery.rb",
64
+ "app/models/image.rb",
65
+ "app/models/menu.rb",
66
+ "app/models/page.rb",
67
+ "app/models/page_revision.rb",
68
+ "app/models/profile.rb",
69
+ "app/models/role.rb",
70
+ "app/models/s3_provider.rb",
71
+ "app/models/sitemap.rb",
72
+ "app/models/tagging.rb",
73
+ "app/models/user.rb",
74
+ "app/validators/email_validator.rb",
75
+ "app/views/access_control_entries/_form.html.haml",
76
+ "app/views/access_control_entries/_index.html.haml",
77
+ "app/views/access_control_entries/_show.html.haml",
78
+ "app/views/access_control_entries/create.js.haml",
79
+ "app/views/access_control_entries/destroy.js.haml",
80
+ "app/views/access_control_entries/edit.html.haml",
81
+ "app/views/access_control_entries/edit.js.haml",
82
+ "app/views/access_control_entries/index.html.haml",
83
+ "app/views/access_control_entries/index.js.haml",
84
+ "app/views/access_control_entries/new.html.haml",
85
+ "app/views/access_control_entries/new.js.haml",
86
+ "app/views/access_control_entries/show.html.haml",
87
+ "app/views/access_control_entries/show.js.haml",
88
+ "app/views/access_control_entries/update.js.haml",
89
+ "app/views/app_configs/_form.html.haml",
90
+ "app/views/app_configs/_index.html.haml",
91
+ "app/views/app_configs/_show.html.haml",
92
+ "app/views/app_configs/create.js.haml",
93
+ "app/views/app_configs/css.css.haml",
94
+ "app/views/app_configs/destroy.js.haml",
95
+ "app/views/app_configs/edit.html.haml",
96
+ "app/views/app_configs/edit.js.haml",
97
+ "app/views/app_configs/index.html.haml",
98
+ "app/views/app_configs/index.js.haml",
99
+ "app/views/app_configs/new.html.haml",
100
+ "app/views/app_configs/new.js.haml",
101
+ "app/views/app_configs/show.html.haml",
102
+ "app/views/app_configs/show.js.haml",
103
+ "app/views/app_configs/update.js.haml",
104
+ "app/views/attachments/_form.html.haml",
105
+ "app/views/attachments/_index.html.haml",
106
+ "app/views/attachments/_show.html.haml",
107
+ "app/views/attachments/_uploadify.html.erb",
108
+ "app/views/attachments/create.js.haml",
109
+ "app/views/attachments/destroy.js.haml",
110
+ "app/views/attachments/edit.js.haml",
111
+ "app/views/attachments/index.html.haml",
112
+ "app/views/attachments/index.js.haml",
113
+ "app/views/attachments/new.html.haml",
114
+ "app/views/attachments/new.js.haml",
115
+ "app/views/attachments/show.html.haml",
116
+ "app/views/attachments/show.js.haml",
117
+ "app/views/attachments/update.js.haml",
118
+ "app/views/blogs/_form.html.haml",
119
+ "app/views/blogs/edit.html.haml",
120
+ "app/views/blogs/index.html.haml",
121
+ "app/views/blogs/index.xml.builder",
122
+ "app/views/blogs/new.html.haml",
123
+ "app/views/blogs/show.html.haml",
124
+ "app/views/discussions/_form.html.haml",
125
+ "app/views/discussions/edit.html.haml",
126
+ "app/views/discussions/index.html.haml",
127
+ "app/views/discussions/new.html.haml",
128
+ "app/views/discussions/show.html.haml",
129
+ "app/views/external_links/_fields_for.html.haml",
130
+ "app/views/external_links/_form.html.haml",
131
+ "app/views/external_links/_show.html.haml",
132
+ "app/views/external_links/create.js.haml",
133
+ "app/views/external_links/destroy.js.haml",
134
+ "app/views/external_links/edit.html.haml",
135
+ "app/views/external_links/edit.js.haml",
136
+ "app/views/external_links/index.html.haml",
137
+ "app/views/external_links/index.js.haml",
138
+ "app/views/external_links/new.html.haml",
139
+ "app/views/external_links/new.js.haml",
140
+ "app/views/external_links/show.html.haml",
141
+ "app/views/external_links/show.js.haml",
142
+ "app/views/external_links/update.js.haml",
143
+ "app/views/feedback_mailer/submit_feedback.html.haml",
144
+ "app/views/feedbacks/_form.html.haml",
145
+ "app/views/feedbacks/index.html.haml",
146
+ "app/views/feedbacks/new.html.haml",
147
+ "app/views/feedbacks/show.html.haml",
148
+ "app/views/forum_messages/_form.html.haml",
149
+ "app/views/forum_messages/index.html.haml",
150
+ "app/views/forum_messages/new.html.haml",
151
+ "app/views/forums/_form.html.haml",
152
+ "app/views/forums/edit.html.haml",
153
+ "app/views/forums/index.html.haml",
154
+ "app/views/forums/new.html.haml",
155
+ "app/views/forums/show.html.haml",
156
+ "app/views/galleries/_form.html.haml",
157
+ "app/views/galleries/_show.html.haml",
158
+ "app/views/galleries/edit.html.haml",
159
+ "app/views/galleries/index.html.haml",
160
+ "app/views/galleries/new.html.haml",
161
+ "app/views/galleries/show.html.haml",
162
+ "app/views/images/_form.html.haml",
163
+ "app/views/images/create.js.haml",
164
+ "app/views/images/destroy.js.haml",
165
+ "app/views/images/edit.html.haml",
166
+ "app/views/images/edit.js.haml",
167
+ "app/views/images/index.html.haml",
168
+ "app/views/images/index.js.haml",
169
+ "app/views/images/new.html.haml",
170
+ "app/views/images/new.js.haml",
171
+ "app/views/images/show.html.haml",
172
+ "app/views/images/show.js.haml",
173
+ "app/views/images/update.js.haml",
174
+ "app/views/layouts/application.html.haml",
175
+ "app/views/layouts/bare.html.haml",
176
+ "app/views/layouts/image_dialog.html.haml",
177
+ "app/views/loadbehind/_destroy.js.haml",
178
+ "app/views/loadbehind/_edit.js.haml",
179
+ "app/views/loadbehind/_errors.html.haml",
180
+ "app/views/loadbehind/_growl_template.html.haml",
181
+ "app/views/loadbehind/_show_box.html.haml",
182
+ "app/views/loadbehind/_view.js.haml",
183
+ "app/views/loadbehind/growl.js.haml",
184
+ "app/views/loadbehind/index.js.haml",
185
+ "app/views/menus/_form.html.haml",
186
+ "app/views/menus/edit.html.haml",
187
+ "app/views/menus/index.html.haml",
188
+ "app/views/menus/new.html.haml",
189
+ "app/views/menus/show.html.haml",
190
+ "app/views/pages/_child_pages_links.html.haml",
191
+ "app/views/pages/_control_panel.html.haml",
192
+ "app/views/pages/_form.html.haml",
193
+ "app/views/pages/_form_fields.html.haml",
194
+ "app/views/pages/_show.html.haml",
195
+ "app/views/pages/_show_attachment.html.haml",
196
+ "app/views/pages/_show_small.html.haml",
197
+ "app/views/pages/create.js.haml",
198
+ "app/views/pages/destroy.js.haml",
199
+ "app/views/pages/edit.html.haml",
200
+ "app/views/pages/edit.js.haml",
201
+ "app/views/pages/index.html.haml",
202
+ "app/views/pages/index.js.haml",
203
+ "app/views/pages/new.html.haml",
204
+ "app/views/pages/new.js.haml",
205
+ "app/views/pages/show.html.haml",
206
+ "app/views/pages/show.js.haml",
207
+ "app/views/pages/update.js.haml",
208
+ "app/views/profiles/_form.html.haml",
209
+ "app/views/profiles/edit.html.haml",
210
+ "app/views/profiles/index.html.haml",
211
+ "app/views/profiles/new.html.haml",
212
+ "app/views/profiles/show.html.haml",
213
+ "app/views/sitemaps/edit.html.haml",
214
+ "app/views/sitemaps/edit.js.erb",
215
+ "app/views/sitemaps/index.html.haml",
216
+ "app/views/sitemaps/index.json.erb",
217
+ "app/views/sitemaps/new.html.haml",
218
+ "app/views/sitemaps/new.js.erb",
219
+ "app/views/users/edit.html.haml",
220
+ "app/views/users/index.html.haml",
221
+ "config/amazon_s3.yml",
222
+ "db/migrate/0000_devise_create_users.rb",
223
+ "db/migrate/0010_add_fields_to_users.rb",
224
+ "db/migrate/0020_create_blogs.rb",
225
+ "db/migrate/0030_create_galleries.rb",
226
+ "db/migrate/0040_create_images.rb",
227
+ "db/migrate/0050_create_profiles.rb",
228
+ "db/migrate/0060_insert_admin_user_and_roles.rb",
229
+ "db/migrate/0070_create_pages.rb",
230
+ "db/migrate/0080_create_forums.rb",
231
+ "db/migrate/0090_create_discussions.rb",
232
+ "db/migrate/0100_create_forum_messages.rb",
233
+ "db/migrate/0110_create_access_control_entries.rb",
234
+ "db/migrate/0120_create_attachments.rb",
235
+ "db/migrate/0130_create_roles.rb",
236
+ "db/migrate/0140_create_feedbacks.rb",
237
+ "db/migrate/0150_create_external_links.rb",
238
+ "db/migrate/0160_create_sitemaps.rb",
239
+ "db/migrate/0170_create_menus.rb",
240
+ "db/migrate/0180_acts_as_taggable_on_migration.rb",
241
+ "db/migrate/20100912194121_add_stylesheet_to_pages.rb",
242
+ "db/migrate/20100913073354_add_position_to_access_control_entries.rb",
243
+ "init.rb",
23
244
  "lib/development_mail_interceptor.rb",
24
245
  "lib/generators/app_layout/LICENCE",
25
246
  "lib/generators/app_layout/USAGE",
26
247
  "lib/generators/app_layout/app_layout_generator.rb",
248
+ "lib/generators/core_extensions.rb",
249
+ "lib/generators/recipes/cancan.rb",
250
+ "lib/generators/recipes/cucumber.rb",
251
+ "lib/generators/recipes/default.rb",
252
+ "lib/generators/recipes/design.rb",
253
+ "lib/generators/recipes/devise.rb",
254
+ "lib/generators/recipes/factory_girl.rb",
255
+ "lib/generators/recipes/haml.rb",
256
+ "lib/generators/recipes/jquery.rb",
257
+ "lib/generators/recipes/mongoid.rb",
258
+ "lib/generators/recipes/postgresql.rb",
259
+ "lib/generators/recipes/recipes.rb",
260
+ "lib/generators/recipes/remarkable.rb",
261
+ "lib/generators/recipes/rspec.rb",
262
+ "lib/generators/recipes/wheels.rb",
263
+ "lib/generators/recipes/wheels_update.rb",
264
+ "lib/generators/snippets/cucumber/database_config",
265
+ "lib/generators/templates/cancan/ability.rb",
266
+ "lib/generators/templates/database/postgresql.yml",
267
+ "lib/generators/templates/git/gitignore",
268
+ "lib/generators/templates/haml/app/views/layouts/application.html.haml",
269
+ "lib/generators/templates/mongoid/features/step_definitions/mongoid_steps.rb",
270
+ "lib/generators/templates/mongoid/features/support/hooks.rb",
27
271
  "lib/generators/wheels/LICENCE",
28
272
  "lib/generators/wheels/USAGE",
29
- "lib/generators/wheels/recipes/cancan.rb",
30
- "lib/generators/wheels/recipes/cucumber.rb",
31
- "lib/generators/wheels/recipes/default.rb",
32
- "lib/generators/wheels/recipes/design.rb",
33
- "lib/generators/wheels/recipes/devise.rb",
34
- "lib/generators/wheels/recipes/factory_girl.rb",
35
- "lib/generators/wheels/recipes/haml.rb",
36
- "lib/generators/wheels/recipes/jquery.rb",
37
- "lib/generators/wheels/recipes/mongoid.rb",
38
- "lib/generators/wheels/recipes/postgresql.rb",
39
- "lib/generators/wheels/recipes/public.rb",
40
- "lib/generators/wheels/recipes/recipes.rb",
41
- "lib/generators/wheels/recipes/remarkable.rb",
42
- "lib/generators/wheels/recipes/rspec.rb",
43
- "lib/generators/wheels/recipes/wheels.rb",
44
- "lib/generators/wheels/snippets/cucumber/database_config",
45
273
  "lib/generators/wheels/templater.rb",
46
- "lib/generators/wheels/templates/cancan/ability.rb",
47
- "lib/generators/wheels/templates/database/postgresql.yml",
48
- "lib/generators/wheels/templates/git/gitignore",
49
- "lib/generators/wheels/templates/haml/app/views/layouts/application.html.haml",
50
- "lib/generators/wheels/templates/mongoid/features/step_definitions/mongoid_steps.rb",
51
- "lib/generators/wheels/templates/mongoid/features/support/hooks.rb",
52
274
  "lib/generators/wheels/wheels_generator.rb",
53
275
  "lib/generators/wheels_checkout_assets/USAGE",
54
276
  "lib/generators/wheels_checkout_assets/wheels_checkout_assets_generator.rb",
@@ -60,8 +282,6 @@ Gem::Specification.new do |s|
60
282
  "lib/generators/wheels_model/wheels_model_generator.rb",
61
283
  "lib/generators/wheels_update/LICENCE",
62
284
  "lib/generators/wheels_update/USAGE",
63
- "lib/generators/wheels_update/core_extensions.3.rb",
64
- "lib/generators/wheels_update/recipes/wheels.rb",
65
285
  "lib/generators/wheels_update/wheels_update_generator.rb",
66
286
  "lib/generators/wheels_view/USAGE",
67
287
  "lib/generators/wheels_view/wheels_view_generator.rb",
@@ -70,7 +290,6 @@ Gem::Specification.new do |s|
70
290
  "lib/wheels/action_view_helper_extensions.rb",
71
291
  "lib/wheels/active_record_extensions.rb",
72
292
  "lib/wheels/active_record_user_extensions.rb",
73
- "lib/wheels/base.rb",
74
293
  "lib/wheels/flash_session_cookie_middleware.rb",
75
294
  "lib/wheels/paperclip_interpolations.rb",
76
295
  "lib/wheels/password_validators.rb",
@@ -78,112 +297,25 @@ Gem::Specification.new do |s|
78
297
  "lib/wheels/s3login_provider.rb",
79
298
  "lib/wheels/user.rb",
80
299
  "lib/wheels/wheels_engine.rb",
81
- "test/functional/access_control_entries_controller_test.rb",
82
- "test/functional/app_configs_controller_test.rb",
83
- "test/functional/discussions_controller_test.rb",
84
- "test/functional/external_links_controller_test.rb",
85
- "test/functional/feedback_mailer_test.rb",
86
- "test/functional/feedbacks_controller_test.rb",
87
- "test/functional/forums_controller_test.rb",
88
- "test/functional/layouts_controller_test.rb",
89
- "test/functional/member_pages_controller_test.rb",
90
- "test/functional/members_controller_test.rb",
91
- "test/functional/menus_controller_test.rb",
92
- "test/functional/pages_controller_test.rb",
93
- "test/functional/product_revisions_controller_test.rb",
94
- "test/performance/browsing_test.rb",
95
- "test/test_helper.rb",
96
- "test/unit/access_control_entry_test.rb",
97
- "test/unit/app_config_test.rb",
98
- "test/unit/attachment_test.rb",
99
- "test/unit/discussion_test.rb",
100
- "test/unit/external_link_test.rb",
101
- "test/unit/feedback_test.rb",
102
- "test/unit/forum_message_test.rb",
103
- "test/unit/forum_test.rb",
104
- "test/unit/helpers/access_control_entries_helper_test.rb",
105
- "test/unit/helpers/app_configs_helper_test.rb",
106
- "test/unit/helpers/discussions_helper_test.rb",
107
- "test/unit/helpers/external_links_helper_test.rb",
108
- "test/unit/helpers/feedbacks_helper_test.rb",
109
- "test/unit/helpers/forums_helper_test.rb",
110
- "test/unit/helpers/layouts_helper_test.rb",
111
- "test/unit/helpers/member_pages_helper_test.rb",
112
- "test/unit/helpers/members_helper_test.rb",
113
- "test/unit/helpers/menus_helper_test.rb",
114
- "test/unit/helpers/pages_helper_test.rb",
115
- "test/unit/helpers/product_revisions_helper_test.rb",
116
- "test/unit/layout_test.rb",
117
- "test/unit/member_page_test.rb",
118
- "test/unit/menu_test.rb",
119
- "test/unit/page_revision_test.rb",
120
- "test/unit/page_test.rb",
121
- "test/unit/product_revision_test.rb",
122
- "test/unit/settings_test.rb",
123
- "test/unit/sitemap_test.rb",
124
- "test/unit/user_test.rb",
125
300
  "wheels.gemspec"
126
301
  ]
127
302
  s.homepage = %q{http://github.com/tylergannon/wheels}
128
303
  s.rdoc_options = ["--charset=UTF-8"]
129
304
  s.require_paths = ["lib"]
130
305
  s.rubygems_version = %q{1.3.7}
131
- s.summary = %q{My favorite rails goodies all in one}
132
- s.test_files = [
133
- "test/performance/browsing_test.rb",
134
- "test/unit/product_revision_test.rb",
135
- "test/unit/helpers/pages_helper_test.rb",
136
- "test/unit/helpers/layouts_helper_test.rb",
137
- "test/unit/helpers/feedbacks_helper_test.rb",
138
- "test/unit/helpers/member_pages_helper_test.rb",
139
- "test/unit/helpers/product_revisions_helper_test.rb",
140
- "test/unit/helpers/menus_helper_test.rb",
141
- "test/unit/helpers/app_configs_helper_test.rb",
142
- "test/unit/helpers/external_links_helper_test.rb",
143
- "test/unit/helpers/access_control_entries_helper_test.rb",
144
- "test/unit/helpers/members_helper_test.rb",
145
- "test/unit/helpers/forums_helper_test.rb",
146
- "test/unit/helpers/discussions_helper_test.rb",
147
- "test/unit/sitemap_test.rb",
148
- "test/unit/page_revision_test.rb",
149
- "test/unit/discussion_test.rb",
150
- "test/unit/feedback_test.rb",
151
- "test/unit/access_control_entry_test.rb",
152
- "test/unit/layout_test.rb",
153
- "test/unit/page_test.rb",
154
- "test/unit/user_test.rb",
155
- "test/unit/menu_test.rb",
156
- "test/unit/external_link_test.rb",
157
- "test/unit/app_config_test.rb",
158
- "test/unit/forum_message_test.rb",
159
- "test/unit/settings_test.rb",
160
- "test/unit/forum_test.rb",
161
- "test/unit/attachment_test.rb",
162
- "test/unit/member_page_test.rb",
163
- "test/functional/forums_controller_test.rb",
164
- "test/functional/pages_controller_test.rb",
165
- "test/functional/member_pages_controller_test.rb",
166
- "test/functional/menus_controller_test.rb",
167
- "test/functional/external_links_controller_test.rb",
168
- "test/functional/feedbacks_controller_test.rb",
169
- "test/functional/product_revisions_controller_test.rb",
170
- "test/functional/feedback_mailer_test.rb",
171
- "test/functional/layouts_controller_test.rb",
172
- "test/functional/discussions_controller_test.rb",
173
- "test/functional/access_control_entries_controller_test.rb",
174
- "test/functional/members_controller_test.rb",
175
- "test/functional/app_configs_controller_test.rb",
176
- "test/test_helper.rb"
177
- ]
306
+ s.summary = %q{Generator builds a web site with blog, user profile, etc.}
178
307
 
179
308
  if s.respond_to? :specification_version then
180
309
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
181
310
  s.specification_version = 3
182
311
 
183
312
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
313
+ s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
184
314
  else
315
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
185
316
  end
186
317
  else
318
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
187
319
  end
188
320
  end
189
321