wheels 0.1.10 → 0.1.11

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