crystal-ext 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (327) hide show
  1. data/.gitignore +4 -0
  2. data/Rakefile +66 -0
  3. data/lib/abstract_interface/controller_helper.rb +30 -0
  4. data/lib/abstract_interface/form_builders/abstract_form_builder.rb +79 -0
  5. data/lib/abstract_interface/form_builders/themed_form_builder.rb +46 -0
  6. data/lib/abstract_interface/form_builders/themed_form_tag_builder.rb +13 -0
  7. data/lib/abstract_interface/haml_builder.rb +56 -0
  8. data/lib/abstract_interface/model_stub.rb +20 -0
  9. data/lib/abstract_interface/support.rb +56 -0
  10. data/lib/abstract_interface/theme.rb +37 -0
  11. data/lib/abstract_interface/view_builder.rb +158 -0
  12. data/lib/abstract_interface/view_helper.rb +31 -0
  13. data/lib/abstract_interface.rb +78 -0
  14. data/lib/common_interface/MIT-LICENSE +20 -0
  15. data/lib/common_interface/README.md +51 -0
  16. data/lib/common_interface/app/controllers/theme_controller.rb +65 -0
  17. data/lib/common_interface/app/controllers/theme_site_controller.rb +2 -0
  18. data/lib/common_interface/app/views/layouts/theme.html.erb +1 -0
  19. data/lib/common_interface/app/views/layouts/theme.js.erb +11 -0
  20. data/lib/common_interface/app/views/theme/_dialog.html.haml +7 -0
  21. data/lib/common_interface/app/views/theme/_popup.html.haml +4 -0
  22. data/lib/common_interface/app/views/theme/aspects.html.haml +32 -0
  23. data/lib/common_interface/app/views/theme/basic.html.haml +123 -0
  24. data/lib/common_interface/app/views/theme/dialog.js.erb +1 -0
  25. data/lib/common_interface/app/views/theme/folder.html.haml +45 -0
  26. data/lib/common_interface/app/views/theme/help.html.haml +7 -0
  27. data/lib/common_interface/app/views/theme/index.html.haml +24 -0
  28. data/lib/common_interface/app/views/theme/items.html.haml +91 -0
  29. data/lib/common_interface/app/views/theme/list.html.haml +23 -0
  30. data/lib/common_interface/app/views/theme/page/_folder.html.haml +10 -0
  31. data/lib/common_interface/app/views/theme/page/_note.html.haml +4 -0
  32. data/lib/common_interface/app/views/theme/page/_toolbar.html.haml +5 -0
  33. data/lib/common_interface/app/views/theme/page.html.haml +19 -0
  34. data/lib/common_interface/app/views/theme/popup.js.erb +1 -0
  35. data/lib/common_interface/app/views/theme/selector.html.haml +38 -0
  36. data/lib/common_interface/app/views/theme/style.html.erb +113 -0
  37. data/lib/common_interface/app/views/theme/tmp.html.erb +31 -0
  38. data/lib/common_interface/app/views/theme/user.html.haml +16 -0
  39. data/lib/common_interface/app/views/theme_shared/_comments.html.haml +11 -0
  40. data/lib/common_interface/app/views/theme_shared/_core_tools.html.haml +6 -0
  41. data/lib/common_interface/app/views/theme_shared/_line_previews.html.haml +39 -0
  42. data/lib/common_interface/app/views/theme_shared/_paginator.html.haml +7 -0
  43. data/lib/common_interface/app/views/theme_shared/_tools.html.haml +27 -0
  44. data/lib/common_interface/app/views/theme_shared/_top_navigation_bottom.html.haml +32 -0
  45. data/lib/common_interface/app/views/theme_site/blog.html.haml +13 -0
  46. data/lib/common_interface/app/views/theme_site/home.html.haml +9 -0
  47. data/lib/common_interface/app/views/theme_site/post.html.haml +11 -0
  48. data/lib/common_interface/app/views/theme_site/style.html.haml +9 -0
  49. data/lib/common_interface/app/views/themes/default/_application_t.html.haml +29 -0
  50. data/lib/common_interface/app/views/themes/default/_help_t.html.haml +1 -0
  51. data/lib/common_interface/app/views/themes/default/aspects/_comment_t.html.haml +14 -0
  52. data/lib/common_interface/app/views/themes/default/aspects/_controls_t.html.haml +3 -0
  53. data/lib/common_interface/app/views/themes/default/aspects/_details_t.html.haml +6 -0
  54. data/lib/common_interface/app/views/themes/default/aspects/_discussion_t.html.haml +9 -0
  55. data/lib/common_interface/app/views/themes/default/aspects/_paginator_t.html.haml +8 -0
  56. data/lib/common_interface/app/views/themes/default/aspects/_tag_selector_t.html.haml +11 -0
  57. data/lib/common_interface/app/views/themes/default/basic/_bottom_panel_t.html.haml +9 -0
  58. data/lib/common_interface/app/views/themes/default/basic/_dialog_t.html.haml +1 -0
  59. data/lib/common_interface/app/views/themes/default/basic/_divider_t.html.haml +2 -0
  60. data/lib/common_interface/app/views/themes/default/basic/_html_t.html.haml +1 -0
  61. data/lib/common_interface/app/views/themes/default/basic/_inplace_t.html.haml +1 -0
  62. data/lib/common_interface/app/views/themes/default/basic/_message_t.html.haml +3 -0
  63. data/lib/common_interface/app/views/themes/default/basic/_more_t.html.haml +5 -0
  64. data/lib/common_interface/app/views/themes/default/basic/_narrow_t.html.haml +1 -0
  65. data/lib/common_interface/app/views/themes/default/basic/_navigation_t.html.haml +9 -0
  66. data/lib/common_interface/app/views/themes/default/basic/_popup_t.html.haml +1 -0
  67. data/lib/common_interface/app/views/themes/default/basic/_text_t.html.haml +1 -0
  68. data/lib/common_interface/app/views/themes/default/basic/_title_t.html.haml +3 -0
  69. data/lib/common_interface/app/views/themes/default/basic/_tool_t.html.haml +4 -0
  70. data/lib/common_interface/app/views/themes/default/basic/_top_panel_t.html.haml +18 -0
  71. data/lib/common_interface/app/views/themes/default/components/_basic_list_item_t.html.haml +4 -0
  72. data/lib/common_interface/app/views/themes/default/components/_basic_list_t.html.haml +1 -0
  73. data/lib/common_interface/app/views/themes/default/components/_table_row_t.html.haml +5 -0
  74. data/lib/common_interface/app/views/themes/default/components/_table_t.html.haml +12 -0
  75. data/lib/common_interface/app/views/themes/default/components/_tabs_item_t.html.haml +4 -0
  76. data/lib/common_interface/app/views/themes/default/components/_tabs_t.html.haml +4 -0
  77. data/lib/common_interface/app/views/themes/default/components/_toolbar_t.html.haml +14 -0
  78. data/lib/common_interface/app/views/themes/default/forms/_begin_t.html.erb +3 -0
  79. data/lib/common_interface/app/views/themes/default/forms/_end_t.html.erb +3 -0
  80. data/lib/common_interface/app/views/themes/default/forms/_errors_t.html.haml +5 -0
  81. data/lib/common_interface/app/views/themes/default/forms/_field_t.html.haml +19 -0
  82. data/lib/common_interface/app/views/themes/default/forms/_line_t.html.haml +6 -0
  83. data/lib/common_interface/app/views/themes/default/items/_file_t.html.haml +19 -0
  84. data/lib/common_interface/app/views/themes/default/items/_folder_t.html.haml +23 -0
  85. data/lib/common_interface/app/views/themes/default/items/_line_t.html.haml +34 -0
  86. data/lib/common_interface/app/views/themes/default/items/_list_item_t.html.haml +16 -0
  87. data/lib/common_interface/app/views/themes/default/items/_list_t.html.haml +35 -0
  88. data/lib/common_interface/app/views/themes/default/items/_note_t.html.haml +16 -0
  89. data/lib/common_interface/app/views/themes/default/items/_page_t.html.haml +29 -0
  90. data/lib/common_interface/app/views/themes/default/items/_selector_t.html.haml +18 -0
  91. data/lib/common_interface/app/views/themes/default/items/_thumb_t.html.haml +12 -0
  92. data/lib/common_interface/app/views/themes/default/items/_user_t.html.haml +12 -0
  93. data/lib/common_interface/app/views/themes/default/layout_templates/_dashboard_t.html.haml +1 -0
  94. data/lib/common_interface/app/views/themes/default/layout_templates/_default_t.html.haml +11 -0
  95. data/lib/common_interface/app/views/themes/default/metadata.rb +117 -0
  96. data/lib/common_interface/app/views/themes/simple_organization/_application_js_t.html.erb +12 -0
  97. data/lib/common_interface/app/views/themes/simple_organization/_application_t.html.erb +45 -0
  98. data/lib/common_interface/app/views/themes/simple_organization/_help_t.html.erb +1 -0
  99. data/lib/common_interface/app/views/themes/simple_organization/aspects/_comment_t.html.haml +21 -0
  100. data/lib/common_interface/app/views/themes/simple_organization/aspects/_discussion_t.html.haml +14 -0
  101. data/lib/common_interface/app/views/themes/simple_organization/aspects/_paginator_t.html.haml +5 -0
  102. data/lib/common_interface/app/views/themes/simple_organization/aspects/_tag_selector_t.html.haml +10 -0
  103. data/lib/common_interface/app/views/themes/simple_organization/basic/_bottom_panel_t.html.erb +12 -0
  104. data/lib/common_interface/app/views/themes/simple_organization/basic/_divider_t.html.erb +3 -0
  105. data/lib/common_interface/app/views/themes/simple_organization/basic/_message_t.html.erb +7 -0
  106. data/lib/common_interface/app/views/themes/simple_organization/basic/_more_t.html.haml +5 -0
  107. data/lib/common_interface/app/views/themes/simple_organization/basic/_navigation_t.html.erb +15 -0
  108. data/lib/common_interface/app/views/themes/simple_organization/basic/_text_t.html.haml +1 -0
  109. data/lib/common_interface/app/views/themes/simple_organization/basic/_tool_t.html.erb +9 -0
  110. data/lib/common_interface/app/views/themes/simple_organization/basic/_top_panel_t.html.erb +14 -0
  111. data/lib/common_interface/app/views/themes/simple_organization/items/_line_t.html.haml +17 -0
  112. data/lib/common_interface/app/views/themes/simple_organization/items/_note_t.html.haml +16 -0
  113. data/lib/common_interface/app/views/themes/simple_organization/items/_selector_t.html.haml +11 -0
  114. data/lib/common_interface/app/views/themes/simple_organization/layout_templates/_default_t.html.erb +20 -0
  115. data/lib/common_interface/app/views/themes/simple_organization/layout_templates/_home_t.html.erb +14 -0
  116. data/lib/common_interface/app/views/themes/simple_organization/metadata.rb +193 -0
  117. data/lib/common_interface/asset_packages.yml +89 -0
  118. data/lib/common_interface/init.rb +21 -0
  119. data/lib/common_interface/lib/common_interface_helper.rb +49 -0
  120. data/lib/common_interface/public/common_interface/images/img1.jpg +0 -0
  121. data/lib/common_interface/public/common_interface/images/img1_200.jpg +0 -0
  122. data/lib/common_interface/public/common_interface/images/img1_icon.jpg +0 -0
  123. data/lib/common_interface/public/common_interface/images/img1_thumb.jpg +0 -0
  124. data/lib/common_interface/public/common_interface/images/img2.jpg +0 -0
  125. data/lib/common_interface/public/common_interface/images/img2_200.jpg +0 -0
  126. data/lib/common_interface/public/common_interface/images/img2_icon.jpg +0 -0
  127. data/lib/common_interface/public/common_interface/images/img2_thumb.jpg +0 -0
  128. data/lib/common_interface/public/common_interface/images/img3.jpg +0 -0
  129. data/lib/common_interface/public/common_interface/images/img3_200.jpg +0 -0
  130. data/lib/common_interface/public/common_interface/images/img3_icon.jpg +0 -0
  131. data/lib/common_interface/public/common_interface/images/img3_thumb.jpg +0 -0
  132. data/lib/common_interface/public/common_interface/images/video_icon.png +0 -0
  133. data/lib/common_interface/public/common_interface/js/aspects.js +0 -0
  134. data/lib/common_interface/public/common_interface/js/basic.js +229 -0
  135. data/lib/common_interface/public/common_interface/js/files_upload.js +115 -0
  136. data/lib/common_interface/public/common_interface/js/items.js +118 -0
  137. data/lib/common_interface/public/common_interface/js/style.js +50 -0
  138. data/lib/common_interface/public/common_interface/lib/jquery.elastic.js +117 -0
  139. data/lib/common_interface/public/common_interface/lib/jquery.fancybox/blank.gif +0 -0
  140. data/lib/common_interface/public/common_interface/lib/jquery.fancybox/fancy_close.png +0 -0
  141. data/lib/common_interface/public/common_interface/lib/jquery.fancybox/fancy_loading.png +0 -0
  142. data/lib/common_interface/public/common_interface/lib/jquery.fancybox/fancy_nav_left.png +0 -0
  143. data/lib/common_interface/public/common_interface/lib/jquery.fancybox/fancy_nav_right.png +0 -0
  144. data/lib/common_interface/public/common_interface/lib/jquery.fancybox/fancy_shadow_e.png +0 -0
  145. data/lib/common_interface/public/common_interface/lib/jquery.fancybox/fancy_shadow_n.png +0 -0
  146. data/lib/common_interface/public/common_interface/lib/jquery.fancybox/fancy_shadow_ne.png +0 -0
  147. data/lib/common_interface/public/common_interface/lib/jquery.fancybox/fancy_shadow_nw.png +0 -0
  148. data/lib/common_interface/public/common_interface/lib/jquery.fancybox/fancy_shadow_s.png +0 -0
  149. data/lib/common_interface/public/common_interface/lib/jquery.fancybox/fancy_shadow_se.png +0 -0
  150. data/lib/common_interface/public/common_interface/lib/jquery.fancybox/fancy_shadow_sw.png +0 -0
  151. data/lib/common_interface/public/common_interface/lib/jquery.fancybox/fancy_shadow_w.png +0 -0
  152. data/lib/common_interface/public/common_interface/lib/jquery.fancybox/fancy_title_left.png +0 -0
  153. data/lib/common_interface/public/common_interface/lib/jquery.fancybox/fancy_title_main.png +0 -0
  154. data/lib/common_interface/public/common_interface/lib/jquery.fancybox/fancy_title_over.png +0 -0
  155. data/lib/common_interface/public/common_interface/lib/jquery.fancybox/fancy_title_right.png +0 -0
  156. data/lib/common_interface/public/common_interface/lib/jquery.fancybox/fancybox-x.png +0 -0
  157. data/lib/common_interface/public/common_interface/lib/jquery.fancybox/fancybox-y.png +0 -0
  158. data/lib/common_interface/public/common_interface/lib/jquery.fancybox/fancybox.png +0 -0
  159. data/lib/common_interface/public/common_interface/lib/jquery.fancybox/jquery.easing-1.3.pack.js +72 -0
  160. data/lib/common_interface/public/common_interface/lib/jquery.fancybox/jquery.fancybox-1.3.1.js +1077 -0
  161. data/lib/common_interface/public/common_interface/lib/jquery.fancybox/jquery.fancybox.css +363 -0
  162. data/lib/common_interface/public/common_interface/lib/jquery.fancybox/jquery.fancybox.js +44 -0
  163. data/lib/common_interface/public/common_interface/lib/jquery.fancybox/jquery.mousewheel-3.0.2.pack.js +13 -0
  164. data/lib/common_interface/public/common_interface/lib/jquery.form.js +660 -0
  165. data/lib/common_interface/public/common_interface/lib/jquery.hoverIntent.js +111 -0
  166. data/lib/common_interface/public/common_interface/lib/jquery.jgrowl/jquery.jgrowl.css +128 -0
  167. data/lib/common_interface/public/common_interface/lib/jquery.jgrowl/jquery.jgrowl.js +307 -0
  168. data/lib/common_interface/public/common_interface/lib/jquery.js +4376 -0
  169. data/lib/common_interface/public/common_interface/lib/jquery.json.js +178 -0
  170. data/lib/common_interface/public/common_interface/lib/jquery.swfupload/cancel.png +0 -0
  171. data/lib/common_interface/public/common_interface/lib/jquery.swfupload/jquery.swfupload.js +64 -0
  172. data/lib/common_interface/public/common_interface/lib/jquery.swfupload/style.css +8 -0
  173. data/lib/common_interface/public/common_interface/lib/jquery.swfupload/swfupload/swfupload.js +980 -0
  174. data/lib/common_interface/public/common_interface/lib/jquery.swfupload/swfupload/swfupload.queue.js +98 -0
  175. data/lib/common_interface/public/common_interface/lib/jquery.swfupload/swfupload/swfupload.swf +0 -0
  176. data/lib/common_interface/public/common_interface/lib/jquery.swfupload/swfupload/wdp_buttons_upload_61x22.png +0 -0
  177. data/lib/common_interface/public/common_interface/lib/jquery.template.js +255 -0
  178. data/lib/common_interface/public/common_interface/lib/jquery.ui/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
  179. data/lib/common_interface/public/common_interface/lib/jquery.ui/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
  180. data/lib/common_interface/public/common_interface/lib/jquery.ui/images/ui-bg_flat_10_000000_40x100.png +0 -0
  181. data/lib/common_interface/public/common_interface/lib/jquery.ui/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
  182. data/lib/common_interface/public/common_interface/lib/jquery.ui/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
  183. data/lib/common_interface/public/common_interface/lib/jquery.ui/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  184. data/lib/common_interface/public/common_interface/lib/jquery.ui/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
  185. data/lib/common_interface/public/common_interface/lib/jquery.ui/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
  186. data/lib/common_interface/public/common_interface/lib/jquery.ui/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
  187. data/lib/common_interface/public/common_interface/lib/jquery.ui/images/ui-icons_222222_256x240.png +0 -0
  188. data/lib/common_interface/public/common_interface/lib/jquery.ui/images/ui-icons_228ef1_256x240.png +0 -0
  189. data/lib/common_interface/public/common_interface/lib/jquery.ui/images/ui-icons_ef8c08_256x240.png +0 -0
  190. data/lib/common_interface/public/common_interface/lib/jquery.ui/images/ui-icons_ffd27a_256x240.png +0 -0
  191. data/lib/common_interface/public/common_interface/lib/jquery.ui/images/ui-icons_ffffff_256x240.png +0 -0
  192. data/lib/common_interface/public/common_interface/lib/jquery.ui/jquery.ui.css +406 -0
  193. data/lib/common_interface/public/common_interface/lib/jquery.ui/jquery.ui.js +71 -0
  194. data/lib/common_interface/public/common_interface/themes/default/_aspects.scss +58 -0
  195. data/lib/common_interface/public/common_interface/themes/default/_basic.scss +228 -0
  196. data/lib/common_interface/public/common_interface/themes/default/_components.scss +151 -0
  197. data/lib/common_interface/public/common_interface/themes/default/_custom_reset.scss +12 -0
  198. data/lib/common_interface/public/common_interface/themes/default/_elastic.scss +72 -0
  199. data/lib/common_interface/public/common_interface/themes/default/_items.scss +88 -0
  200. data/lib/common_interface/public/common_interface/themes/default/_mixins.scss +39 -0
  201. data/lib/common_interface/public/common_interface/themes/default/_special.scss +34 -0
  202. data/lib/common_interface/public/common_interface/themes/default/_variables.scss +15 -0
  203. data/lib/common_interface/public/common_interface/themes/default/_yui_reset.scss +127 -0
  204. data/lib/common_interface/public/common_interface/themes/default/elastic.js +307 -0
  205. data/lib/common_interface/public/common_interface/themes/default/elastic.print.css +8 -0
  206. data/lib/common_interface/public/common_interface/themes/default/reset.css +157 -0
  207. data/lib/common_interface/public/common_interface/themes/default/reset.scss +5 -0
  208. data/lib/common_interface/public/common_interface/themes/default/style.css +580 -0
  209. data/lib/common_interface/public/common_interface/themes/default/style.js +84 -0
  210. data/lib/common_interface/public/common_interface/themes/default/style.scss +11 -0
  211. data/lib/common_interface/public/common_interface/themes/simple_organization/_fixes.scss +130 -0
  212. data/lib/common_interface/public/common_interface/themes/simple_organization/_original.scss +852 -0
  213. data/lib/common_interface/public/common_interface/themes/simple_organization/img/comment-arrow.gif +0 -0
  214. data/lib/common_interface/public/common_interface/themes/simple_organization/img/comment-gravatar.gif +0 -0
  215. data/lib/common_interface/public/common_interface/themes/simple_organization/img/comment-reply.gif +0 -0
  216. data/lib/common_interface/public/common_interface/themes/simple_organization/img/logo-small.gif +0 -0
  217. data/lib/common_interface/public/common_interface/themes/simple_organization/img/logo.gif +0 -0
  218. data/lib/common_interface/public/common_interface/themes/simple_organization/img/main-two-columns-left.gif +0 -0
  219. data/lib/common_interface/public/common_interface/themes/simple_organization/img/main-two-columns.gif +0 -0
  220. data/lib/common_interface/public/common_interface/themes/simple_organization/img/sample-event.jpg +0 -0
  221. data/lib/common_interface/public/common_interface/themes/simple_organization/img/sample-gravatar.gif +0 -0
  222. data/lib/common_interface/public/common_interface/themes/simple_organization/img/sample-image.jpg +0 -0
  223. data/lib/common_interface/public/common_interface/themes/simple_organization/img/sample-thumbnail.jpg +0 -0
  224. data/lib/common_interface/public/common_interface/themes/simple_organization/original/archives.html +389 -0
  225. data/lib/common_interface/public/common_interface/themes/simple_organization/original/comments.html +486 -0
  226. data/lib/common_interface/public/common_interface/themes/simple_organization/original/empty-page.html +107 -0
  227. data/lib/common_interface/public/common_interface/themes/simple_organization/original/img/comment-arrow.gif +0 -0
  228. data/lib/common_interface/public/common_interface/themes/simple_organization/original/img/comment-gravatar.gif +0 -0
  229. data/lib/common_interface/public/common_interface/themes/simple_organization/original/img/comment-reply.gif +0 -0
  230. data/lib/common_interface/public/common_interface/themes/simple_organization/original/img/logo-small.gif +0 -0
  231. data/lib/common_interface/public/common_interface/themes/simple_organization/original/img/logo.gif +0 -0
  232. data/lib/common_interface/public/common_interface/themes/simple_organization/original/img/main-two-columns-left.gif +0 -0
  233. data/lib/common_interface/public/common_interface/themes/simple_organization/original/img/main-two-columns.gif +0 -0
  234. data/lib/common_interface/public/common_interface/themes/simple_organization/original/img/sample-event.jpg +0 -0
  235. data/lib/common_interface/public/common_interface/themes/simple_organization/original/img/sample-gravatar.gif +0 -0
  236. data/lib/common_interface/public/common_interface/themes/simple_organization/original/img/sample-image.jpg +0 -0
  237. data/lib/common_interface/public/common_interface/themes/simple_organization/original/img/sample-thumbnail.jpg +0 -0
  238. data/lib/common_interface/public/common_interface/themes/simple_organization/original/index.html +307 -0
  239. data/lib/common_interface/public/common_interface/themes/simple_organization/original/left-sidebar.html +307 -0
  240. data/lib/common_interface/public/common_interface/themes/simple_organization/original/no-subnavigation.html +290 -0
  241. data/lib/common_interface/public/common_interface/themes/simple_organization/original/single-column.html +209 -0
  242. data/lib/common_interface/public/common_interface/themes/simple_organization/original/style-demo.html +355 -0
  243. data/lib/common_interface/public/common_interface/themes/simple_organization/original/style.css +658 -0
  244. data/lib/common_interface/public/common_interface/themes/simple_organization/style.css +965 -0
  245. data/lib/common_interface/public/common_interface/themes/simple_organization/style.scss +2 -0
  246. data/lib/common_interface/public/common_interface/themes/simple_organization/tmp/comments.html +486 -0
  247. data/lib/common_interface/public/common_interface/themes/simple_organization/tmp/tmp.html +307 -0
  248. data/lib/common_interface/spec/controllers/theme_controller_spec.rb +50 -0
  249. data/lib/common_interface/spec/spec.opts +4 -0
  250. data/lib/common_interface/spec/spec_helper.rb +1 -0
  251. data/lib/common_interface/tmp/html.html +39 -0
  252. data/lib/common_interface/tmp/js.js +78 -0
  253. data/lib/mongo_mapper_ext/db_config.rb +76 -0
  254. data/lib/mongo_mapper_ext/hacks/fixes.rb +32 -0
  255. data/lib/mongo_mapper_ext/hacks/time_measuring.rb +44 -0
  256. data/lib/mongo_mapper_ext/micelaneous.rb +9 -0
  257. data/lib/mongo_mapper_ext/migrate.rake +33 -0
  258. data/lib/mongo_mapper_ext/migration.rb +108 -0
  259. data/lib/mongo_mapper_ext/mongo_mapper.rb +25 -0
  260. data/lib/mongo_mapper_ext/plugins/attributes_cache.rb +22 -0
  261. data/lib/mongo_mapper_ext/plugins/default_scope.rb +76 -0
  262. data/lib/mongo_mapper_ext/plugins/micelaneous.rb +81 -0
  263. data/lib/mongo_mapper_ext/spec_helper.rb +10 -0
  264. data/lib/mongo_mapper_ext/view_helpers.rb +10 -0
  265. data/lib/mongo_mapper_ext.rb +29 -0
  266. data/lib/rails_ext/README.markdown +13 -0
  267. data/lib/rails_ext/action_controller/global_path_prefix.rb +56 -0
  268. data/lib/rails_ext/action_controller/micelaneous.rb +118 -0
  269. data/lib/rails_ext/action_controller/persistent_params.rb +96 -0
  270. data/lib/rails_ext/action_controller/redirect_helper.rb +14 -0
  271. data/lib/rails_ext/action_controller/reload_page.rb +7 -0
  272. data/lib/rails_ext/action_controller.rb +19 -0
  273. data/lib/rails_ext/action_view/common_helper.rb +96 -0
  274. data/lib/rails_ext/action_view/ruby_template.rb +13 -0
  275. data/lib/rails_ext/action_view.rb +5 -0
  276. data/lib/rails_ext/active_record/merge_default_scope/hash_poser.rb +40 -0
  277. data/lib/rails_ext/active_record/merge_default_scope.rb +16 -0
  278. data/lib/rails_ext/active_record/micelaneous.rb +14 -0
  279. data/lib/rails_ext/active_record.rb +7 -0
  280. data/lib/rails_ext/active_support/micelaneous.rb +7 -0
  281. data/lib/rails_ext/active_support.rb +1 -0
  282. data/lib/rails_ext/asset_packager/action_view.rb +47 -0
  283. data/lib/rails_ext/asset_packager/asset_packager.rb +112 -0
  284. data/lib/rails_ext/asset_packager/jsmin.rb +205 -0
  285. data/lib/rails_ext/asset_packager/tasks.rb +27 -0
  286. data/lib/rails_ext/asset_packager.rb +4 -0
  287. data/lib/rails_ext/basic/handy_environment.rb +45 -0
  288. data/lib/rails_ext/basic/user_error.rb +12 -0
  289. data/lib/rails_ext/basic.rb +6 -0
  290. data/lib/rails_ext/hacks/ajax_flash.rb +9 -0
  291. data/lib/rails_ext/hacks/ajax_redirect_to.rb +19 -0
  292. data/lib/rails_ext/hacks/defer_static_javascripts.rb +18 -0
  293. data/lib/rails_ext/hacks/global_path_prefix.rb +33 -0
  294. data/lib/rails_ext/hacks/link_to.rb +105 -0
  295. data/lib/rails_ext/hacks/merge_default_scope.rb +20 -0
  296. data/lib/rails_ext/hacks/persistent_params.rb +16 -0
  297. data/lib/rails_ext/hacks/rjs_layout.rb +2 -0
  298. data/lib/rails_ext/micelaneous/addressable_uri.rb +45 -0
  299. data/lib/rails_ext/micelaneous/config_files.rb +18 -0
  300. data/lib/rails_ext/micelaneous/create_public_symlinks.rb +11 -0
  301. data/lib/rails_ext/micelaneous/defer_static_javascripts.rb +50 -0
  302. data/lib/rails_ext/micelaneous/email_config.rb +8 -0
  303. data/lib/rails_ext/micelaneous/i18n_helper.rb +143 -0
  304. data/lib/rails_ext/micelaneous/rails_require.rb +4 -0
  305. data/lib/rails_ext/micelaneous/safe_hash.rb +104 -0
  306. data/lib/rails_ext/micelaneous.rb +17 -0
  307. data/lib/rails_ext/public/rails_ext/rails_ext.css +2 -0
  308. data/lib/rails_ext/public/rails_ext/rails_ext.js +283 -0
  309. data/lib/rails_ext/spec/mongo_mapper_ext/micelaneous_plugin_spec.rb +56 -0
  310. data/lib/rails_ext/spec/mongo_mapper_ext/micelaneous_spec.rb +51 -0
  311. data/lib/rails_ext/spec/mongo_mapper_ext/mongo_mapper_migration_spec.rb +76 -0
  312. data/lib/rails_ext/spec/mongo_mapper_ext/scope_spec.rb +125 -0
  313. data/lib/rails_ext/spec/rails_ext/haml_builder_spec.rb +136 -0
  314. data/lib/rails_ext/spec/rails_ext/safe_hash_spec.rb +71 -0
  315. data/lib/rails_ext/spec/spec.opts +3 -0
  316. data/lib/sunspot/mongo_mapper/adapters.rb +79 -0
  317. data/lib/sunspot/mongo_mapper/searchable.rb +409 -0
  318. data/lib/sunspot/spec_helper.rb +11 -0
  319. data/readme.md +1 -0
  320. data/spec/mongo_mapper_ext/micelaneous_plugin_spec.rb +56 -0
  321. data/spec/mongo_mapper_ext/micelaneous_spec.rb +51 -0
  322. data/spec/mongo_mapper_ext/mongo_mapper_migration_spec.rb +76 -0
  323. data/spec/mongo_mapper_ext/scope_spec.rb +125 -0
  324. data/spec/rails_ext/haml_builder_spec.rb +136 -0
  325. data/spec/rails_ext/safe_hash_spec.rb +71 -0
  326. data/spec/spec.opts +4 -0
  327. metadata +405 -0
