sunrise-widgets 0.1.0
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.
- data/Gemfile +34 -0
 - data/MIT-LICENSE +20 -0
 - data/README.rdoc +21 -0
 - data/Rakefile +27 -0
 - data/app/controllers/manage/widgets_controller.rb +33 -0
 - data/app/views/manage/widgets/_form.html.erb +21 -0
 - data/app/views/manage/widgets/_model_filter.html.erb +40 -0
 - data/app/views/manage/widgets/_widget.html.erb +41 -0
 - data/app/views/manage/widgets/edit.html.erb +6 -0
 - data/app/views/manage/widgets/index.html.erb +30 -0
 - data/app/views/manage/widgets/new.html.erb +6 -0
 - data/app/views/manage/widgets/show.html.erb +29 -0
 - data/config/locales/ru.yml +18 -0
 - data/config/locales/uk.yml +18 -0
 - data/config/routes.rb +5 -0
 - data/lib/generators/sunrise/widgets/USAGE +12 -0
 - data/lib/generators/sunrise/widgets/install_generator.rb +40 -0
 - data/lib/generators/sunrise/widgets/templates/create_widgets.rb +24 -0
 - data/lib/generators/sunrise/widgets/templates/widget.rb +6 -0
 - data/lib/generators/sunrise/widgets/templates/widget_position.rb +14 -0
 - data/lib/generators/sunrise/widgets/templates/widget_sweeper.rb +21 -0
 - data/lib/generators/sunrise/widgets/templates/widget_type.rb +15 -0
 - data/lib/sunrise/models/widget.rb +39 -0
 - data/lib/sunrise/widgets/engine.rb +18 -0
 - data/lib/sunrise/widgets/version.rb +5 -0
 - data/lib/sunrise/widgets.rb +12 -0
 - data/lib/sunrise-widgets.rb +1 -0
 - data/spec/controllers/manage/widgets_controller_spec.rb +95 -0
 - data/spec/dummy/Rakefile +7 -0
 - data/spec/dummy/app/controllers/application_controller.rb +3 -0
 - data/spec/dummy/app/helpers/application_helper.rb +2 -0
 - data/spec/dummy/app/helpers/manage/assets_helper.rb +2 -0
 - data/spec/dummy/app/helpers/manage/base_helper.rb +81 -0
 - data/spec/dummy/app/helpers/manage/pages_helper.rb +2 -0
 - data/spec/dummy/app/helpers/manage/settings_helper.rb +2 -0
 - data/spec/dummy/app/helpers/manage/structures_helper.rb +12 -0
 - data/spec/dummy/app/helpers/manage/users_helper.rb +6 -0
 - data/spec/dummy/app/models/defaults/ability.rb +39 -0
 - data/spec/dummy/app/models/defaults/asset.rb +7 -0
 - data/spec/dummy/app/models/defaults/attachment_file.rb +33 -0
 - data/spec/dummy/app/models/defaults/avatar.rb +37 -0
 - data/spec/dummy/app/models/defaults/header.rb +5 -0
 - data/spec/dummy/app/models/defaults/page.rb +5 -0
 - data/spec/dummy/app/models/defaults/picture.rb +35 -0
 - data/spec/dummy/app/models/defaults/position_type.rb +7 -0
 - data/spec/dummy/app/models/defaults/role.rb +20 -0
 - data/spec/dummy/app/models/defaults/role_type.rb +8 -0
 - data/spec/dummy/app/models/defaults/structure.rb +16 -0
 - data/spec/dummy/app/models/defaults/structure_type.rb +9 -0
 - data/spec/dummy/app/models/defaults/user.rb +47 -0
 - data/spec/dummy/app/views/layouts/application.html.erb +37 -0
 - data/spec/dummy/app/views/pages/show.html.erb +2 -0
 - data/spec/dummy/app/views/shared/_notice.html.erb +17 -0
 - data/spec/dummy/config/application.rb +47 -0
 - data/spec/dummy/config/application.yml.sample +4 -0
 - data/spec/dummy/config/boot.rb +10 -0
 - data/spec/dummy/config/database.yml +22 -0
 - data/spec/dummy/config/database.yml.sample +34 -0
 - data/spec/dummy/config/environment.rb +5 -0
 - data/spec/dummy/config/environments/development.rb +26 -0
 - data/spec/dummy/config/environments/production.rb +49 -0
 - data/spec/dummy/config/environments/test.rb +35 -0
 - data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
 - data/spec/dummy/config/initializers/devise.rb +204 -0
 - data/spec/dummy/config/initializers/inflections.rb +10 -0
 - data/spec/dummy/config/initializers/mime_types.rb +5 -0
 - data/spec/dummy/config/initializers/secret_token.rb +7 -0
 - data/spec/dummy/config/initializers/session_store.rb +8 -0
 - data/spec/dummy/config/initializers/simple_form.rb +93 -0
 - data/spec/dummy/config/initializers/sunrise.rb +7 -0
 - data/spec/dummy/config/locales/devise.en.yml +53 -0
 - data/spec/dummy/config/locales/en.yml +5 -0
 - data/spec/dummy/config/locales/simple_form.en.yml +24 -0
 - data/spec/dummy/config/logrotate-config.sample +9 -0
 - data/spec/dummy/config/nginx-config-passenger.sample +51 -0
 - data/spec/dummy/config/routes.rb +64 -0
 - data/spec/dummy/config.ru +4 -0
 - data/spec/dummy/db/migrate/20110801124809_sunrise_create_users.rb +29 -0
 - data/spec/dummy/db/migrate/20110801124909_sunrise_create_roles.rb +16 -0
 - data/spec/dummy/db/migrate/20110801125009_sunrise_create_structures.rb +27 -0
 - data/spec/dummy/db/migrate/20110801125109_sunrise_create_pages.rb +17 -0
 - data/spec/dummy/db/migrate/20110801125209_sunrise_create_assets.rb +28 -0
 - data/spec/dummy/db/migrate/20110801125309_sunrise_create_headers.rb +20 -0
 - data/spec/dummy/db/migrate/20110801161138_sunrise_create_widgets.rb +24 -0
 - data/spec/dummy/db/seeds.rb +25 -0
 - data/spec/dummy/db/test.sqlite3 +0 -0
 - data/spec/dummy/lib/templates/erb/scaffold/_form.html.erb +13 -0
 - data/spec/dummy/log/development.log +5 -0
 - data/spec/dummy/log/production.log +0 -0
 - data/spec/dummy/log/server.log +0 -0
 - data/spec/dummy/log/test.log +2324 -0
 - data/spec/dummy/public/404.html +26 -0
 - data/spec/dummy/public/422.html +26 -0
 - data/spec/dummy/public/500.html +26 -0
 - data/spec/dummy/public/favicon.ico +0 -0
 - data/spec/dummy/public/images/manage/add_post_bot.gif +0 -0
 - data/spec/dummy/public/images/manage/add_post_top.gif +0 -0
 - data/spec/dummy/public/images/manage/add_white_bot.gif +0 -0
 - data/spec/dummy/public/images/manage/add_white_top.gif +0 -0
 - data/spec/dummy/public/images/manage/arrow.png +0 -0
 - data/spec/dummy/public/images/manage/back_but_lc.gif +0 -0
 - data/spec/dummy/public/images/manage/back_but_rc.gif +0 -0
 - data/spec/dummy/public/images/manage/bot_corn.gif +0 -0
 - data/spec/dummy/public/images/manage/bot_duo_corn.gif +0 -0
 - data/spec/dummy/public/images/manage/but_bg.png +0 -0
 - data/spec/dummy/public/images/manage/but_block_lc.gif +0 -0
 - data/spec/dummy/public/images/manage/but_block_rc.gif +0 -0
 - data/spec/dummy/public/images/manage/but_freze_lc.gif +0 -0
 - data/spec/dummy/public/images/manage/but_freze_rc.gif +0 -0
 - data/spec/dummy/public/images/manage/but_gr.gif +0 -0
 - data/spec/dummy/public/images/manage/but_gr_l.gif +0 -0
 - data/spec/dummy/public/images/manage/but_gr_r.gif +0 -0
 - data/spec/dummy/public/images/manage/but_search.gif +0 -0
 - data/spec/dummy/public/images/manage/but_unfreze_lc.gif +0 -0
 - data/spec/dummy/public/images/manage/but_unfreze_rc.gif +0 -0
 - data/spec/dummy/public/images/manage/button_add_foto.gif +0 -0
 - data/spec/dummy/public/images/manage/button_add_foto_ru.gif +0 -0
 - data/spec/dummy/public/images/manage/button_add_foto_ua.gif +0 -0
 - data/spec/dummy/public/images/manage/button_add_foto_uk.gif +0 -0
 - data/spec/dummy/public/images/manage/cancelbutton.gif +0 -0
 - data/spec/dummy/public/images/manage/dark_arr.gif +0 -0
 - data/spec/dummy/public/images/manage/dark_arr_left.gif +0 -0
 - data/spec/dummy/public/images/manage/dark_cross_ico.gif +0 -0
 - data/spec/dummy/public/images/manage/dot.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_bg.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_bg_small.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_bg_small_blocked.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_bg_small_frozed.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_bg_small_notact.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_bot_small.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_bot_small_blocked.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_bot_small_frozed.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_bot_small_notact.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_top_small.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_top_small_blocked.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_top_small_frozed.gif +0 -0
 - data/spec/dummy/public/images/manage/duo_top_small_notact.gif +0 -0
 - data/spec/dummy/public/images/manage/edit_white_top.gif +0 -0
 - data/spec/dummy/public/images/manage/empty.gif +0 -0
 - data/spec/dummy/public/images/manage/filter_bot_bg.gif +0 -0
 - data/spec/dummy/public/images/manage/filter_top_bg.gif +0 -0
 - data/spec/dummy/public/images/manage/flag_en.gif +0 -0
 - data/spec/dummy/public/images/manage/flag_en_nonact.gif +0 -0
 - data/spec/dummy/public/images/manage/flag_ru.gif +0 -0
 - data/spec/dummy/public/images/manage/flag_ru_nonact.gif +0 -0
 - data/spec/dummy/public/images/manage/flag_ua.gif +0 -0
 - data/spec/dummy/public/images/manage/flag_ua_nonact.gif +0 -0
 - data/spec/dummy/public/images/manage/foto.jpg +0 -0
 - data/spec/dummy/public/images/manage/ico_add.gif +0 -0
 - data/spec/dummy/public/images/manage/ico_del.gif +0 -0
 - data/spec/dummy/public/images/manage/ico_down.gif +0 -0
 - data/spec/dummy/public/images/manage/ico_edit.gif +0 -0
 - data/spec/dummy/public/images/manage/ico_settings.gif +0 -0
 - data/spec/dummy/public/images/manage/ico_up.gif +0 -0
 - data/spec/dummy/public/images/manage/input_bg.gif +0 -0
 - data/spec/dummy/public/images/manage/l_but_corn.gif +0 -0
 - data/spec/dummy/public/images/manage/minimise_but.gif +0 -0
 - data/spec/dummy/public/images/manage/mp3.png +0 -0
 - data/spec/dummy/public/images/manage/page_arr_hover.png +0 -0
 - data/spec/dummy/public/images/manage/page_next_arr.gif +0 -0
 - data/spec/dummy/public/images/manage/page_num_hover.gif +0 -0
 - data/spec/dummy/public/images/manage/page_prev_arr.gif +0 -0
 - data/spec/dummy/public/images/manage/panel/l_but_corn.gif +0 -0
 - data/spec/dummy/public/images/manage/panel/maximise_but.gif +0 -0
 - data/spec/dummy/public/images/manage/panel/r_but_corn.gif +0 -0
 - data/spec/dummy/public/images/manage/panel/top_menu_arr.gif +0 -0
 - data/spec/dummy/public/images/manage/panel/user_pic.gif +0 -0
 - data/spec/dummy/public/images/manage/preloader.gif +0 -0
 - data/spec/dummy/public/images/manage/r_but_corn.gif +0 -0
 - data/spec/dummy/public/images/manage/select_bg.gif +0 -0
 - data/spec/dummy/public/images/manage/select_corn.gif +0 -0
 - data/spec/dummy/public/images/manage/struct_corn_lg.gif +0 -0
 - data/spec/dummy/public/images/manage/struct_corn_llg.gif +0 -0
 - data/spec/dummy/public/images/manage/struct_corn_lw.gif +0 -0
 - data/spec/dummy/public/images/manage/struct_corn_rg.gif +0 -0
 - data/spec/dummy/public/images/manage/struct_corn_rlg.gif +0 -0
 - data/spec/dummy/public/images/manage/struct_corn_rw.gif +0 -0
 - data/spec/dummy/public/images/manage/tab_gl.gif +0 -0
 - data/spec/dummy/public/images/manage/tab_gr.gif +0 -0
 - data/spec/dummy/public/images/manage/tab_wl.gif +0 -0
 - data/spec/dummy/public/images/manage/tab_wr.gif +0 -0
 - data/spec/dummy/public/images/manage/top_corn.gif +0 -0
 - data/spec/dummy/public/images/manage/top_duo_corn.gif +0 -0
 - data/spec/dummy/public/images/manage/top_menu_arr.gif +0 -0
 - data/spec/dummy/public/images/manage/transp_cross.png +0 -0
 - data/spec/dummy/public/images/manage/upload_progress.gif +0 -0
 - data/spec/dummy/public/images/manage/user_act_lc.gif +0 -0
 - data/spec/dummy/public/images/manage/user_act_rc.gif +0 -0
 - data/spec/dummy/public/images/manage/user_ico.gif +0 -0
 - data/spec/dummy/public/images/manage/user_pic.gif +0 -0
 - data/spec/dummy/public/images/manage/user_pic_small.gif +0 -0
 - data/spec/dummy/public/images/manage/user_pic_thumb.gif +0 -0
 - data/spec/dummy/public/javascripts/application.js +2 -0
 - data/spec/dummy/public/javascripts/controls.js +965 -0
 - data/spec/dummy/public/javascripts/datepicker/jquery-ui-i18n.js +1176 -0
 - data/spec/dummy/public/javascripts/datepicker/jquery.ui.datepicker-ru.js +37 -0
 - data/spec/dummy/public/javascripts/datepicker/jquery.ui.datepicker-uk.js +37 -0
 - data/spec/dummy/public/javascripts/dragdrop.js +974 -0
 - data/spec/dummy/public/javascripts/effects.js +1123 -0
 - data/spec/dummy/public/javascripts/fileupload/fileuploader-input.js +217 -0
 - data/spec/dummy/public/javascripts/fileupload/fileuploader.css +31 -0
 - data/spec/dummy/public/javascripts/fileupload/fileuploader.js +1288 -0
 - data/spec/dummy/public/javascripts/jquery-ui-timepicker-addon.js +911 -0
 - data/spec/dummy/public/javascripts/jquery.cookie.js +97 -0
 - data/spec/dummy/public/javascripts/jquery.fancybox-1.3.4.pack.js +46 -0
 - data/spec/dummy/public/javascripts/jquery.tmpl.min.js +10 -0
 - data/spec/dummy/public/javascripts/manage-fileuploader.js +182 -0
 - data/spec/dummy/public/javascripts/manage.js +294 -0
 - data/spec/dummy/public/javascripts/preloader.js +47 -0
 - data/spec/dummy/public/javascripts/prototype.js +6001 -0
 - data/spec/dummy/public/javascripts/rails.js +331 -0
 - data/spec/dummy/public/stylesheets/application.css +1 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/blank.gif +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_close.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_loading.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_nav_left.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_nav_right.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_e.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_n.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_ne.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_nw.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_s.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_se.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_sw.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_w.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_left.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_main.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_over.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_right.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancybox-x.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancybox-y.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/images/fancybox.png +0 -0
 - data/spec/dummy/public/stylesheets/fancybox/jquery.fancybox-1.3.4.css +359 -0
 - data/spec/dummy/public/stylesheets/manage/buttons.css +42 -0
 - data/spec/dummy/public/stylesheets/manage/ie.css +16 -0
 - data/spec/dummy/public/stylesheets/manage/main.css +1108 -0
 - data/spec/dummy/public/stylesheets/manage/panel.css +126 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_222222_256x240.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_454545_256x240.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_888888_256x240.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
 - data/spec/dummy/public/stylesheets/smoothness/jquery-ui-1.8.13.custom.css +578 -0
 - data/spec/dummy/script/rails +6 -0
 - data/spec/factories/structure_factory.rb +22 -0
 - data/spec/factories/user_factory.rb +48 -0
 - data/spec/factories/widget_factory.rb +12 -0
 - data/spec/generators/install_generator_spec.rb +27 -0
 - data/spec/integration/navigation_spec.rb +9 -0
 - data/spec/models/widget_spec.rb +30 -0
 - data/spec/spec.opts +2 -0
 - data/spec/spec_helper.rb +57 -0
 - data/spec/sunrise_widgets_spec.rb +7 -0
 - data/spec/support/helpers/controller_macros.rb +40 -0
 - data/spec/tmp/app/models/widget.rb +6 -0
 - data/spec/tmp/app/models/widget_position.rb +14 -0
 - data/spec/tmp/app/models/widget_type.rb +15 -0
 - data/spec/tmp/app/sweepers/widget_sweeper.rb +21 -0
 - data/spec/tmp/db/migrate/20110818113026_sunrise_create_widgets.rb +24 -0
 - metadata +587 -0
 
