muck-invites 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (354) hide show
  1. data/.gitignore +30 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +6 -0
  4. data/Rakefile +66 -0
  5. data/VERSION +1 -0
  6. data/app/controllers/muck/invites_controller.rb +62 -0
  7. data/app/models/invite_mailer.rb +28 -0
  8. data/app/models/user_invite.rb +6 -0
  9. data/app/views/invite_mailer/invite_notification.text.html.erb +9 -0
  10. data/app/views/invite_mailer/invite_notification.text.plain.erb +9 -0
  11. data/app/views/invite_mailer/invited_joined_notification.text.html.erb +5 -0
  12. data/app/views/invite_mailer/invited_joined_notification.text.plain.erb +5 -0
  13. data/app/views/invites/_get_contacts.html.erb +27 -0
  14. data/app/views/invites/new.html.erb +50 -0
  15. data/config/muck_invites_routes.rb +3 -0
  16. data/db/migrate/20090928213532_create_invites.rb +20 -0
  17. data/install.rb +1 -0
  18. data/lib/active_record/acts/muck_invite.rb +57 -0
  19. data/lib/active_record/acts/muck_inviter.rb +68 -0
  20. data/lib/muck_invites.rb +3 -0
  21. data/lib/muck_invites/initialize_routes.rb +8 -0
  22. data/lib/muck_invites/tasks.rb +28 -0
  23. data/locales/ar.yml +19 -0
  24. data/locales/bg.yml +19 -0
  25. data/locales/ca.yml +19 -0
  26. data/locales/cs.yml +19 -0
  27. data/locales/da.yml +19 -0
  28. data/locales/de.yml +19 -0
  29. data/locales/el.yml +19 -0
  30. data/locales/en.yml +19 -0
  31. data/locales/es.yml +19 -0
  32. data/locales/et.yml +19 -0
  33. data/locales/fa.yml +19 -0
  34. data/locales/fi.yml +19 -0
  35. data/locales/fr.yml +19 -0
  36. data/locales/gl.yml +19 -0
  37. data/locales/hi.yml +19 -0
  38. data/locales/hr.yml +19 -0
  39. data/locales/hu.yml +19 -0
  40. data/locales/id.yml +19 -0
  41. data/locales/it.yml +19 -0
  42. data/locales/iw.yml +19 -0
  43. data/locales/ja.yml +19 -0
  44. data/locales/ko.yml +19 -0
  45. data/locales/lt.yml +19 -0
  46. data/locales/lv.yml +19 -0
  47. data/locales/mt.yml +19 -0
  48. data/locales/nl.yml +19 -0
  49. data/locales/no.yml +20 -0
  50. data/locales/pl.yml +19 -0
  51. data/locales/pt-PT.yml +19 -0
  52. data/locales/ro.yml +19 -0
  53. data/locales/ru.yml +19 -0
  54. data/locales/sk.yml +19 -0
  55. data/locales/sl.yml +19 -0
  56. data/locales/sq.yml +19 -0
  57. data/locales/sr.yml +19 -0
  58. data/locales/sv.yml +19 -0
  59. data/locales/th.yml +19 -0
  60. data/locales/tl.yml +19 -0
  61. data/locales/tr.yml +19 -0
  62. data/locales/uk.yml +19 -0
  63. data/locales/vi.yml +19 -0
  64. data/locales/zh-CN.yml +19 -0
  65. data/locales/zh-TW.yml +19 -0
  66. data/locales/zh.yml +19 -0
  67. data/muck-invites.gemspec +454 -0
  68. data/public/stylesheets/muck-invites.css +13 -0
  69. data/rails/init.rb +18 -0
  70. data/tasks/muck_invites_tasks.rake +1 -0
  71. data/test/rails_root/.gitignore +8 -0
  72. data/test/rails_root/.rake_tasks +103 -0
  73. data/test/rails_root/Capfile +3 -0
  74. data/test/rails_root/Rakefile +14 -0
  75. data/test/rails_root/app/controllers/application_controller.rb +23 -0
  76. data/test/rails_root/app/controllers/default_controller.rb +9 -0
  77. data/test/rails_root/app/helpers/application_helper.rb +3 -0
  78. data/test/rails_root/app/models/.keep +0 -0
  79. data/test/rails_root/app/models/activity.rb +26 -0
  80. data/test/rails_root/app/models/invite.rb +4 -0
  81. data/test/rails_root/app/models/user.rb +9 -0
  82. data/test/rails_root/app/models/user_session.rb +2 -0
  83. data/test/rails_root/app/views/default/index.html.erb +2 -0
  84. data/test/rails_root/app/views/layouts/default.html.erb +29 -0
  85. data/test/rails_root/config/boot.rb +109 -0
  86. data/test/rails_root/config/database.yml +23 -0
  87. data/test/rails_root/config/environment.rb +25 -0
  88. data/test/rails_root/config/environments/cucumber.rb +38 -0
  89. data/test/rails_root/config/environments/development.rb +19 -0
  90. data/test/rails_root/config/environments/production.rb +1 -0
  91. data/test/rails_root/config/environments/test.rb +42 -0
  92. data/test/rails_root/config/global_config.yml +81 -0
  93. data/test/rails_root/config/initializers/inflections.rb +10 -0
  94. data/test/rails_root/config/initializers/mime_types.rb +5 -0
  95. data/test/rails_root/config/initializers/requires.rb +13 -0
  96. data/test/rails_root/config/initializers/session_store.rb +8 -0
  97. data/test/rails_root/config/routes.rb +6 -0
  98. data/test/rails_root/db/.keep +0 -0
  99. data/test/rails_root/db/migrate/20090320174818_create_muck_permissions_and_roles.rb +16 -0
  100. data/test/rails_root/db/migrate/20090402033319_add_muck_activities.rb +36 -0
  101. data/test/rails_root/db/migrate/20090402234137_create_languages.rb +18 -0
  102. data/test/rails_root/db/migrate/20090426041056_create_countries.rb +15 -0
  103. data/test/rails_root/db/migrate/20090426041103_create_states.rb +18 -0
  104. data/test/rails_root/db/migrate/20090602041838_create_users.rb +39 -0
  105. data/test/rails_root/db/migrate/20090608073052_create_friends.rb +16 -0
  106. data/test/rails_root/db/migrate/20090703055724_add_contents.rb +49 -0
  107. data/test/rails_root/db/migrate/20090704220055_create_slugs.rb +18 -0
  108. data/test/rails_root/db/migrate/20090928213532_create_invites.rb +20 -0
  109. data/test/rails_root/features/comments.feature +21 -0
  110. data/test/rails_root/features/step_definitions/comment_steps.rb +11 -0
  111. data/test/rails_root/features/step_definitions/common_steps.rb +93 -0
  112. data/test/rails_root/features/step_definitions/webrat_steps.rb +128 -0
  113. data/test/rails_root/features/support/env.rb +49 -0
  114. data/test/rails_root/features/support/paths.rb +33 -0
  115. data/test/rails_root/lib/tasks/cucumber.rake +20 -0
  116. data/test/rails_root/public/.htaccess +40 -0
  117. data/test/rails_root/public/404.html +30 -0
  118. data/test/rails_root/public/422.html +30 -0
  119. data/test/rails_root/public/500.html +30 -0
  120. data/test/rails_root/public/dispatch.rb +10 -0
  121. data/test/rails_root/public/favicon.ico +0 -0
  122. data/test/rails_root/public/images/arrow_down.gif +0 -0
  123. data/test/rails_root/public/images/arrow_left.gif +0 -0
  124. data/test/rails_root/public/images/arrow_right.gif +0 -0
  125. data/test/rails_root/public/images/arrow_up.gif +0 -0
  126. data/test/rails_root/public/images/fancybox/fancy_closebox.png +0 -0
  127. data/test/rails_root/public/images/fancybox/fancy_left.png +0 -0
  128. data/test/rails_root/public/images/fancybox/fancy_progress.png +0 -0
  129. data/test/rails_root/public/images/fancybox/fancy_right.png +0 -0
  130. data/test/rails_root/public/images/fancybox/fancy_shadow_e.png +0 -0
  131. data/test/rails_root/public/images/fancybox/fancy_shadow_n.png +0 -0
  132. data/test/rails_root/public/images/fancybox/fancy_shadow_ne.png +0 -0
  133. data/test/rails_root/public/images/fancybox/fancy_shadow_nw.png +0 -0
  134. data/test/rails_root/public/images/fancybox/fancy_shadow_s.png +0 -0
  135. data/test/rails_root/public/images/fancybox/fancy_shadow_se.png +0 -0
  136. data/test/rails_root/public/images/fancybox/fancy_shadow_sw.png +0 -0
  137. data/test/rails_root/public/images/fancybox/fancy_shadow_w.png +0 -0
  138. data/test/rails_root/public/images/fancybox/fancy_title_left.png +0 -0
  139. data/test/rails_root/public/images/fancybox/fancy_title_main.png +0 -0
  140. data/test/rails_root/public/images/fancybox/fancy_title_right.png +0 -0
  141. data/test/rails_root/public/images/icons/accept.png +0 -0
  142. data/test/rails_root/public/images/icons/add.png +0 -0
  143. data/test/rails_root/public/images/icons/blue_guy.png +0 -0
  144. data/test/rails_root/public/images/icons/button_background.png +0 -0
  145. data/test/rails_root/public/images/icons/cancel.png +0 -0
  146. data/test/rails_root/public/images/icons/close.png +0 -0
  147. data/test/rails_root/public/images/icons/comment.png +0 -0
  148. data/test/rails_root/public/images/icons/delete.png +0 -0
  149. data/test/rails_root/public/images/icons/exclaim.png +0 -0
  150. data/test/rails_root/public/images/icons/grey_guy.png +0 -0
  151. data/test/rails_root/public/images/icons/hide.png +0 -0
  152. data/test/rails_root/public/images/icons/information.png +0 -0
  153. data/test/rails_root/public/images/icons/minus.png +0 -0
  154. data/test/rails_root/public/images/icons/question.png +0 -0
  155. data/test/rails_root/public/images/icons/search_box.png +0 -0
  156. data/test/rails_root/public/images/icons/star.png +0 -0
  157. data/test/rails_root/public/images/icons/stop.png +0 -0
  158. data/test/rails_root/public/images/icons/thumb_down.png +0 -0
  159. data/test/rails_root/public/images/icons/thumb_up.png +0 -0
  160. data/test/rails_root/public/images/icons/vote.png +0 -0
  161. data/test/rails_root/public/images/loading.gif +0 -0
  162. data/test/rails_root/public/images/nothing.png +0 -0
  163. data/test/rails_root/public/images/profile_default.jpg +0 -0
  164. data/test/rails_root/public/images/rails.png +0 -0
  165. data/test/rails_root/public/images/spinner.gif +0 -0
  166. data/test/rails_root/public/images/sprites.png +0 -0
  167. data/test/rails_root/public/javascripts/application.js +2 -0
  168. data/test/rails_root/public/javascripts/builder.js +136 -0
  169. data/test/rails_root/public/javascripts/controls.js +963 -0
  170. data/test/rails_root/public/javascripts/dragdrop.js +972 -0
  171. data/test/rails_root/public/javascripts/effects.js +1120 -0
  172. data/test/rails_root/public/javascripts/fancyzoom.min.js +1 -0
  173. data/test/rails_root/public/javascripts/jquery/jquery-ui.js +273 -0
  174. data/test/rails_root/public/javascripts/jquery/jquery.easing.js +1 -0
  175. data/test/rails_root/public/javascripts/jquery/jquery.fancybox.js +9 -0
  176. data/test/rails_root/public/javascripts/jquery/jquery.form.js +637 -0
  177. data/test/rails_root/public/javascripts/jquery/jquery.jgrowl.js +2 -0
  178. data/test/rails_root/public/javascripts/jquery/jquery.js +19 -0
  179. data/test/rails_root/public/javascripts/jquery/jquery.tips.js +69 -0
  180. data/test/rails_root/public/javascripts/jquery/jrails.js +1 -0
  181. data/test/rails_root/public/javascripts/muck.js +81 -0
  182. data/test/rails_root/public/javascripts/muck_activities.js +108 -0
  183. data/test/rails_root/public/javascripts/muck_time/en.js +53 -0
  184. data/test/rails_root/public/javascripts/prototype.js +4225 -0
  185. data/test/rails_root/public/javascripts/scriptaculous.js +58 -0
  186. data/test/rails_root/public/javascripts/slider.js +277 -0
  187. data/test/rails_root/public/javascripts/sound.js +60 -0
  188. data/test/rails_root/public/robots.txt +1 -0
  189. data/test/rails_root/public/stylesheets/.keep +0 -0
  190. data/test/rails_root/public/stylesheets/admin.css +12 -0
  191. data/test/rails_root/public/stylesheets/blueprint/ie.css +26 -0
  192. data/test/rails_root/public/stylesheets/blueprint/liquid_screen.css +203 -0
  193. data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/icons/cross.png +0 -0
  194. data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/icons/key.png +0 -0
  195. data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/icons/tick.png +0 -0
  196. data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/readme.txt +32 -0
  197. data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/screen.css +97 -0
  198. data/test/rails_root/public/stylesheets/blueprint/plugins/fancy-type/readme.txt +14 -0
  199. data/test/rails_root/public/stylesheets/blueprint/plugins/fancy-type/screen.css +71 -0
  200. data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/doc.png +0 -0
  201. data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/email.png +0 -0
  202. data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/external.png +0 -0
  203. data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/feed.png +0 -0
  204. data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/im.png +0 -0
  205. data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/pdf.png +0 -0
  206. data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/visited.png +0 -0
  207. data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/xls.png +0 -0
  208. data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/readme.txt +18 -0
  209. data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/screen.css +40 -0
  210. data/test/rails_root/public/stylesheets/blueprint/plugins/liquid/liquid.css +134 -0
  211. data/test/rails_root/public/stylesheets/blueprint/plugins/liquid/src/liquid.css +197 -0
  212. data/test/rails_root/public/stylesheets/blueprint/plugins/rtl/readme.txt +10 -0
  213. data/test/rails_root/public/stylesheets/blueprint/plugins/rtl/screen.css +109 -0
  214. data/test/rails_root/public/stylesheets/blueprint/print.css +30 -0
  215. data/test/rails_root/public/stylesheets/blueprint/screen.css +251 -0
  216. data/test/rails_root/public/stylesheets/blueprint/sprite.css +1 -0
  217. data/test/rails_root/public/stylesheets/blueprint/src/forms.css +49 -0
  218. data/test/rails_root/public/stylesheets/blueprint/src/grid.css +213 -0
  219. data/test/rails_root/public/stylesheets/blueprint/src/grid.png +0 -0
  220. data/test/rails_root/public/stylesheets/blueprint/src/ie.css +59 -0
  221. data/test/rails_root/public/stylesheets/blueprint/src/print.css +85 -0
  222. data/test/rails_root/public/stylesheets/blueprint/src/reset.css +38 -0
  223. data/test/rails_root/public/stylesheets/blueprint/src/typography.css +105 -0
  224. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png +0 -0
  225. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_diagonals-thick_15_444444_40x40.png +0 -0
  226. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_100_f0f0f0_1x400.png +0 -0
  227. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_50_99c2ff_1x400.png +0 -0
  228. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_55_fbf5d0_1x400.png +0 -0
  229. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_80_e6e6e6_1x400.png +0 -0
  230. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  231. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png +0 -0
  232. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_highlight-soft_100_e7eef3_1x100.png +0 -0
  233. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_222222_256x240.png +0 -0
  234. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_2694e8_256x240.png +0 -0
  235. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_2e83ff_256x240.png +0 -0
  236. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_72a7cf_256x240.png +0 -0
  237. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_888888_256x240.png +0 -0
  238. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_cd0a0a_256x240.png +0 -0
  239. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_ffffff_256x240.png +0 -0
  240. data/test/rails_root/public/stylesheets/jquery/cupertino/jquery-ui-1.7.1.custom.css +404 -0
  241. data/test/rails_root/public/stylesheets/jquery/jquery.fancybox.css +44 -0
  242. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  243. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
  244. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
  245. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
  246. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  247. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
  248. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
  249. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
  250. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_217bc0_256x240.png +0 -0
  251. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_2e83ff_256x240.png +0 -0
  252. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_469bdd_256x240.png +0 -0
  253. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_6da8d5_256x240.png +0 -0
  254. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
  255. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
  256. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_f9bd01_256x240.png +0 -0
  257. data/test/rails_root/public/stylesheets/jquery/redmond/jquery-ui-1.7.1.custom.css +404 -0
  258. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  259. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  260. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  261. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  262. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  263. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  264. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  265. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  266. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_222222_256x240.png +0 -0
  267. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
  268. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_454545_256x240.png +0 -0
  269. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_888888_256x240.png +0 -0
  270. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
  271. data/test/rails_root/public/stylesheets/jquery/smoothness/jquery-ui-1.7.1.custom.css +404 -0
  272. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
  273. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
  274. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
  275. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
  276. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
  277. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  278. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
  279. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
  280. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
  281. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_222222_256x240.png +0 -0
  282. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
  283. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -0
  284. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -0
  285. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -0
  286. data/test/rails_root/public/stylesheets/jquery/ui-lightness/jquery-ui-1.7.1.custom.css +404 -0
  287. data/test/rails_root/public/stylesheets/muck-invites.css +13 -0
  288. data/test/rails_root/public/stylesheets/reset.css +0 -0
  289. data/test/rails_root/public/stylesheets/styles.css +85 -0
  290. data/test/rails_root/public/stylesheets/themes/blue/styles.css +1 -0
  291. data/test/rails_root/public/stylesheets/themes/red/styles.css +1 -0
  292. data/test/rails_root/script/about +3 -0
  293. data/test/rails_root/script/breakpointer +3 -0
  294. data/test/rails_root/script/console +3 -0
  295. data/test/rails_root/script/create_project.rb +52 -0
  296. data/test/rails_root/script/cucumber +8 -0
  297. data/test/rails_root/script/dbconsole +3 -0
  298. data/test/rails_root/script/destroy +3 -0
  299. data/test/rails_root/script/generate +3 -0
  300. data/test/rails_root/script/performance/benchmarker +3 -0
  301. data/test/rails_root/script/performance/profiler +3 -0
  302. data/test/rails_root/script/performance/request +3 -0
  303. data/test/rails_root/script/plugin +3 -0
  304. data/test/rails_root/script/process/inspector +3 -0
  305. data/test/rails_root/script/process/reaper +3 -0
  306. data/test/rails_root/script/process/spawner +3 -0
  307. data/test/rails_root/script/runner +3 -0
  308. data/test/rails_root/script/server +3 -0
  309. data/test/rails_root/test/factories.rb +73 -0
  310. data/test/rails_root/test/functional/.keep +0 -0
  311. data/test/rails_root/test/functional/invites_controller_test.rb +67 -0
  312. data/test/rails_root/test/mocks/development/.keep +0 -0
  313. data/test/rails_root/test/mocks/test/.keep +0 -0
  314. data/test/rails_root/test/shoulda_macros/controller.rb +49 -0
  315. data/test/rails_root/test/shoulda_macros/forms.rb +32 -0
  316. data/test/rails_root/test/shoulda_macros/models.rb +50 -0
  317. data/test/rails_root/test/shoulda_macros/pagination.rb +53 -0
  318. data/test/rails_root/test/shoulda_macros/plugins.rb +34 -0
  319. data/test/rails_root/test/test_helper.rb +48 -0
  320. data/test/rails_root/test/unit/.keep +0 -0
  321. data/test/rails_root/test/unit/contacts_test.rb +37 -0
  322. data/test/rails_root/test/unit/invite_mailer_test.rb +41 -0
  323. data/test/rails_root/test/unit/invite_test.rb +140 -0
  324. data/test/rails_root/test/unit/user_test.rb +18 -0
  325. data/test/rails_root/vendor/plugins/jrails/CHANGELOG +43 -0
  326. data/test/rails_root/vendor/plugins/jrails/LICENSE +18 -0
  327. data/test/rails_root/vendor/plugins/jrails/README.rdoc +21 -0
  328. data/test/rails_root/vendor/plugins/jrails/Rakefile +18 -0
  329. data/test/rails_root/vendor/plugins/jrails/VERSION.yml +4 -0
  330. data/test/rails_root/vendor/plugins/jrails/bin/jrails +30 -0
  331. data/test/rails_root/vendor/plugins/jrails/init.rb +1 -0
  332. data/test/rails_root/vendor/plugins/jrails/install.rb +9 -0
  333. data/test/rails_root/vendor/plugins/jrails/javascripts/jquery-ui.js +188 -0
  334. data/test/rails_root/vendor/plugins/jrails/javascripts/jquery.js +19 -0
  335. data/test/rails_root/vendor/plugins/jrails/javascripts/jrails.js +1 -0
  336. data/test/rails_root/vendor/plugins/jrails/javascripts/sources/jrails.js +197 -0
  337. data/test/rails_root/vendor/plugins/jrails/jrails.gemspec +50 -0
  338. data/test/rails_root/vendor/plugins/jrails/lib/jrails.rb +421 -0
  339. data/test/rails_root/vendor/plugins/jrails/rails/init.rb +15 -0
  340. data/test/rails_root/vendor/plugins/jrails/tasks/jrails.rake +25 -0
  341. data/test/rails_root/vendor/plugins/ssl_requirement/README +43 -0
  342. data/test/rails_root/vendor/plugins/ssl_requirement/lib/ssl_requirement.rb +62 -0
  343. data/test/rails_root/vendor/plugins/ssl_requirement/test/ssl_requirement_test.rb +132 -0
  344. data/test/rails_root/vendor/plugins/validation_reflection/CHANGELOG +24 -0
  345. data/test/rails_root/vendor/plugins/validation_reflection/LICENSE +20 -0
  346. data/test/rails_root/vendor/plugins/validation_reflection/README +64 -0
  347. data/test/rails_root/vendor/plugins/validation_reflection/Rakefile +22 -0
  348. data/test/rails_root/vendor/plugins/validation_reflection/about.yml +7 -0
  349. data/test/rails_root/vendor/plugins/validation_reflection/init.rb +8 -0
  350. data/test/rails_root/vendor/plugins/validation_reflection/lib/boiler_plate/validation_reflection.rb +129 -0
  351. data/test/rails_root/vendor/plugins/validation_reflection/test/test_helper.rb +36 -0
  352. data/test/rails_root/vendor/plugins/validation_reflection/test/validation_reflection_test.rb +126 -0
  353. data/uninstall.rb +1 -0
  354. metadata +482 -0
