sunrise-widgets 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (268) hide show
  1. data/Gemfile +34 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +21 -0
  4. data/Rakefile +27 -0
  5. data/app/controllers/manage/widgets_controller.rb +33 -0
  6. data/app/views/manage/widgets/_form.html.erb +21 -0
  7. data/app/views/manage/widgets/_model_filter.html.erb +40 -0
  8. data/app/views/manage/widgets/_widget.html.erb +41 -0
  9. data/app/views/manage/widgets/edit.html.erb +6 -0
  10. data/app/views/manage/widgets/index.html.erb +30 -0
  11. data/app/views/manage/widgets/new.html.erb +6 -0
  12. data/app/views/manage/widgets/show.html.erb +29 -0
  13. data/config/locales/ru.yml +18 -0
  14. data/config/locales/uk.yml +18 -0
  15. data/config/routes.rb +5 -0
  16. data/lib/generators/sunrise/widgets/USAGE +12 -0
  17. data/lib/generators/sunrise/widgets/install_generator.rb +40 -0
  18. data/lib/generators/sunrise/widgets/templates/create_widgets.rb +24 -0
  19. data/lib/generators/sunrise/widgets/templates/widget.rb +6 -0
  20. data/lib/generators/sunrise/widgets/templates/widget_position.rb +14 -0
  21. data/lib/generators/sunrise/widgets/templates/widget_sweeper.rb +21 -0
  22. data/lib/generators/sunrise/widgets/templates/widget_type.rb +15 -0
  23. data/lib/sunrise/models/widget.rb +39 -0
  24. data/lib/sunrise/widgets/engine.rb +18 -0
  25. data/lib/sunrise/widgets/version.rb +5 -0
  26. data/lib/sunrise/widgets.rb +12 -0
  27. data/lib/sunrise-widgets.rb +1 -0
  28. data/spec/controllers/manage/widgets_controller_spec.rb +95 -0
  29. data/spec/dummy/Rakefile +7 -0
  30. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  31. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  32. data/spec/dummy/app/helpers/manage/assets_helper.rb +2 -0
  33. data/spec/dummy/app/helpers/manage/base_helper.rb +81 -0
  34. data/spec/dummy/app/helpers/manage/pages_helper.rb +2 -0
  35. data/spec/dummy/app/helpers/manage/settings_helper.rb +2 -0
  36. data/spec/dummy/app/helpers/manage/structures_helper.rb +12 -0
  37. data/spec/dummy/app/helpers/manage/users_helper.rb +6 -0
  38. data/spec/dummy/app/models/defaults/ability.rb +39 -0
  39. data/spec/dummy/app/models/defaults/asset.rb +7 -0
  40. data/spec/dummy/app/models/defaults/attachment_file.rb +33 -0
  41. data/spec/dummy/app/models/defaults/avatar.rb +37 -0
  42. data/spec/dummy/app/models/defaults/header.rb +5 -0
  43. data/spec/dummy/app/models/defaults/page.rb +5 -0
  44. data/spec/dummy/app/models/defaults/picture.rb +35 -0
  45. data/spec/dummy/app/models/defaults/position_type.rb +7 -0
  46. data/spec/dummy/app/models/defaults/role.rb +20 -0
  47. data/spec/dummy/app/models/defaults/role_type.rb +8 -0
  48. data/spec/dummy/app/models/defaults/structure.rb +16 -0
  49. data/spec/dummy/app/models/defaults/structure_type.rb +9 -0
  50. data/spec/dummy/app/models/defaults/user.rb +47 -0
  51. data/spec/dummy/app/views/layouts/application.html.erb +37 -0
  52. data/spec/dummy/app/views/pages/show.html.erb +2 -0
  53. data/spec/dummy/app/views/shared/_notice.html.erb +17 -0
  54. data/spec/dummy/config/application.rb +47 -0
  55. data/spec/dummy/config/application.yml.sample +4 -0
  56. data/spec/dummy/config/boot.rb +10 -0
  57. data/spec/dummy/config/database.yml +22 -0
  58. data/spec/dummy/config/database.yml.sample +34 -0
  59. data/spec/dummy/config/environment.rb +5 -0
  60. data/spec/dummy/config/environments/development.rb +26 -0
  61. data/spec/dummy/config/environments/production.rb +49 -0
  62. data/spec/dummy/config/environments/test.rb +35 -0
  63. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  64. data/spec/dummy/config/initializers/devise.rb +204 -0
  65. data/spec/dummy/config/initializers/inflections.rb +10 -0
  66. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  67. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  68. data/spec/dummy/config/initializers/session_store.rb +8 -0
  69. data/spec/dummy/config/initializers/simple_form.rb +93 -0
  70. data/spec/dummy/config/initializers/sunrise.rb +7 -0
  71. data/spec/dummy/config/locales/devise.en.yml +53 -0
  72. data/spec/dummy/config/locales/en.yml +5 -0
  73. data/spec/dummy/config/locales/simple_form.en.yml +24 -0
  74. data/spec/dummy/config/logrotate-config.sample +9 -0
  75. data/spec/dummy/config/nginx-config-passenger.sample +51 -0
  76. data/spec/dummy/config/routes.rb +64 -0
  77. data/spec/dummy/config.ru +4 -0
  78. data/spec/dummy/db/migrate/20110801124809_sunrise_create_users.rb +29 -0
  79. data/spec/dummy/db/migrate/20110801124909_sunrise_create_roles.rb +16 -0
  80. data/spec/dummy/db/migrate/20110801125009_sunrise_create_structures.rb +27 -0
  81. data/spec/dummy/db/migrate/20110801125109_sunrise_create_pages.rb +17 -0
  82. data/spec/dummy/db/migrate/20110801125209_sunrise_create_assets.rb +28 -0
  83. data/spec/dummy/db/migrate/20110801125309_sunrise_create_headers.rb +20 -0
  84. data/spec/dummy/db/migrate/20110801161138_sunrise_create_widgets.rb +24 -0
  85. data/spec/dummy/db/seeds.rb +25 -0
  86. data/spec/dummy/db/test.sqlite3 +0 -0
  87. data/spec/dummy/lib/templates/erb/scaffold/_form.html.erb +13 -0
  88. data/spec/dummy/log/development.log +5 -0
  89. data/spec/dummy/log/production.log +0 -0
  90. data/spec/dummy/log/server.log +0 -0
  91. data/spec/dummy/log/test.log +2324 -0
  92. data/spec/dummy/public/404.html +26 -0
  93. data/spec/dummy/public/422.html +26 -0
  94. data/spec/dummy/public/500.html +26 -0
  95. data/spec/dummy/public/favicon.ico +0 -0
  96. data/spec/dummy/public/images/manage/add_post_bot.gif +0 -0
  97. data/spec/dummy/public/images/manage/add_post_top.gif +0 -0
  98. data/spec/dummy/public/images/manage/add_white_bot.gif +0 -0
  99. data/spec/dummy/public/images/manage/add_white_top.gif +0 -0
  100. data/spec/dummy/public/images/manage/arrow.png +0 -0
  101. data/spec/dummy/public/images/manage/back_but_lc.gif +0 -0
  102. data/spec/dummy/public/images/manage/back_but_rc.gif +0 -0
  103. data/spec/dummy/public/images/manage/bot_corn.gif +0 -0
  104. data/spec/dummy/public/images/manage/bot_duo_corn.gif +0 -0
  105. data/spec/dummy/public/images/manage/but_bg.png +0 -0
  106. data/spec/dummy/public/images/manage/but_block_lc.gif +0 -0
  107. data/spec/dummy/public/images/manage/but_block_rc.gif +0 -0
  108. data/spec/dummy/public/images/manage/but_freze_lc.gif +0 -0
  109. data/spec/dummy/public/images/manage/but_freze_rc.gif +0 -0
  110. data/spec/dummy/public/images/manage/but_gr.gif +0 -0
  111. data/spec/dummy/public/images/manage/but_gr_l.gif +0 -0
  112. data/spec/dummy/public/images/manage/but_gr_r.gif +0 -0
  113. data/spec/dummy/public/images/manage/but_search.gif +0 -0
  114. data/spec/dummy/public/images/manage/but_unfreze_lc.gif +0 -0
  115. data/spec/dummy/public/images/manage/but_unfreze_rc.gif +0 -0
  116. data/spec/dummy/public/images/manage/button_add_foto.gif +0 -0
  117. data/spec/dummy/public/images/manage/button_add_foto_ru.gif +0 -0
  118. data/spec/dummy/public/images/manage/button_add_foto_ua.gif +0 -0
  119. data/spec/dummy/public/images/manage/button_add_foto_uk.gif +0 -0
  120. data/spec/dummy/public/images/manage/cancelbutton.gif +0 -0
  121. data/spec/dummy/public/images/manage/dark_arr.gif +0 -0
  122. data/spec/dummy/public/images/manage/dark_arr_left.gif +0 -0
  123. data/spec/dummy/public/images/manage/dark_cross_ico.gif +0 -0
  124. data/spec/dummy/public/images/manage/dot.gif +0 -0
  125. data/spec/dummy/public/images/manage/duo_bg.gif +0 -0
  126. data/spec/dummy/public/images/manage/duo_bg_small.gif +0 -0
  127. data/spec/dummy/public/images/manage/duo_bg_small_blocked.gif +0 -0
  128. data/spec/dummy/public/images/manage/duo_bg_small_frozed.gif +0 -0
  129. data/spec/dummy/public/images/manage/duo_bg_small_notact.gif +0 -0
  130. data/spec/dummy/public/images/manage/duo_bot_small.gif +0 -0
  131. data/spec/dummy/public/images/manage/duo_bot_small_blocked.gif +0 -0
  132. data/spec/dummy/public/images/manage/duo_bot_small_frozed.gif +0 -0
  133. data/spec/dummy/public/images/manage/duo_bot_small_notact.gif +0 -0
  134. data/spec/dummy/public/images/manage/duo_top_small.gif +0 -0
  135. data/spec/dummy/public/images/manage/duo_top_small_blocked.gif +0 -0
  136. data/spec/dummy/public/images/manage/duo_top_small_frozed.gif +0 -0
  137. data/spec/dummy/public/images/manage/duo_top_small_notact.gif +0 -0
  138. data/spec/dummy/public/images/manage/edit_white_top.gif +0 -0
  139. data/spec/dummy/public/images/manage/empty.gif +0 -0
  140. data/spec/dummy/public/images/manage/filter_bot_bg.gif +0 -0
  141. data/spec/dummy/public/images/manage/filter_top_bg.gif +0 -0
  142. data/spec/dummy/public/images/manage/flag_en.gif +0 -0
  143. data/spec/dummy/public/images/manage/flag_en_nonact.gif +0 -0
  144. data/spec/dummy/public/images/manage/flag_ru.gif +0 -0
  145. data/spec/dummy/public/images/manage/flag_ru_nonact.gif +0 -0
  146. data/spec/dummy/public/images/manage/flag_ua.gif +0 -0
  147. data/spec/dummy/public/images/manage/flag_ua_nonact.gif +0 -0
  148. data/spec/dummy/public/images/manage/foto.jpg +0 -0
  149. data/spec/dummy/public/images/manage/ico_add.gif +0 -0
  150. data/spec/dummy/public/images/manage/ico_del.gif +0 -0
  151. data/spec/dummy/public/images/manage/ico_down.gif +0 -0
  152. data/spec/dummy/public/images/manage/ico_edit.gif +0 -0
  153. data/spec/dummy/public/images/manage/ico_settings.gif +0 -0
  154. data/spec/dummy/public/images/manage/ico_up.gif +0 -0
  155. data/spec/dummy/public/images/manage/input_bg.gif +0 -0
  156. data/spec/dummy/public/images/manage/l_but_corn.gif +0 -0
  157. data/spec/dummy/public/images/manage/minimise_but.gif +0 -0
  158. data/spec/dummy/public/images/manage/mp3.png +0 -0
  159. data/spec/dummy/public/images/manage/page_arr_hover.png +0 -0
  160. data/spec/dummy/public/images/manage/page_next_arr.gif +0 -0
  161. data/spec/dummy/public/images/manage/page_num_hover.gif +0 -0
  162. data/spec/dummy/public/images/manage/page_prev_arr.gif +0 -0
  163. data/spec/dummy/public/images/manage/panel/l_but_corn.gif +0 -0
  164. data/spec/dummy/public/images/manage/panel/maximise_but.gif +0 -0
  165. data/spec/dummy/public/images/manage/panel/r_but_corn.gif +0 -0
  166. data/spec/dummy/public/images/manage/panel/top_menu_arr.gif +0 -0
  167. data/spec/dummy/public/images/manage/panel/user_pic.gif +0 -0
  168. data/spec/dummy/public/images/manage/preloader.gif +0 -0
  169. data/spec/dummy/public/images/manage/r_but_corn.gif +0 -0
  170. data/spec/dummy/public/images/manage/select_bg.gif +0 -0
  171. data/spec/dummy/public/images/manage/select_corn.gif +0 -0
  172. data/spec/dummy/public/images/manage/struct_corn_lg.gif +0 -0
  173. data/spec/dummy/public/images/manage/struct_corn_llg.gif +0 -0
  174. data/spec/dummy/public/images/manage/struct_corn_lw.gif +0 -0
  175. data/spec/dummy/public/images/manage/struct_corn_rg.gif +0 -0
  176. data/spec/dummy/public/images/manage/struct_corn_rlg.gif +0 -0
  177. data/spec/dummy/public/images/manage/struct_corn_rw.gif +0 -0
  178. data/spec/dummy/public/images/manage/tab_gl.gif +0 -0
  179. data/spec/dummy/public/images/manage/tab_gr.gif +0 -0
  180. data/spec/dummy/public/images/manage/tab_wl.gif +0 -0
  181. data/spec/dummy/public/images/manage/tab_wr.gif +0 -0
  182. data/spec/dummy/public/images/manage/top_corn.gif +0 -0
  183. data/spec/dummy/public/images/manage/top_duo_corn.gif +0 -0
  184. data/spec/dummy/public/images/manage/top_menu_arr.gif +0 -0
  185. data/spec/dummy/public/images/manage/transp_cross.png +0 -0
  186. data/spec/dummy/public/images/manage/upload_progress.gif +0 -0
  187. data/spec/dummy/public/images/manage/user_act_lc.gif +0 -0
  188. data/spec/dummy/public/images/manage/user_act_rc.gif +0 -0
  189. data/spec/dummy/public/images/manage/user_ico.gif +0 -0
  190. data/spec/dummy/public/images/manage/user_pic.gif +0 -0
  191. data/spec/dummy/public/images/manage/user_pic_small.gif +0 -0
  192. data/spec/dummy/public/images/manage/user_pic_thumb.gif +0 -0
  193. data/spec/dummy/public/javascripts/application.js +2 -0
  194. data/spec/dummy/public/javascripts/controls.js +965 -0
  195. data/spec/dummy/public/javascripts/datepicker/jquery-ui-i18n.js +1176 -0
  196. data/spec/dummy/public/javascripts/datepicker/jquery.ui.datepicker-ru.js +37 -0
  197. data/spec/dummy/public/javascripts/datepicker/jquery.ui.datepicker-uk.js +37 -0
  198. data/spec/dummy/public/javascripts/dragdrop.js +974 -0
  199. data/spec/dummy/public/javascripts/effects.js +1123 -0
  200. data/spec/dummy/public/javascripts/fileupload/fileuploader-input.js +217 -0
  201. data/spec/dummy/public/javascripts/fileupload/fileuploader.css +31 -0
  202. data/spec/dummy/public/javascripts/fileupload/fileuploader.js +1288 -0
  203. data/spec/dummy/public/javascripts/jquery-ui-timepicker-addon.js +911 -0
  204. data/spec/dummy/public/javascripts/jquery.cookie.js +97 -0
  205. data/spec/dummy/public/javascripts/jquery.fancybox-1.3.4.pack.js +46 -0
  206. data/spec/dummy/public/javascripts/jquery.tmpl.min.js +10 -0
  207. data/spec/dummy/public/javascripts/manage-fileuploader.js +182 -0
  208. data/spec/dummy/public/javascripts/manage.js +294 -0
  209. data/spec/dummy/public/javascripts/preloader.js +47 -0
  210. data/spec/dummy/public/javascripts/prototype.js +6001 -0
  211. data/spec/dummy/public/javascripts/rails.js +331 -0
  212. data/spec/dummy/public/stylesheets/application.css +1 -0
  213. data/spec/dummy/public/stylesheets/fancybox/images/blank.gif +0 -0
  214. data/spec/dummy/public/stylesheets/fancybox/images/fancy_close.png +0 -0
  215. data/spec/dummy/public/stylesheets/fancybox/images/fancy_loading.png +0 -0
  216. data/spec/dummy/public/stylesheets/fancybox/images/fancy_nav_left.png +0 -0
  217. data/spec/dummy/public/stylesheets/fancybox/images/fancy_nav_right.png +0 -0
  218. data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_e.png +0 -0
  219. data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_n.png +0 -0
  220. data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_ne.png +0 -0
  221. data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_nw.png +0 -0
  222. data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_s.png +0 -0
  223. data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_se.png +0 -0
  224. data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_sw.png +0 -0
  225. data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_w.png +0 -0
  226. data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_left.png +0 -0
  227. data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_main.png +0 -0
  228. data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_over.png +0 -0
  229. data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_right.png +0 -0
  230. data/spec/dummy/public/stylesheets/fancybox/images/fancybox-x.png +0 -0
  231. data/spec/dummy/public/stylesheets/fancybox/images/fancybox-y.png +0 -0
  232. data/spec/dummy/public/stylesheets/fancybox/images/fancybox.png +0 -0
  233. data/spec/dummy/public/stylesheets/fancybox/jquery.fancybox-1.3.4.css +359 -0
  234. data/spec/dummy/public/stylesheets/manage/buttons.css +42 -0
  235. data/spec/dummy/public/stylesheets/manage/ie.css +16 -0
  236. data/spec/dummy/public/stylesheets/manage/main.css +1108 -0
  237. data/spec/dummy/public/stylesheets/manage/panel.css +126 -0
  238. data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  239. data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  240. data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  241. data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  242. data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  243. data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  244. data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  245. data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  246. data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_222222_256x240.png +0 -0
  247. data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
  248. data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_454545_256x240.png +0 -0
  249. data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_888888_256x240.png +0 -0
  250. data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
  251. data/spec/dummy/public/stylesheets/smoothness/jquery-ui-1.8.13.custom.css +578 -0
  252. data/spec/dummy/script/rails +6 -0
  253. data/spec/factories/structure_factory.rb +22 -0
  254. data/spec/factories/user_factory.rb +48 -0
  255. data/spec/factories/widget_factory.rb +12 -0
  256. data/spec/generators/install_generator_spec.rb +27 -0
  257. data/spec/integration/navigation_spec.rb +9 -0
  258. data/spec/models/widget_spec.rb +30 -0
  259. data/spec/spec.opts +2 -0
  260. data/spec/spec_helper.rb +57 -0
  261. data/spec/sunrise_widgets_spec.rb +7 -0
  262. data/spec/support/helpers/controller_macros.rb +40 -0
  263. data/spec/tmp/app/models/widget.rb +6 -0
  264. data/spec/tmp/app/models/widget_position.rb +14 -0
  265. data/spec/tmp/app/models/widget_type.rb +15 -0
  266. data/spec/tmp/app/sweepers/widget_sweeper.rb +21 -0
  267. data/spec/tmp/db/migrate/20110818113026_sunrise_create_widgets.rb +24 -0
  268. metadata +587 -0