| 
         @@ -0,0 +1,12 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            FactoryGirl.define do
         
     | 
| 
      
 2 
     | 
    
         
            +
              factory :widget, :class => Widget do
         
     | 
| 
      
 3 
     | 
    
         
            +
                title "Test"
         
     | 
| 
      
 4 
     | 
    
         
            +
                content "Test"
         
     | 
| 
      
 5 
     | 
    
         
            +
                is_visible true
         
     | 
| 
      
 6 
     | 
    
         
            +
                sort_order 1
         
     | 
| 
      
 7 
     | 
    
         
            +
                widget_position_id WidgetPosition.default.id
         
     | 
| 
      
 8 
     | 
    
         
            +
                widget_type_id WidgetType.default.id
         
     | 
| 
      
 9 
     | 
    
         
            +
                
         
     | 
| 
      
 10 
     | 
    
         
            +
                association :structure, :factory => :structure_page
         
     | 
| 
      
 11 
     | 
    
         
            +
              end
         
     | 
| 
      
 12 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,27 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require 'spec_helper'
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            describe Sunrise::Widgets::InstallGenerator do
         
     | 
| 
      
 4 
     | 
    
         
            +
              include GeneratorSpec::TestCase
         
     | 
| 
      
 5 
     | 
    
         
            +
              destination File.expand_path("../../tmp", __FILE__)
         
     | 