@@ -0,0 +1,43 @@
1
+ SSL Requirement
2
+ ===============
3
+
4
+ SSL requirement adds a declarative way of specifying that certain actions
5
+ should only be allowed to run under SSL, and if they're accessed without it,
6
+ they should be redirected.
7
+
8
+ Example:
9
+
10
+ class ApplicationController < ActiveRecord::Base
11
+ include SslRequirement
12
+ end
13
+
14
+ class AccountController < ApplicationController
15
+ ssl_required :signup, :payment
16
+ ssl_allowed :index
17
+
18
+ def signup
19
+ # Non-SSL access will be redirected to SSL
20
+ end
21
+
22
+ def payment
23
+ # Non-SSL access will be redirected to SSL
24
+ end
25
+
26
+ def index
27
+ # This action will work either with or without SSL
28
+ end
29
+
30
+ def other
31
+ # SSL access will be redirected to non-SSL
32
+ end
33
+ end
34
+
35
+ You can overwrite the protected method ssl_required? to rely on other things
36
+ than just the declarative specification. Say, only premium accounts get SSL.
37
+
38
+ P.S.: Beware when you include the SslRequirement module. At the time of
39
+ inclusion, it'll add the before_filter that validates the declarations. Some
40
+ times you'll want to run other before_filters before that. They should then be
41
+ declared ahead of including this module.
42
+
43
+ Copyright (c) 2005 David Heinemeier Hansson, released under the MIT license
@@ -0,0 +1,62 @@
1
+ # Copyright (c) 2005 David Heinemeier Hansson
2
+ #
3
+ # Permission is hereby granted, free of charge, to any person obtaining
4
+ # a copy of this software and associated documentation files (the
5
+ # "Software"), to deal in the Software without restriction, including
6
+ # without limitation the rights to use, copy, modify, merge, publish,
7
+ # distribute, sublicense, and/or sell copies of the Software, and to
8
+ # permit persons to whom the Software is furnished to do so, subject to
9
+ # the following conditions:
10
+ #
11
+ # The above copyright notice and this permission notice shall be
12
+ # included in all copies or substantial portions of the Software.
13
+ #
14
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
+ module SslRequirement
22
+ def self.included(controller)
23
+ controller.extend(ClassMethods)
24
+ controller.before_filter(:ensure_proper_protocol)
25
+ end
26
+
27
+ module ClassMethods
28
+ # Specifies that the named actions requires an SSL connection to be performed (which is enforced by ensure_proper_protocol).
29
+ def ssl_required(*actions)
30
+ write_inheritable_array(:ssl_required_actions, actions)
31
+ end
32
+
33
+ def ssl_allowed(*actions)
34
+ write_inheritable_array(:ssl_allowed_actions, actions)
35
+ end
36
+ end
37
+
38
+ protected
39
+ # Returns true if the current action is supposed to run as SSL
40
+ def ssl_required?
41
+ (self.class.read_inheritable_attribute(:ssl_required_actions) || []).include?(action_name.to_sym)
42
+ end
43
+
44
+ def ssl_allowed?
45
+ (self.class.read_inheritable_attribute(:ssl_allowed_actions) || []).include?(action_name.to_sym)
46
+ end
47
+
48
+ private
49
+ def ensure_proper_protocol
50
+ return true if ssl_allowed?
51
+
52
+ if ssl_required? && !request.ssl?
53
+ redirect_to "https://" + request.host + request.request_uri
54
+ flash.keep
55
+ return false
56
+ elsif request.ssl? && !ssl_required?
57
+ redirect_to "http://" + request.host + request.request_uri
58
+ flash.keep
59
+ return false
60
+ end
61
+ end
62
+ end
@@ -0,0 +1,132 @@
1
+ begin
2
+ require 'action_controller'
3
+ rescue LoadError
4
+ if ENV['ACTIONCONTROLLER_PATH'].nil?
5
+ abort <<MSG
6
+ Please set the ACTIONCONTROLLER_PATH environment variable to the directory
7
+ containing the action_controller.rb file.
8
+ MSG
9
+ else
10
+ $LOAD_PATH.unshift << ENV['ACTIONCONTROLLER_PATH']
11
+ begin
12
+ require 'action_controller'
13
+ rescue LoadError
14
+ abort "ActionController could not be found."
15
+ end
16
+ end
17
+ end
18
+
19
+ require 'action_controller/test_process'
20
+ require 'test/unit'
21
+ require "#{File.dirname(__FILE__)}/../lib/ssl_requirement"
22
+
23
+ ActionController::Base.logger = nil
24
+ ActionController::Routing::Routes.reload rescue nil
25
+
26
+ class SslRequirementController < ActionController::Base
27
+ include SslRequirement
28
+
29
+ ssl_required :a, :b
30
+ ssl_allowed :c
31
+
32
+ def a
33
+ render :nothing => true
34
+ end
35
+
36
+ def b
37
+ render :nothing => true
38
+ end
39
+
40
+ def c
41
+ render :nothing => true
42
+ end
43
+
44
+ def d
45
+ render :nothing => true
46
+ end
47
+
48
+ def set_flash
49
+ flash[:foo] = "bar"
50
+ end
51
+ end
52
+
53
+ class SslRequirementTest < Test::Unit::TestCase
54
+ def setup
55
+ @controller = SslRequirementController.new
56
+ @request = ActionController::TestRequest.new
57
+ @response = ActionController::TestResponse.new
58
+ end
59
+
60
+ def test_redirect_to_https_preserves_flash
61
+ get :set_flash
62
+ get :b
63
+ assert_response :redirect
64
+ assert_equal "bar", flash[:foo]
65
+ end
66
+
67
+ def test_not_redirecting_to_https_does_not_preserve_the_flash
68
+ get :set_flash
69
+ get :d
70
+ assert_response :success
71
+ assert_nil flash[:foo]
72
+ end
73
+
74
+ def test_redirect_to_http_preserves_flash
75
+ get :set_flash
76
+ @request.env['HTTPS'] = "on"
77
+ get :d
78
+ assert_response :redirect
79
+ assert_equal "bar", flash[:foo]
80
+ end
81
+
82
+ def test_not_redirecting_to_http_does_not_preserve_the_flash
83
+ get :set_flash
84
+ @request.env['HTTPS'] = "on"
85
+ get :a
86
+ assert_response :success
87
+ assert_nil flash[:foo]
88
+ end
89
+
90
+ def test_required_without_ssl
91
+ assert_not_equal "on", @request.env["HTTPS"]
92
+ get :a
93
+ assert_response :redirect
94
+ assert_match %r{^https://}, @response.headers['Location']
95
+ get :b
96
+ assert_response :redirect
97
+ assert_match %r{^https://}, @response.headers['Location']
98
+ end
99
+
100
+ def test_required_with_ssl
101
+ @request.env['HTTPS'] = "on"
102
+ get :a
103
+ assert_response :success
104
+ get :b
105
+ assert_response :success
106
+ end
107
+
108
+ def test_disallowed_without_ssl
109
+ assert_not_equal "on", @request.env["HTTPS"]
110
+ get :d
111
+ assert_response :success
112
+ end
113
+
114
+ def test_disallowed_with_ssl
115
+ @request.env['HTTPS'] = "on"
116
+ get :d
117
+ assert_response :redirect
118
+ assert_match %r{^http://}, @response.headers['Location']
119
+ end
120
+
121
+ def test_allowed_without_ssl
122
+ assert_not_equal "on", @request.env["HTTPS"]
123
+ get :c
124
+ assert_response :success
125
+ end
126
+
127
+ def test_allowed_with_ssl
128
+ @request.env['HTTPS'] = "on"
129
+ get :c
130
+ assert_response :success
131
+ end
132
+ end
@@ -0,0 +1,24 @@
1
+
2
+ == 0.3.1, 2008-01-03
3
+ * require 'ostruct'; thanks to Georg Friedrich.
4
+
5
+ == 0.3, 2008-01-01
6
+ * Added configurability in config/plugins/validation_reflection.rb
7
+
8
+ == 0.2.1, 2006-12-28
9
+ * Moved lib files into subfolder boiler_plate.
10
+
11
+ == 0.2, 2006-08-06
12
+ ?
13
+
14
+ = Deprecation Notice
15
+
16
+ Version 0.1 had supplied three methods
17
+
18
+ - validates_presence_of_mandatory_content_columns
19
+ - validates_lengths_of_string_attributes
20
+ - validates_all_associated
21
+
22
+ These have been removed. Please use the Enforce Schema Rules plugin instead
23
+
24
+ http://enforce-schema-rules.googlecode.com/svn/trunk/enforce_schema_rules/
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2006 Michael Schuerig
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,64 @@
1
+ Validation Reflection
2
+ =====================
3
+
4
+ Version 0.3.1, 2008-01-03
5
+
6
+ This plugin adds reflective access to validations
7
+
8
+ - ModelClass.reflect_on_all_validations
9
+ - ModelClass.reflect_on_validations_for(:property)
10
+
11
+ Both of these methods return arrays containing instances of
12
+ ActiveRecord::Reflection::MacroReflection. For example
13
+
14
+ class Person < ActiveRecord::Base
15
+ validates_presence_of :name
16
+ validates_numericality_of :size, :only_integer => true
17
+ end
18
+
19
+ refl = Person.reflect_on_validations_for(:name)
20
+ refl[0].macro
21
+ # => :validates_presence_of
22
+
23
+ refl = Person.reflect_on_validations_for(:size)
24
+ refl[0].macro
25
+ # => :validates_numericality_of
26
+ refl[0].options
27
+ # => { :only_integer => true }
28
+
29
+
30
+ == Customization
31
+
32
+ Usually, all the standard Rails validations are reflected.
33
+ You can change this -- add or remove validations -- in an
34
+ application-specific configuration file,
35
+
36
+ config/plugins/validation_reflection.rb
37
+
38
+ In that file change config.reflected_validations to suit your
39
+ needs. Say, you have a custom validation for email addresses,
40
+ validates_as_email, then you could add it like this
41
+
42
+ config.reflected_validations << :validates_as_email
43
+
44
+ If validates_as_email is implemented in terms of other validation
45
+ methods, these validations are added to the reflection metadata,
46
+ too. As that may not be what you want, you can disable reflection
47
+ for these subordinate validations
48
+
49
+ config.reflected_validations << {
50
+ :method => :validates_as_email,
51
+ :ignore_subvalidations => true
52
+ }
53
+
54
+ You have to make sure that all reflected validations are defined
55
+ before this plugin is loaded. To this end, you may have to
56
+ explicitly set the load order of plugins somewhere in the environment
57
+ configuration using
58
+
59
+ config.plugins = [...]
60
+
61
+
62
+
63
+
64
+ Copyright (c) 2006-2008, Michael Schuerig, michael@schuerig.de
@@ -0,0 +1,22 @@
1
+ require 'rake'
2
+ require 'rake/testtask'
3
+ require 'rake/rdoctask'
4
+
5
+ desc 'Default: run unit tests.'
6
+ task :default => :test
7
+
8
+ desc 'Test the validation_reflection plugin.'
9
+ Rake::TestTask.new(:test) do |t|
10
+ t.libs << 'lib'
11
+ t.pattern = 'test/**/*_test.rb'
12
+ t.verbose = true
13
+ end
14
+
15
+ desc 'Generate documentation for the validation_reflection plugin.'
16
+ Rake::RDocTask.new(:rdoc) do |rdoc|
17
+ rdoc.rdoc_dir = 'rdoc'
18
+ rdoc.title = 'ValidationReflection'
19
+ rdoc.options << '--line-numbers' << '--inline-source'
20
+ rdoc.rdoc_files.include('README')
21
+ rdoc.rdoc_files.include('lib/**/*.rb')
22
+ end
@@ -0,0 +1,7 @@
1
+ author: Michael Schuerig
2
+ summary: Reflection on validations
3
+ homepage: http://rubyforge.org/projects/valirefl/validation_reflection/trunk
4
+ plugin: validation_reflection
5
+ license: MIT
6
+ version: 0.3.1
7
+ rails_version: >= 1.1.6
@@ -0,0 +1,8 @@
1
+
2
+ require 'boiler_plate/validation_reflection'
3
+
4
+ ActiveRecord::Base.class_eval do
5
+ include BoilerPlate::ActiveRecordExtensions::ValidationReflection
6
+ BoilerPlate::ActiveRecordExtensions::ValidationReflection.load_config
7
+ BoilerPlate::ActiveRecordExtensions::ValidationReflection.install(self)
8
+ end
@@ -0,0 +1,129 @@
1
+ #--
2
+ # Copyright (c) 2006-2008, Michael Schuerig, michael@schuerig.de
3
+ #
4
+ # Permission is hereby granted, free of charge, to any person obtaining
5
+ # a copy of this software and associated documentation files (the
6
+ # "Software"), to deal in the Software without restriction, including
7
+ # without limitation the rights to use, copy, modify, merge, publish,
8
+ # distribute, sublicense, and/or sell copies of the Software, and to
9
+ # permit persons to whom the Software is furnished to do so, subject to
10
+ # the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be
13
+ # included in all copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19
+ # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20
+ # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21
+ # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
+ #++
23
+
24
+
25
+ require 'active_record/reflection'
26
+ require 'ostruct'
27
+
28
+ # Based on code by Sebastian Kanthak
29
+ # See http://dev.rubyonrails.org/ticket/861
30
+ module BoilerPlate # :nodoc:
31
+ module ActiveRecordExtensions # :nodoc:
32
+ module ValidationReflection # :nodoc:
33
+ CONFIG_PATH = File.join(RAILS_ROOT, 'config', 'plugins', 'validation_reflection.rb')
34
+
35
+ mattr_accessor :reflected_validations
36
+ BoilerPlate::ActiveRecordExtensions::ValidationReflection.reflected_validations = %w(
37
+ validates_acceptance_of
38
+ validates_associated
39
+ validates_confirmation_of
40
+ validates_exclusion_of
41
+ validates_format_of
42
+ validates_inclusion_of
43
+ validates_length_of
44
+ validates_numericality_of
45
+ validates_presence_of
46
+ validates_uniqueness_of
47
+ )
48
+
49
+ mattr_accessor :in_ignored_subvalidation
50
+ BoilerPlate::ActiveRecordExtensions::ValidationReflection.in_ignored_subvalidation = false
51
+
52
+ def self.included(base)
53
+ return if base.kind_of?(BoilerPlate::ActiveRecordExtensions::ValidationReflection::ClassMethods)
54
+ base.extend(ClassMethods)
55
+ end
56
+
57
+ def self.load_config
58
+ if File.file?(CONFIG_PATH)
59
+ config = OpenStruct.new
60
+ config.reflected_validations = reflected_validations
61
+ silence_warnings do
62
+ eval(IO.read(CONFIG_PATH), binding, CONFIG_PATH)
63
+ end
64
+ end
65
+ end
66
+
67
+ def self.install(base)
68
+ reflected_validations.freeze
69
+ reflected_validations.each do |validation_type|
70
+ next if base.respond_to?("#{validation_type}_with_reflection")
71
+ ignore_subvalidations = false
72
+ if validation_type.kind_of?(Hash)
73
+ ignore_subvalidations = validation_type[:ignore_subvalidations]
74
+ validation_type = validation_type[:method]
75
+ end
76
+ base.class_eval <<-"end_eval"
77
+ class << self
78
+ def #{validation_type}_with_reflection(*attr_names)
79
+ ignoring_subvalidations(#{ignore_subvalidations}) do
80
+ #{validation_type}_without_reflection(*attr_names)
81
+ remember_validation_metadata(:#{validation_type}, *attr_names)
82
+ end
83
+ end
84
+
85
+ alias_method_chain :#{validation_type}, :reflection
86
+ end
87
+ end_eval
88
+ end
89
+ end
90
+
91
+ module ClassMethods
92
+
93
+ # Returns an array of MacroReflection objects for all validations in the class
94
+ def reflect_on_all_validations
95
+ read_inheritable_attribute(:validations) || []
96
+ end
97
+
98
+ # Returns an array of MacroReflection objects for all validations defined for the field +attr_name+.
99
+ def reflect_on_validations_for(attr_name)
100
+ attr_name = attr_name.to_sym
101
+ reflect_on_all_validations.select do |reflection|
102
+ reflection.name == attr_name
103
+ end
104
+ end
105
+
106
+ private
107
+
108
+ def remember_validation_metadata(validation_type, *attr_names)
109
+ configuration = attr_names.last.is_a?(Hash) ? attr_names.pop : {}
110
+ attr_names.each do |attr_name|
111
+ write_inheritable_array :validations,
112
+ [ ActiveRecord::Reflection::MacroReflection.new(validation_type, attr_name.to_sym, configuration, self) ]
113
+ end
114
+ end
115
+
116
+ def ignoring_subvalidations(ignore)
117
+ save_ignore = BoilerPlate::ActiveRecordExtensions::ValidationReflection.in_ignored_subvalidation
118
+ unless BoilerPlate::ActiveRecordExtensions::ValidationReflection.in_ignored_subvalidation
119
+ BoilerPlate::ActiveRecordExtensions::ValidationReflection.in_ignored_subvalidation = ignore
120
+ yield
121
+ end
122
+ ensure
123
+ BoilerPlate::ActiveRecordExtensions::ValidationReflection.in_ignored_subvalidation = save_ignore
124
+ end
125
+ end
126
+
127
+ end
128
+ end
129
+ end