@@ -0,0 +1,64 @@
1
+ Dummy::Application.routes.draw do
2
+ root :to => "welcome#index"
3
+
4
+ resources :pages, :only => [:show]
5
+
6
+ devise_for :users
7
+
8
+ # The priority is based upon order of creation:
9
+ # first created -> highest priority.
10
+
11
+ # Sample of regular route:
12
+ # match 'products/:id' => 'catalog#view'
13
+ # Keep in mind you can assign values other than :controller and :action
14
+
15
+ # Sample of named route:
16
+ # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
17
+ # This route can be invoked with purchase_url(:id => product.id)
18
+
19
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
20
+ # resources :products
21
+
22
+ # Sample resource route with options:
23
+ # resources :products do
24
+ # member do
25
+ # get 'short'
26
+ # post 'toggle'
27
+ # end
28
+ #
29
+ # collection do
30
+ # get 'sold'
31
+ # end
32
+ # end
33
+
34
+ # Sample resource route with sub-resources:
35
+ # resources :products do
36
+ # resources :comments, :sales
37
+ # resource :seller
38
+ # end
39
+
40
+ # Sample resource route with more complex sub-resources
41
+ # resources :products do
42
+ # resources :comments
43
+ # resources :sales do
44
+ # get 'recent', :on => :collection
45
+ # end
46
+ # end
47
+
48
+ # Sample resource route within a namespace:
49
+ # namespace :admin do
50
+ # # Directs /admin/products/* to Admin::ProductsController
51
+ # # (app/controllers/admin/products_controller.rb)
52
+ # resources :products
53
+ # end
54
+
55
+ # You can have the root of your site routed with "root"
56
+ # just remember to delete public/index.html.
57
+ # root :to => "welcome#index"
58
+
59
+ # See how all your routes lay out with "rake routes"
60
+
61
+ # This is a legacy wild controller route that's not recommended for RESTful applications.
62
+ # Note: This route will make all actions in every controller accessible via GET requests.
63
+ # match ':controller(/:action(/:id(.:format)))'
64
+ end
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
@@ -0,0 +1,29 @@
1
+ class SunriseCreateUsers < ActiveRecord::Migration
2
+ def self.up
3
+ create_table(:users) do |t|
4
+ t.string :name, :limit => 150
5
+ # t.string :login, :limit => 20, :null => false
6
+
7
+ t.database_authenticatable :null => false
8
+ t.recoverable
9
+ t.rememberable
10
+ t.trackable
11
+ t.confirmable
12
+ t.lockable :lock_strategy => :failed_attempts, :unlock_strategy => :time
13
+ t.encryptable
14
+ # t.token_authenticatable
15
+
16
+ t.timestamps
17
+ end
18
+
19
+ add_index :users, :email, :unique => true
20
+ add_index :users, :reset_password_token, :unique => true
21
+ add_index :users, :confirmation_token, :unique => true
22
+ # add_index :users, :login, :unique => true
23
+ # add_index :users, :unlock_token, :unique => true
24
+ end
25
+
26
+ def self.down
27
+ drop_table :users
28
+ end
29
+ end
@@ -0,0 +1,16 @@
1
+ class SunriseCreateRoles < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :roles do |t|
4
+ t.integer :role_type, :limit => 1, :default => 0
5
+ t.integer :user_id, :null => false
6
+
7
+ t.timestamps
8
+ end
9
+
10
+ add_index :roles, :user_id, :name => "fk_user"
11
+ end
12
+
13
+ def self.down
14
+ drop_table :roles
15
+ end
16
+ end
@@ -0,0 +1,27 @@
1
+ class SunriseCreateStructures < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :structures do |t|
4
+ t.string :title, :null => false
5
+ t.string :slug, :null => false, :limit => 25
6
+ t.integer :kind, :limit => 1, :default => 0
7
+ t.integer :position, :limit => 2, :default => 0
8
+ t.boolean :is_visible, :default => true
9
+ t.string :redirect_url
10
+
11
+ t.integer "parent_id"
12
+ t.integer "lft", :default => 0
13
+ t.integer "rgt", :default => 0
14
+ t.integer "depth", :default => 0
15
+
16
+ t.timestamps
17
+ end
18
+
19
+ add_index :structures, [:kind, :slug], :uniq => true
20
+ add_index :structures, :parent_id
21
+ add_index :structures, [:lft, :rgt]
22
+ end
23
+
24
+ def self.down
25
+ drop_table :structures
26
+ end
27
+ end
@@ -0,0 +1,17 @@
1
+ class SunriseCreatePages < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :pages do |t|
4
+ t.string :title, :null => false
5
+ t.text :content
6
+ t.integer :structure_id, :null => false
7
+
8
+ t.timestamps
9
+ end
10
+
11
+ add_index :pages, :structure_id, :name => "fk_pages"
12
+ end
13
+
14
+ def self.down
15
+ drop_table :pages
16
+ end
17
+ end
@@ -0,0 +1,28 @@
1
+ class SunriseCreateAssets < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :assets do |t|
4
+ t.string :data_file_name, :null => false
5
+ t.string :data_content_type
6
+ t.integer :data_file_size
7
+
8
+ t.integer :assetable_id, :null => false
9
+ t.string :assetable_type, :limit => 25, :null => false
10
+ t.string :type, :limit => 25
11
+ t.string :guid, :limit => 10
12
+
13
+ t.integer :locale, :limit => 1, :default => 0
14
+ t.integer :user_id
15
+ t.integer :sort_order, :default => 0
16
+
17
+ t.timestamps
18
+ end
19
+
20
+ add_index "assets", ["assetable_type", "type", "assetable_id"]
21
+ add_index "assets", ["assetable_type", "assetable_id"]
22
+ add_index "assets", ["user_id"]
23
+ end
24
+
25
+ def self.down
26
+ drop_table :assets
27
+ end
28
+ end
@@ -0,0 +1,20 @@
1
+ class SunriseCreateHeaders < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :headers do |t|
4
+ t.string :title
5
+ t.string :keywords
6
+ t.text :description
7
+
8
+ t.string :headerable_type, :limit => 30, :null => false
9
+ t.integer :headerable_id, :null => false
10
+
11
+ t.timestamps
12
+ end
13
+
14
+ add_index :headers, [:headerable_type, :headerable_id], :uniq => true, :name => "fk_headerable"
15
+ end
16
+
17
+ def self.down
18
+ drop_table :headers
19
+ end
20
+ end
@@ -0,0 +1,24 @@
1
+ class SunriseCreateWidgets < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :widgets do |t|
4
+ t.integer :structure_id
5
+ t.string :title, :null => false
6
+ t.text :content
7
+
8
+ t.boolean :is_visible, :default => true
9
+ t.integer :sort_order, :default => 0
10
+ t.integer :widget_type_id, :limit => 1, :default => 0
11
+ t.integer :widget_position_id, :limit => 1, :default => 0
12
+
13
+ t.timestamps
14
+ end
15
+
16
+ add_index :widgets, :structure_id
17
+ add_index :widgets, :widget_position_id
18
+ add_index :widgets, :widget_type_id
19
+ end
20
+
21
+ def self.down
22
+ drop_table :widgets
23
+ end
24
+ end
@@ -0,0 +1,25 @@
1
+ def insert_user
2
+ User.truncate_table
3
+ Role.truncate_table
4
+ password = Devise.friendly_token
5
+
6
+ admin = User.new(:name=>'Administrator', :email=>'dev@aimbulance.com',
7
+ :password=>password, :password_confirmation=>password)
8
+ admin.login = 'admin' if admin.respond_to?(:login)
9
+ admin.roles.build(:role_type => RoleType.admin)
10
+ admin.skip_confirmation!
11
+ admin.save!
12
+
13
+ puts "Admin: #{admin.email}, #{admin.password}"
14
+ end
15
+
16
+ def insert_structures
17
+ Structure.truncate_table
18
+
19
+ main_page = Structure.create!(:title => "Главная страница", :slug => "main-page", :structure_type => StructureType.main, :parent => nil)
20
+ #Structure.create!(:title => "Трансляции", :slug => "broadcasts", :structure_type => StructureType.broadcasts, :parent => main_page)
21
+ #Structure.create!(:title => "Прямые репортажи", :slug => "posts", :structure_type => StructureType.posts, :parent => main_page)
22
+ end
23
+
24
+ insert_user
25
+ insert_structures
Binary file
@@ -0,0 +1,13 @@
1
+ <%%= simple_form_for(@<%= singular_table_name %>) do |f| %>
2
+ <%%= f.error_notification %>
3
+
4
+ <div class="inputs">
5
+ <%- attributes.each do |attribute| -%>
6
+ <%%= f.<%= attribute.reference? ? :association : :input %> :<%= attribute.name %> %>
7
+ <%- end -%>
8
+ </div>
9
+
10
+ <div class="actions">
11
+ <%%= f.button :submit %>
12
+ </div>
13
+ <%% end %>
@@ -0,0 +1,5 @@
1
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /var/www/gems/sunrise-questions/spec/dummy/config/environment.rb:5)
2
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /var/www/gems/sunrise-questions/spec/dummy/config/environment.rb:5)
3
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /var/www/gems/sunrise-questions/spec/dummy/config/environment.rb:5)
4
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /var/www/gems/sunrise-questions/spec/dummy/config/environment.rb:5)
5
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /var/www/gems/sunrise-questions/spec/dummy/config/environment.rb:5)
File without changes
File without changes