| 
      
 6 
     | 
    
         
            +
            #  arguments %w(something)
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
              before(:all) do
         
     | 
| 
      
 9 
     | 
    
         
            +
                prepare_destination
         
     | 
| 
      
 10 
     | 
    
         
            +
                run_generator
         
     | 
| 
      
 11 
     | 
    
         
            +
              end
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
              it "should create migration" do
         
     | 
| 
      
 14 
     | 
    
         
            +
                assert_migration "db/migrate/sunrise_create_widgets.rb" do |migration|
         
     | 
| 
      
 15 
     | 
    
         
            +
                  assert_class_method :up, migration do |up|
         
     | 
| 
      
 16 
     | 
    
         
            +
                    assert_match /create_table/, up
         
     | 
| 
      
 17 
     | 
    
         
            +
                  end
         
     | 
| 
      
 18 
     | 
    
         
            +
                end
         
     | 
| 
      
 19 
     | 
    
         
            +
              end
         
     | 
| 
      
 20 
     | 
    
         
            +
              
         
     | 
| 
      
 21 
     | 
    
         
            +
              it "should create widgets models" do
         
     | 
| 
      
 22 
     | 
    
         
            +
                assert_file "app/models/widget.rb"
         
     | 
| 
      
 23 
     | 
    
         
            +
                assert_file "app/models/widget_type.rb"
         
     | 