@@ -0,0 +1,283 @@
1
+ //
2
+ // Requirements
3
+ //
4
+ $;
5
+ $.template;
6
+ $.toJSON;
7
+
8
+ railsExt = 'defined';
9
+
10
+ //
11
+ // JavaScript Extension
12
+ //
13
+ String.prototype.blank = function() {
14
+ return this.replace(/[\s\n\r]+/, '').length == 0;
15
+ };
16
+
17
+ String.prototype.size = function() {
18
+ return this.length;
19
+ };
20
+
21
+ Array.prototype.size = function() {
22
+ return this.length;
23
+ };
24
+
25
+ function Hash(hash) {
26
+ hash = hash || {};
27
+ var _this = this;
28
+ $.each(hash, function(key){_this[key] = this});
29
+ };
30
+
31
+ Hash.prototype.size = function () {
32
+ var l = -1;
33
+ for (var k in this) {
34
+ l++;
35
+ }
36
+ return l;
37
+ };
38
+
39
+ inspect = function(data){
40
+ console.dir(data);
41
+ };
42
+
43
+ log = function(data){
44
+ console.log(data);
45
+ };
46
+
47
+ warn = function(data){
48
+ console.warn(data);
49
+ }
50
+
51
+ decode_uri = function(uri){
52
+ return uri.replace(/\&/g,'&');
53
+ };
54
+
55
+ //
56
+ // jQuery Extension
57
+ //
58
+ $.extend({
59
+ infoMessage: function(message){
60
+ log(message);
61
+ },
62
+
63
+ message: function(msg){
64
+ $.infoMessage(msg)
65
+ },
66
+
67
+ errorMessage: function(message){
68
+ log(message);
69
+ },
70
+
71
+ checkForMessages: function(json){
72
+ if(json['info']) $.infoMessage(json['info']);
73
+ if(json['error']) $.errorMessage(json['error']);
74
+ }
75
+ });
76
+
77
+ $.fn.extend({
78
+ serializeObject: function(){
79
+ var o = {};
80
+ var a = this.serializeArray();
81
+ $.each(a, function() {
82
+ if (o[this.name]) {
83
+ if (!o[this.name].push) {
84
+ o[this.name] = [o[this.name]];
85
+ }
86
+ o[this.name].push(this.value || '');
87
+ } else {
88
+ o[this.name] = this.value || '';
89
+ }
90
+ });
91
+ return o;
92
+ },
93
+
94
+ identify: function() {
95
+ var id = $(this).attr('id');
96
+ if(!id){
97
+ var i = 0;
98
+ do {
99
+ i++;
100
+ id = 'auto_id_' + i;
101
+ } while($('#' + id).length > 0);
102
+ $(this).attr('id', id);
103
+ }
104
+ return id;
105
+ },
106
+
107
+ first: function(){
108
+ return $((this.size() > 0) ? this[0] : this)
109
+ },
110
+
111
+ last: function(){
112
+ return $((this.size() > 0) ? this[this.size() - 1] : this)
113
+ },
114
+
115
+ blank: function(){
116
+ return this.size() < 1
117
+ }
118
+ });
119
+
120
+ //
121
+ // jQuery Template
122
+ //
123
+ // try{
124
+ // $.template.regx.standard = /\#\{([\w-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g;
125
+ // }catch(error){
126
+ // console.info('jquery.template not installed!');
127
+ // }
128
+
129
+ //
130
+ // Initializers
131
+ //
132
+ $.extend({
133
+ callOnceForEvery: function(name, query, initializer, dependencyLevel){
134
+ if(!(name && query && initializer)) throw "Invalid arguments!";
135
+ this._addInitializer({name: name, query: query, initializer: initializer}, this._processOnceForEveryInitializer, false, dependencyLevel)
136
+ },
137
+
138
+ callOnceAfterUpdate: function(name, initializer, dependencyLevel){
139
+ this._addInitializer({name: name, initializer: initializer}, this._processOnceAfterUpdateInitializer, true, dependencyLevel)
140
+ },
141
+
142
+ callAfterUpdate: function(name, initializer, dependencyLevel){
143
+ this._addInitializer({name: name, initializer: initializer}, this._processAfterUpdateInitializer, false, dependencyLevel)
144
+ },
145
+
146
+ _orderedInitializers: [[], [], [], [], [], []],
147
+ _addInitializer: function(definition, processor, callOnce, dependencyLevel){
148
+ definition.name = '_' + definition.name + '_initialized';
149
+ dependencyLevel = dependencyLevel || 0;
150
+ if(!(dependencyLevel >= 0 && dependencyLevel <= 5)) throw "Not supported Dependency Level Value: '" + dependencyLevel + "'!";
151
+ this._orderedInitializers[dependencyLevel].push({definition: definition, processor: processor, callOnce: callOnce});
152
+ },
153
+
154
+ processInitializers: function(){
155
+ for(var i = this._orderedInitializers.size() - 1; i >= 0; i--){
156
+ var initializers = $(this._orderedInitializers[i]);
157
+ var toDelete = [];
158
+ initializers.each(function(i, v){
159
+ // log(v.definition.name);
160
+ v.processor(v.definition);
161
+ if(v.callOnce) toDelete.push(i);
162
+ });
163
+ $(toDelete.reverse()).each(function(){
164
+ initializers.splice(this, this + 1);
165
+ });
166
+ }
167
+ },
168
+
169
+ _processOnceForEveryInitializer: function(definition) {
170
+ var count = 0
171
+ $(definition.query).each(function(){
172
+ var e = $(this);
173
+ if(!e.hasClass(definition.name)){ // if(!e.data(definition.name)){
174
+ count = count + 1;
175
+ e.addClass(definition.name); // e.data(definition.name, true);
176
+ definition.initializer.apply($(this));
177
+ }
178
+ });
179
+ // log(definition.name + ', ' + definition.query + ': ' + $(definition.query).size() + '/' + count)
180
+ },
181
+
182
+ _processOnceAfterUpdateInitializer: function(definition){
183
+ definition.initializer();
184
+ },
185
+
186
+ _processAfterUpdateInitializer: function(definition){
187
+ definition.initializer();
188
+ }
189
+ });
190
+
191
+ $(function(){
192
+ $.processInitializers();
193
+ });
194
+ $(document).ajaxSuccess(function(){
195
+ $.processInitializers();
196
+ });
197
+
198
+
199
+ //
200
+ // AJAX
201
+ //
202
+ $.ajaxSetup({
203
+ authenticity_token: $.authenticity_token,
204
+ type: "script",
205
+ dataType: "script",
206
+ format: 'js'
207
+ });
208
+
209
+
210
+ //
211
+ // dataAttr
212
+ //
213
+ $.fn.extend({
214
+ dataAttr: function(name, value) {
215
+ var attr_name = 'data-' + name;
216
+ if(value){
217
+ this.attr(attr_name, value);
218
+ }else{
219
+ return this.attr(attr_name);
220
+ }
221
+ }
222
+ });
223
+
224
+
225
+ //
226
+ // JS for CSS
227
+ //
228
+ $.extend({
229
+ // Should be overrided by actual js for css refresh
230
+ refresh_js_css: function(){}
231
+ });
232
+
233
+
234
+ //
235
+ // link_to
236
+ //
237
+ $.fn.extend({
238
+ link_to: function(options) {
239
+ options = $.extend({url: $(this).attr('href'), method: 'get'}, options);
240
+ options.method = options.method.toLowerCase();
241
+ // if(options.method == 'put' || options.method == 'delete') options.method = 'post';
242
+ try{
243
+ if(options.ajax){
244
+ var data = {
245
+ _method: options.method,
246
+ target: $(this).identify()
247
+ };
248
+ if(options.method != 'get') data.authenticity_token = $.authenticity_token;
249
+ $.ajax({
250
+ data: $.param(data),
251
+ dataType: 'script',
252
+ type: options.method,
253
+ url: options.url
254
+ });
255
+ }else{
256
+ var url = $(this).attr('href');
257
+ var form = $("<form method='POST'>").attr("action", options.url);
258
+ var params = {'authenticity_token': $.authenticity_token, '_method': options.method}
259
+ $.each(params, function(name, value) {
260
+ $("<input type='hidden'>").attr("name", name).attr("value", value).appendTo(form);
261
+ });
262
+ form.appendTo("body");
263
+ form.submit();
264
+ }
265
+ }catch(e){console.log(e)};
266
+ }
267
+ });
268
+ // it doesn't works
269
+ // $(document).ajaxError(function (e, r, o, e) {
270
+ // console.log(e);
271
+ // });
272
+
273
+
274
+ //
275
+ // Helpers
276
+ //
277
+ // AJAX for autosubmitting changes
278
+ $.callOnceForEvery('autosubmit', '._autosubmit', function() {
279
+ var e = $(this);
280
+ e.bind('change', function(){
281
+ $.post(e.dataAttr('action'), {value: e.val(), target: e.identify()})
282
+ });
283
+ });
@@ -0,0 +1,56 @@
1
+ require 'spec'
2
+ require 'ruby_ext'
3
+ require "mongo_mapper"
4
+ require "#{File.dirname __FILE__}/../../lib/mongo_mapper_ext/micelaneous"
5
+ require "#{File.dirname __FILE__}/../../lib/mongo_mapper_ext/plugins/micelaneous"
6
+
7
+ describe "MongoMapper Default Scope" do
8
+ before :all do
9
+ class ::Post
10
+ include MongoMapper::Document
11
+ plugin MongoMapper::Plugins::Micelaneous
12
+
13
+ key :comments_count, Integer, :default => 0
14
+ has_many :comments
15
+ end
16
+
17
+ class ::Comment
18
+ include MongoMapper::Document
19
+ plugin MongoMapper::Plugins::Micelaneous
20
+
21
+ key :post_id
22
+ belongs_to :post, :counter_cache => true
23
+ end
24
+
25
+ MongoMapper.database = 'test'
26
+ end
27
+
28
+ after :all do
29
+ %w{Post Comment}.each do |obj_name|
30
+ Object.send :remove_const, obj_name if Object.const_defined? obj_name
31
+ end
32
+ end
33
+
34
+ before :each do
35
+ [Post, Comment].every.delete_all
36
+ end
37
+
38
+ it "should increase count of comments" do
39
+ post = Post.create!
40
+ comment = post.comments.create!
41
+
42
+ post.reload
43
+ post.comments_count.should == 1
44
+ end
45
+
46
+ it "should decrease count of comments" do
47
+ post = Post.create!
48
+ comment = post.comments.create!
49
+ post.reload
50
+ post.comments_count.should == 1
51
+
52
+ comment.destroy
53
+ post.reload
54
+ post.comments_count.should == 0
55
+ end
56
+ end
@@ -0,0 +1,51 @@
1
+ require 'spec'
2
+ require 'ruby_ext'
3
+ require 'mongo_mapper'
4
+ require "#{File.dirname __FILE__}/../../lib/mongo_mapper_ext/micelaneous"
5
+
6
+ describe "MongoMapper micelaneous" do
7
+ before :all do
8
+ @db = Mongo::Connection.new.db('test')
9
+ MongoMapper.database = 'test'
10
+ end
11
+
12
+ before :each do
13
+ @db.collection('test').drop
14
+ @coll = @db.collection('test')
15
+ end
16
+
17
+ it "upsert should update" do
18
+ id = @coll.save :count => 2
19
+ @coll.upsert id, :$inc => {:count => 1}
20
+ @coll.find(:_id => id).first['count'].should == 3
21
+ end
22
+
23
+ it "upsert should set" do
24
+ id = @coll.save({})
25
+ @coll.upsert id, :$inc => {:count => 1}
26
+ @coll.find(:_id => id).first['count'].should == 1
27
+ end
28
+
29
+ describe "Handy upsert" do
30
+ class ::UpsertSample
31
+ include MongoMapper::Document
32
+ key :counter, Integer, :default => 1
33
+ end
34
+
35
+ before :each do
36
+ @model = UpsertSample.create!
37
+ end
38
+
39
+ it "class upsert" do
40
+ UpsertSample.upsert @model.id, :$inc => {:counter => 1}
41
+ @model.reload
42
+ @model.counter.should == 2
43
+ end
44
+
45
+ it "model upsert" do
46
+ @model.upsert :$inc => {:counter => 1}
47
+ @model.reload
48
+ @model.counter.should == 2
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,76 @@
1
+ require 'spec'
2
+ require 'ruby_ext'
3
+ require "#{File.dirname __FILE__}/../../lib/mongo_mapper_ext"
4
+ require "#{File.dirname __FILE__}/../../lib/mongo_mapper_ext/spec_helper"
5
+
6
+
7
+ describe "MongoMapper Migration" do
8
+ Migration = MongoMapper::Migration
9
+
10
+ before :all do
11
+ MongoMapper.db_config = {
12
+ 'global' => {'name' => 'global_test'},
13
+ 'accounts' => {'name' => "accounts_test"}
14
+ }
15
+
16
+ class ::Sample
17
+ include MongoMapper::Document
18
+ use_database :global
19
+
20
+ key :name, String
21
+ end
22
+
23
+ Migration.logger = nil
24
+ end
25
+
26
+ after :all do
27
+ Object.send :remove_const, :Sample if Object.const_defined? :Sample
28
+ end
29
+
30
+ before :each do
31
+ Migration.definitions.clear
32
+ end
33
+
34
+ it "Shouldn't update if versions are the same" do
35
+ Migration.update(:global, 0).should be_false
36
+ end
37
+
38
+ it "migration should provide access to current database" do
39
+ Sample.count.should == 0
40
+ Migration.define :global, 1 do |m|
41
+ m.up do |db|
42
+ Sample.create :name => 'name'
43
+ coll = db.collection 'samples'
44
+ coll.find.count.should == 1
45
+ end
46
+ end
47
+
48
+ Migration.update(:global, 1).should be_true
49
+ Sample.count.should == 1
50
+ end
51
+
52
+ it "increase_db_version" do
53
+ Sample.count.should == 0
54
+ Migration.define :global, 1 do |m|
55
+ m.up{Sample.create :name => 'name'}
56
+ end
57
+
58
+ Migration.update(:global, 1).should be_true
59
+ Sample.count.should == 1
60
+ Migration.metadata(MongoMapper.databases[:global]).should == 1
61
+ end
62
+
63
+ it "decrease_db_version" do
64
+ Migration.define :global, 1 do |m|
65
+ m.up{Sample.create :name => 'name'}
66
+ m.down{Sample.destroy_all}
67
+ end
68
+ Migration.update(:global, 1).should be_true
69
+ Sample.count.should == 1
70
+
71
+ Migration.update(:global, 0).should be_true
72
+ Sample.count.should == 0
73
+ Migration.metadata(MongoMapper.databases[:global]).should == 0
74
+ end
75
+
76
+ end
@@ -0,0 +1,125 @@
1
+ require 'spec'
2
+ require 'ruby_ext'
3
+ require "#{File.dirname __FILE__}/../../lib/mongo_mapper_ext/plugins/default_scope"
4
+ require "mongo_mapper"
5
+
6
+ describe "MongoMapper Default Scope" do
7
+ before :all do
8
+ MongoMapper.database = 'test'
9
+ end
10
+
11
+ before :each do
12
+ class ::ScopeSample
13
+ include MongoMapper::Document
14
+ plugin MongoMapper::Plugins::DefaultScope
15
+
16
+ key :name, String
17
+ key :_type, String
18
+ end
19
+
20
+ ScopeSample.delete_all
21
+ ScopeSample.create! :name => 'a'
22
+ ScopeSample.create! :name => 'b'
23
+ end
24
+
25
+ after :each do
26
+ Object.send :remove_const, :ScopeSample if Object.const_defined? :ScopeSample
27
+ end
28
+
29
+ it "should not affect objects without default_scope" do
30
+ ScopeSample.count.should == 2
31
+ ScopeSample.all.count.should == 2
32
+ end
33
+
34
+ it "default_scope" do
35
+ ScopeSample.send :default_scope, :name => 'a'
36
+ ScopeSample.count.should == 1
37
+ ScopeSample.all.count.should == 1
38
+ ScopeSample.first.name.should == 'a'
39
+ end
40
+
41
+ it "default_scope as block" do
42
+ ScopeSample.send :default_scope do
43
+ {:name => 'a'}
44
+ end
45
+ ScopeSample.count.should == 1
46
+ ScopeSample.all.count.should == 1
47
+ ScopeSample.first.name.should == 'a'
48
+ end
49
+
50
+ it "default_scope should be inherited" do
51
+ ScopeSample.send :default_scope, :name => 'a'
52
+ class ScopeSampleAncestor < ScopeSample
53
+ end
54
+
55
+ ScopeSampleAncestor.create! :name => 'a'
56
+ ScopeSampleAncestor.create! :name => 'b'
57
+
58
+ ScopeSampleAncestor.count.should == 1
59
+ ScopeSampleAncestor.all.count.should == 1
60
+ ScopeSampleAncestor.first.name.should == 'a'
61
+ end
62
+
63
+ it "ancestors should be able to override default_scope" do
64
+ ScopeSample.send :default_scope, :name => 'a'
65
+ class ScopeSampleAncestor2 < ScopeSample
66
+ default_scope :name => 'b'
67
+ end
68
+
69
+ ScopeSampleAncestor2.create! :name => 'a'
70
+ ScopeSampleAncestor2.create! :name => 'b'
71
+
72
+ ScopeSampleAncestor2.count.should == 1
73
+ ScopeSampleAncestor2.all.count.should == 1
74
+ ScopeSampleAncestor2.first.name.should == 'b'
75
+ end
76
+
77
+ it "shouldn't allow to nest with_exclusive_scope" do
78
+ lambda{
79
+ ScopeSample.with_exclusive_scope do
80
+ ScopeSample.with_exclusive_scope{}
81
+ end
82
+ }.should raise_error(AssertionError)
83
+
84
+ lambda{
85
+ ScopeSample.with_exclusive_scope do
86
+ ScopeSample.with_scope{}
87
+ end
88
+ }.should raise_error(AssertionError)
89
+ end
90
+
91
+ it "with_exclusive_scope should clear other scopes" do
92
+ ScopeSample.send :default_scope, :name => 'a'
93
+
94
+ ScopeSample.with_scope :name => 'a' do
95
+ ScopeSample.with_exclusive_scope :name => 'b' do
96
+ ScopeSample.count.should == 1
97
+ ScopeSample.first.name.should == 'b'
98
+ end
99
+ end
100
+ end
101
+
102
+ it "with_scope" do
103
+ ScopeSample.with_scope :name => 'a' do
104
+ ScopeSample.count.should == 1
105
+ ScopeSample.first.name.should == 'a'
106
+ end
107
+ end
108
+
109
+ it "with scope should merge scope" do
110
+ ScopeSample.class_eval do
111
+ key :name2, String
112
+ key :name3, String
113
+ default_scope :name => 'a'
114
+ end
115
+ ScopeSample.create! :name => 'a', :name2 => 'a2', :name3 => 'a3'
116
+ ScopeSample.create! :name => 'b', :name2 => 'b2', :name3 => 'b3'
117
+
118
+ ScopeSample.with_scope :name2 => 'a2' do
119
+ ScopeSample.with_scope :name3 => 'a3' do
120
+ ScopeSample.count.should == 1
121
+ ScopeSample.first.name2.should == 'a2'
122
+ end
123
+ end
124
+ end
125
+ end