| 
      
 24 
     | 
    
         
            +
                assert_file "app/models/widget_position.rb"
         
     | 
| 
      
 25 
     | 
    
         
            +
                assert_file "app/sweepers/widget_sweeper.rb"
         
     | 
| 
      
 26 
     | 
    
         
            +
              end
         
     | 
| 
      
 27 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,30 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require 'spec_helper'
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            describe Widget do
         
     | 
| 
      
 4 
     | 
    
         
            +
              before(:all) do
         
     | 
| 
      
 5 
     | 
    
         
            +
                @structure = FactoryGirl.create(:structure_page)
         
     | 
| 
      
 6 
     | 
    
         
            +
                @widget = Widget.new(:title => 'Test', :content => 'Test')
         
     | 
| 
      
 7 
     | 
    
         
            +
                @widget.structure = @structure
         
     | 
| 
      
 8 
     | 
    
         
            +
              end
         
     | 
| 
      
 9 
     | 
    
         
            +
              
         
     | 
| 
      
 10 
     | 
    
         
            +
              it "should create a new instance given valid attributes" do
         
     | 
| 
      
 11 
     | 
    
         
            +
                @widget.save!
         
     | 
| 
      
 12 
     | 
    
         
            +
              end
         
     | 
| 
      
 13 
     | 
    
         
            +
                
         
     | 
| 
      
 14 
     | 
    
         
            +
              context "validations" do
         
     | 
| 
      
 15 
     | 
    
         
            +
                it "should not be valid with invalid title" do
         
     | 
| 
      
 16 
     | 
    
         
            +
                  @widget.title = nil
         
     | 
| 
      
 17 
     | 
    
         
            +
                  @widget.should_not be_valid
         
     | 
| 
      
 18 
     | 
    
         
            +
                end
         
     | 
| 
      
 19 
     | 
    
         
            +
                
         
     | 
| 
      
 20 
     | 
    
         
            +
                it "should not be valid with invalid content" do
         
     | 
| 
      
 21 
     | 
    
         
            +
                  @widget.content = nil
         
     | 
| 
      
 22 
     | 
    
         
            +
                  @widget.should_not be_valid
         
     | 
| 
      
 23 
     | 
    
         
            +
                end
         
     | 
| 
      
 24 
     | 
    
         
            +
                
         
     | 
| 
      
 25 
     | 
    
         
            +
                it "should not be valid with invalid sort_order" do
         
     | 
| 
      
 26 
     | 
    
         
            +
                  @widget.sort_order = 'wrong'
         
     | 
| 
      
 27 
     | 
    
         
            +
                  @widget.should_not be_valid
         
     | 
| 
      
 28 
     | 
    
         
            +
                end
         
     | 
| 
      
 29 
     | 
    
         
            +
              end
         
     | 
| 
      
 30 
     | 
    
         
            +
            end
         
     | 
    
        data/spec/spec.opts
    ADDED
    
    
    
        data/spec/spec_helper.rb
    ADDED
    
    | 
         @@ -0,0 +1,57 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # Configure Rails Envinronment
         
     | 
| 
      
 2 
     | 
    
         
            +
            ENV["RAILS_ENV"] = "test"
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            require File.expand_path("../dummy/config/environment.rb",  __FILE__)
         
     | 
| 
      
 5 
     | 
    
         
            +
            require "rails/test_help"
         
     | 
| 
      
 6 
     | 
    
         
            +
            require "rspec/rails"
         
     | 
| 
      
 7 
     | 
    
         
            +
            require "database_cleaner"
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            ActionMailer::Base.delivery_method = :test
         
     | 
| 
      
 10 
     | 
    
         
            +
            ActionMailer::Base.perform_deliveries = true
         
     | 
| 
      
 11 
     | 
    
         
            +
            ActionMailer::Base.default_url_options[:host] = "test.com"
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            Rails.backtrace_cleaner.remove_silencers!
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            # Configure capybara for integration testing
         
     | 
| 
      
 16 
     | 
    
         
            +
            require "capybara/rails"
         
     | 
| 
      
 17 
     | 
    
         
            +
            Capybara.default_driver   = :rack_test
         
     | 
| 
      
 18 
     | 
    
         
            +
            Capybara.default_selector = :css
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
            # Run any available migration
         
     | 
| 
      
 21 
     | 
    
         
            +
            ActiveRecord::Migrator.migrate File.expand_path("../dummy/db/migrate/", __FILE__)
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
            # Load support files
         
     | 
| 
      
 24 
     | 
    
         
            +
            Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
         
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
            require 'factory_girl'
         
     | 
| 
      
 27 
     | 
    
         
            +
            FactoryGirl.definition_file_paths = [ File.join( File.dirname(__FILE__), "factories" ) ]
         
     | 
| 
      
 28 
     | 
    
         
            +
            FactoryGirl.find_definitions
         
     | 
| 
      
 29 
     | 
    
         
            +
             
     | 
| 
      
 30 
     | 
    
         
            +
            RSpec.configure do |config|
         
     | 
| 
      
 31 
     | 
    
         
            +
              # Remove this line if you don't want RSpec's should and should_not
         
     | 
| 
      
 32 
     | 
    
         
            +
              # methods or matchers
         
     | 
| 
      
 33 
     | 
    
         
            +
              require 'rspec/expectations'
         
     | 
| 
      
 34 
     | 
    
         
            +
              config.include RSpec::Matchers
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
              # == Mock Framework
         
     | 
| 
      
 37 
     | 
    
         
            +
              config.mock_with :rspec
         
     | 
| 
      
 38 
     | 
    
         
            +
              
         
     | 
| 
      
 39 
     | 
    
         
            +
              config.include Devise::TestHelpers, :type => :controller
         
     | 
| 
      
 40 
     | 
    
         
            +
              config.extend ControllerMacros, :type => :controller
         
     | 
| 
      
 41 
     | 
    
         
            +
              
         
     | 
| 
      
 42 
     | 
    
         
            +
              config.before(:suite) do
         
     | 
| 
      
 43 
     | 
    
         
            +
                DatabaseCleaner.strategy = :truncation
         
     | 
| 
      
 44 
     | 
    
         
            +
              end
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
              config.before(:all) do
         
     | 
| 
      
 47 
     | 
    
         
            +
                DatabaseCleaner.start
         
     | 
| 
      
 48 
     | 
    
         
            +
              end
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
              config.after(:all) do
         
     | 
| 
      
 51 
     | 
    
         
            +
                DatabaseCleaner.clean
         
     | 
| 
      
 52 
     | 
    
         
            +
              end
         
     | 
| 
      
 53 
     | 
    
         
            +
            end
         
     | 
| 
      
 54 
     | 
    
         
            +
             
     | 
| 
      
 55 
     | 
    
         
            +
            # For generators
         
     | 
| 
      
 56 
     | 
    
         
            +
            require "generator_spec/test_case"
         
     | 
| 
      
 57 
     | 
    
         
            +
            require "generators/sunrise/widgets/install_generator"
         
     | 
| 
         @@ -0,0 +1,40 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            module ControllerMacros
         
     | 
| 
      
 2 
     | 
    
         
            +
              def login_admin
         
     | 
| 
      
 3 
     | 
    
         
            +
                before(:all) do
         
     | 
| 
      
 4 
     | 
    
         
            +
                  @admin = FactoryGirl.create(:admin_user)
         
     | 
| 
      
 5 
     | 
    
         
            +
                end
         
     | 
| 
      
 6 
     | 
    
         
            +
                
         
     | 
| 
      
 7 
     | 
    
         
            +
                before(:each) do
         
     | 
| 
      
 8 
     | 
    
         
            +
                  sign_out :user
         
     | 
| 
      
 9 
     | 
    
         
            +
                  sign_in @admin
         
     | 
| 
      
 10 
     | 
    
         
            +
                end
         
     | 
| 
      
 11 
     | 
    
         
            +
              end
         
     | 
| 
      
 12 
     | 
    
         
            +
              
         
     | 
| 
      
 13 
     | 
    
         
            +
              def login_default
         
     | 
| 
      
 14 
     | 
    
         
            +
                before(:all) do
         
     | 
| 
      
 15 
     | 
    
         
            +
                  @user = FactoryGirl.create(:default_user)
         
     | 
| 
      
 16 
     | 
    
         
            +
                end
         
     | 
| 
      
 17 
     | 
    
         
            +
                
         
     | 
| 
      
 18 
     | 
    
         
            +
                before(:each) do
         
     | 
| 
      
 19 
     | 
    
         
            +
                  sign_out :user
         
     | 
| 
      
 20 
     | 
    
         
            +
                  sign_in @user
         
     | 
| 
      
 21 
     | 
    
         
            +
                end
         
     | 
| 
      
 22 
     | 
    
         
            +
              end
         
     | 
| 
      
 23 
     | 
    
         
            +
              
         
     | 
| 
      
 24 
     | 
    
         
            +
              def login_redactor
         
     | 
| 
      
 25 
     | 
    
         
            +
                before(:all) do
         
     | 
| 
      
 26 
     | 
    
         
            +
                  @user = FactoryGirl.create(:redactor_user)
         
     | 
| 
      
 27 
     | 
    
         
            +
                end
         
     | 
| 
      
 28 
     | 
    
         
            +
                
         
     | 
| 
      
 29 
     | 
    
         
            +
                before(:each) do
         
     | 
| 
      
 30 
     | 
    
         
            +
                  sign_out :user
         
     | 
| 
      
 31 
     | 
    
         
            +
                  sign_in @user
         
     | 
| 
      
 32 
     | 
    
         
            +
                end
         
     | 
| 
      
 33 
     | 
    
         
            +
              end
         
     | 
| 
      
 34 
     | 
    
         
            +
              
         
     | 
| 
      
 35 
     | 
    
         
            +
              def user_logout
         
     | 
| 
      
 36 
     | 
    
         
            +
                before(:each) do
         
     | 
| 
      
 37 
     | 
    
         
            +
                  sign_out :user
         
     | 
| 
      
 38 
     | 
    
         
            +
                end
         
     | 
| 
      
 39 
     | 
    
         
            +
              end
         
     | 
| 
      
 40 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,14 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            class WidgetPosition
         
     | 
| 
      
 2 
     | 
    
         
            +
              def initialize(value)
         
     | 
| 
      
 3 
     | 
    
         
            +
                @code = value.to_s
         
     | 
| 
      
 4 
     | 
    
         
            +
              end
         
     | 
| 
      
 5 
     | 
    
         
            +
              attr_reader :code
         
     | 
| 
      
 6 
     | 
    
         
            +
              
         
     | 
| 
      
 7 
     | 
    
         
            +
              def title
         
     | 
| 
      
 8 
     | 
    
         
            +
                I18n.t(@code, :scope => [:widgets, :position, :title])
         
     | 
| 
      
 9 
     | 
    
         
            +
              end
         
     | 
| 
      
 10 
     | 
    
         
            +
              
         
     | 
| 
      
 11 
     | 
    
         
            +
              define_enum do |builder|
         
     | 
| 
      
 12 
     | 
    
         
            +
                builder.member :default, :object => new("default")
         
     | 
| 
      
 13 
     | 
    
         
            +
              end
         
     | 
| 
      
 14 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,15 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            class WidgetType
         
     | 
| 
      
 2 
     | 
    
         
            +
              def initialize(value)
         
     | 
| 
      
 3 
     | 
    
         
            +
                @code = value.to_s
         
     | 
| 
      
 4 
     | 
    
         
            +
              end
         
     | 
| 
      
 5 
     | 
    
         
            +
              attr_reader :code
         
     | 
| 
      
 6 
     | 
    
         
            +
              
         
     | 
| 
      
 7 
     | 
    
         
            +
              def title
         
     | 
| 
      
 8 
     | 
    
         
            +
                I18n.t(@code, :scope => [:widgets, :type, :title])
         
     | 
| 
      
 9 
     | 
    
         
            +
              end
         
     | 
| 
      
 10 
     | 
    
         
            +
              
         
     | 
| 
      
 11 
     | 
    
         
            +
              define_enum do |builder|
         
     | 
| 
      
 12 
     | 
    
         
            +
                builder.member :default, :object => new("default")
         
     | 
| 
      
 13 
     | 
    
         
            +
                builder.member :text, :object => new("text")
         
     | 
| 
      
 14 
     | 
    
         
            +
              end
         
     | 
| 
      
 15 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,21 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            class WidgetSweeper < ActionController::Caching::Sweeper
         
     | 
| 
      
 2 
     | 
    
         
            +
            	observe Widget
         
     | 
| 
      
 3 
     | 
    
         
            +
            	
         
     | 
| 
      
 4 
     | 
    
         
            +
            	def after_create(item)
         
     | 
| 
      
 5 
     | 
    
         
            +
            		expire(item)
         
     | 
| 
      
 6 
     | 
    
         
            +
            	end
         
     | 
| 
      
 7 
     | 
    
         
            +
            	
         
     | 
| 
      
 8 
     | 
    
         
            +
            	def after_update(item)
         
     | 
| 
      
 9 
     | 
    
         
            +
            		expire(item)
         
     | 
| 
      
 10 
     | 
    
         
            +
            	end
         
     | 
| 
      
 11 
     | 
    
         
            +
            	
         
     | 
| 
      
 12 
     | 
    
         
            +
            	def after_destroy(item)
         
     | 
| 
      
 13 
     | 
    
         
            +
            		expire(item)
         
     | 
| 
      
 14 
     | 
    
         
            +
            	end
         
     | 
| 
      
 15 
     | 
    
         
            +
            	
         
     | 
| 
      
 16 
     | 
    
         
            +
            	private
         
     | 
| 
      
 17 
     | 
    
         
            +
            	
         
     | 
| 
      
 18 
     | 
    
         
            +
            	  def expire(item=nil)
         
     | 
| 
      
 19 
     | 
    
         
            +
              	  Sunrise::Utils.clear_cache
         
     | 
| 
      
 20 
     | 
    
         
            +
            	  end
         
     | 
| 
      
 21 
     | 
    
         
            +
            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
         
     |