cms-lite 0.3.3 → 0.4.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/.gitignore +5 -0
- data/{README.markdown → README.rdoc} +18 -30
- data/Rakefile +20 -3
- data/VERSION +1 -1
- data/app/controllers/cms_lite_controller.rb +10 -7
- data/cms-lite.gemspec +305 -8
- data/lib/cms_lite.rb +48 -35
- data/rails/init.rb +21 -1
- data/test/rails_root/.gitignore +8 -0
- data/test/rails_root/.rake_tasks +103 -0
- data/test/rails_root/Capfile +3 -0
- data/test/rails_root/Rakefile +14 -0
- data/test/rails_root/app/controllers/application_controller.rb +22 -0
- data/test/rails_root/app/models/.keep +0 -0
- data/test/rails_root/app/models/user.rb +10 -0
- data/test/rails_root/app/models/user_session.rb +2 -0
- data/test/rails_root/app/views/layouts/default.html.erb +26 -0
- data/test/rails_root/app/views/layouts/test.html.erb +26 -0
- data/test/rails_root/config/amazon_s3.yml +14 -0
- data/test/rails_root/config/boot.rb +109 -0
- data/test/rails_root/config/database.yml +14 -0
- data/test/rails_root/config/environment.rb +27 -0
- data/test/rails_root/config/environments/development.rb +19 -0
- data/test/rails_root/config/environments/production.rb +1 -0
- data/test/rails_root/config/environments/test.rb +33 -0
- data/test/rails_root/config/global_config.yml +20 -0
- data/test/rails_root/config/initializers/cms_lite.rb +4 -0
- data/test/rails_root/config/initializers/inflections.rb +10 -0
- data/test/rails_root/config/initializers/mime_types.rb +5 -0
- data/test/rails_root/config/initializers/requires.rb +13 -0
- data/test/rails_root/config/initializers/session_store.rb +8 -0
- data/test/rails_root/config/routes.rb +9 -0
- data/test/rails_root/content/pages/en/demo/hi.html.erb +1 -0
- data/test/rails_root/content/pages/en/open/hello.html.erb +1 -0
- data/test/rails_root/content/protected-pages/en/demo/hi.html.erb +1 -0
- data/test/rails_root/content/protected-pages/en/protected/safe-hello.html.erb +1 -0
- data/test/rails_root/db/.keep +0 -0
- data/test/rails_root/db/migrate/20090320174818_create_muck_permissions_and_roles.rb +16 -0
- data/test/rails_root/db/migrate/20090402234137_create_languages.rb +18 -0
- data/test/rails_root/db/migrate/20090426041056_create_countries.rb +15 -0
- data/test/rails_root/db/migrate/20090426041103_create_states.rb +18 -0
- data/test/rails_root/db/migrate/20090530170040_create_themes.rb +11 -0
- data/test/rails_root/db/migrate/20090602041838_create_users.rb +39 -0
- data/test/rails_root/db/migrate/20090606153236_create_domain_themes.rb +13 -0
- data/test/rails_root/features/step_definitions/cms_steps.rb +19 -0
- data/test/rails_root/features/step_definitions/common_steps.rb +86 -0
- data/test/rails_root/features/step_definitions/webrat_steps.rb +109 -0
- data/test/rails_root/features/support/env.rb +16 -0
- data/test/rails_root/features/view_cms_pages.feature +36 -0
- data/test/rails_root/lib/tasks/cucumber.rake +7 -0
- data/test/rails_root/public/.htaccess +40 -0
- data/test/rails_root/public/404.html +30 -0
- data/test/rails_root/public/422.html +30 -0
- data/test/rails_root/public/500.html +30 -0
- data/test/rails_root/public/dispatch.rb +10 -0
- data/test/rails_root/public/favicon.ico +0 -0
- data/test/rails_root/public/images/arrow_left.gif +0 -0
- data/test/rails_root/public/images/arrow_right.gif +0 -0
- data/test/rails_root/public/images/blue/preview.gif +0 -0
- data/test/rails_root/public/images/fancybox/fancy_closebox.png +0 -0
- data/test/rails_root/public/images/fancybox/fancy_left.png +0 -0
- data/test/rails_root/public/images/fancybox/fancy_progress.png +0 -0
- data/test/rails_root/public/images/fancybox/fancy_right.png +0 -0
- data/test/rails_root/public/images/fancybox/fancy_shadow_e.png +0 -0
- data/test/rails_root/public/images/fancybox/fancy_shadow_n.png +0 -0
- data/test/rails_root/public/images/fancybox/fancy_shadow_ne.png +0 -0
- data/test/rails_root/public/images/fancybox/fancy_shadow_nw.png +0 -0
- data/test/rails_root/public/images/fancybox/fancy_shadow_s.png +0 -0
- data/test/rails_root/public/images/fancybox/fancy_shadow_se.png +0 -0
- data/test/rails_root/public/images/fancybox/fancy_shadow_sw.png +0 -0
- data/test/rails_root/public/images/fancybox/fancy_shadow_w.png +0 -0
- data/test/rails_root/public/images/fancybox/fancy_title_left.png +0 -0
- data/test/rails_root/public/images/fancybox/fancy_title_main.png +0 -0
- data/test/rails_root/public/images/fancybox/fancy_title_right.png +0 -0
- data/test/rails_root/public/images/icons/accept.png +0 -0
- data/test/rails_root/public/images/icons/add.png +0 -0
- data/test/rails_root/public/images/icons/delete.png +0 -0
- data/test/rails_root/public/images/icons/vote.png +0 -0
- data/test/rails_root/public/images/kjh/preview.gif +0 -0
- data/test/rails_root/public/images/kjy/preview.gif +0 -0
- data/test/rails_root/public/images/loading.gif +0 -0
- data/test/rails_root/public/images/profile_default.jpg +0 -0
- data/test/rails_root/public/images/rails.png +0 -0
- data/test/rails_root/public/images/red/preview.gif +0 -0
- data/test/rails_root/public/images/spinner.gif +0 -0
- data/test/rails_root/public/images/sprites.png +0 -0
- data/test/rails_root/public/javascripts/application.js +2 -0
- data/test/rails_root/public/javascripts/builder.js +136 -0
- data/test/rails_root/public/javascripts/controls.js +963 -0
- data/test/rails_root/public/javascripts/dragdrop.js +972 -0
- data/test/rails_root/public/javascripts/effects.js +1120 -0
- data/test/rails_root/public/javascripts/fancyzoom.min.js +1 -0
- data/test/rails_root/public/javascripts/jquery/jquery-ui.js +273 -0
- data/test/rails_root/public/javascripts/jquery/jquery.easing.js +1 -0
- data/test/rails_root/public/javascripts/jquery/jquery.fancybox.js +9 -0
- data/test/rails_root/public/javascripts/jquery/jquery.form.js +637 -0
- data/test/rails_root/public/javascripts/jquery/jquery.jgrowl.js +2 -0
- data/test/rails_root/public/javascripts/jquery/jquery.js +19 -0
- data/test/rails_root/public/javascripts/jquery/jquery.tips.js +69 -0
- data/test/rails_root/public/javascripts/muck.js +80 -0
- data/test/rails_root/public/javascripts/prototype.js +4225 -0
- data/test/rails_root/public/javascripts/scriptaculous.js +58 -0
- data/test/rails_root/public/javascripts/slider.js +277 -0
- data/test/rails_root/public/javascripts/sound.js +60 -0
- data/test/rails_root/public/robots.txt +1 -0
- data/test/rails_root/public/stylesheets/.keep +0 -0
- data/test/rails_root/public/stylesheets/admin.css +12 -0
- data/test/rails_root/public/stylesheets/blue.css +1 -0
- data/test/rails_root/public/stylesheets/blueprint/ie.css +26 -0
- data/test/rails_root/public/stylesheets/blueprint/liquid_screen.css +203 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/icons/cross.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/icons/key.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/icons/tick.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/readme.txt +32 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/screen.css +97 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/fancy-type/readme.txt +14 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/fancy-type/screen.css +71 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/doc.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/email.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/external.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/feed.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/im.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/pdf.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/visited.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/xls.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/readme.txt +18 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/screen.css +40 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/liquid/liquid.css +134 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/liquid/src/liquid.css +197 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/rtl/readme.txt +10 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/rtl/screen.css +109 -0
- data/test/rails_root/public/stylesheets/blueprint/print.css +30 -0
- data/test/rails_root/public/stylesheets/blueprint/screen.css +251 -0
- data/test/rails_root/public/stylesheets/blueprint/sprite.css +1 -0
- data/test/rails_root/public/stylesheets/blueprint/src/forms.css +49 -0
- data/test/rails_root/public/stylesheets/blueprint/src/grid.css +213 -0
- data/test/rails_root/public/stylesheets/blueprint/src/grid.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/src/ie.css +59 -0
- data/test/rails_root/public/stylesheets/blueprint/src/print.css +85 -0
- data/test/rails_root/public/stylesheets/blueprint/src/reset.css +38 -0
- data/test/rails_root/public/stylesheets/blueprint/src/typography.css +105 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_diagonals-thick_15_444444_40x40.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_100_f0f0f0_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_50_99c2ff_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_55_fbf5d0_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_80_e6e6e6_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_highlight-soft_100_e7eef3_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_222222_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_2694e8_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_2e83ff_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_72a7cf_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_888888_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_ffffff_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/jquery-ui-1.7.1.custom.css +404 -0
- data/test/rails_root/public/stylesheets/jquery/jquery.fancybox.css +44 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_217bc0_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_2e83ff_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_469bdd_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_6da8d5_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_f9bd01_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/jquery-ui-1.7.1.custom.css +404 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_222222_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_454545_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_888888_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/jquery-ui-1.7.1.custom.css +404 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_222222_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/jquery-ui-1.7.1.custom.css +404 -0
- data/test/rails_root/public/stylesheets/kjh.css +1 -0
- data/test/rails_root/public/stylesheets/kjy.css +1 -0
- data/test/rails_root/public/stylesheets/red.css +1 -0
- data/test/rails_root/public/stylesheets/reset.css +0 -0
- data/test/rails_root/public/stylesheets/styles.css +83 -0
- data/test/rails_root/public/stylesheets/themes/blue/styles.css +1 -0
- data/test/rails_root/public/stylesheets/themes/red/styles.css +1 -0
- data/test/rails_root/script/about +3 -0
- data/test/rails_root/script/breakpointer +3 -0
- data/test/rails_root/script/console +3 -0
- data/test/rails_root/script/create_project.rb +52 -0
- data/test/rails_root/script/cucumber +7 -0
- data/test/rails_root/script/dbconsole +3 -0
- data/test/rails_root/script/destroy +3 -0
- data/test/rails_root/script/generate +3 -0
- data/test/rails_root/script/performance/benchmarker +3 -0
- data/test/rails_root/script/performance/profiler +3 -0
- data/test/rails_root/script/performance/request +3 -0
- data/test/rails_root/script/plugin +3 -0
- data/test/rails_root/script/process/inspector +3 -0
- data/test/rails_root/script/process/reaper +3 -0
- data/test/rails_root/script/process/spawner +3 -0
- data/test/rails_root/script/runner +3 -0
- data/test/rails_root/script/server +3 -0
- data/test/rails_root/test/factories.rb +45 -0
- data/test/rails_root/test/functional/.keep +0 -0
- data/test/rails_root/test/functional/cms_lite_controller_test.rb +35 -0
- data/test/rails_root/test/mocks/development/.keep +0 -0
- data/test/rails_root/test/mocks/test/.keep +0 -0
- data/test/rails_root/test/shoulda_macros/controller.rb +62 -0
- data/test/rails_root/test/shoulda_macros/models.rb +50 -0
- data/test/rails_root/test/test_helper.rb +38 -0
- data/test/rails_root/test/unit/.keep +0 -0
- data/test/rails_root/test/unit/cms_lite_test.rb +84 -0
- data/test/rails_root/themes/blue/content/pages/en/blue/blue.html.erb +1 -0
- data/test/rails_root/themes/blue/content/pages/en/open/blue.html.erb +1 -0
- data/test/rails_root/themes/blue/description.txt +1 -0
- data/test/rails_root/themes/blue/locales/en.yml +2 -0
- data/test/rails_root/themes/blue/views/layouts/default.html.erb +17 -0
- data/test/rails_root/themes/blue/views/layouts/global/_footer.html.erb +3 -0
- data/test/rails_root/themes/blue/views/layouts/global/_head.html.erb +8 -0
- data/test/rails_root/themes/blue/views/layouts/global/_header.html.erb +3 -0
- data/test/rails_root/themes/red/content/protected-pages/en/red/red.html.erb +1 -0
- data/test/rails_root/themes/red/description.txt +1 -0
- data/test/rails_root/themes/red/locales/en.yml +2 -0
- data/test/rails_root/themes/red/views/layouts/default.html.erb +17 -0
- data/test/rails_root/themes/red/views/layouts/global/_footer.html.erb +3 -0
- data/test/rails_root/themes/red/views/layouts/global/_head.html.erb +8 -0
- data/test/rails_root/themes/red/views/layouts/global/_header.html.erb +3 -0
- data/test/rails_root/vendor/plugins/ssl_requirement/README +43 -0
- data/test/rails_root/vendor/plugins/ssl_requirement/lib/ssl_requirement.rb +62 -0
- data/test/rails_root/vendor/plugins/ssl_requirement/test/ssl_requirement_test.rb +132 -0
- data/test/rails_root/vendor/plugins/validation_reflection/CHANGELOG +24 -0
- data/test/rails_root/vendor/plugins/validation_reflection/LICENSE +20 -0
- data/test/rails_root/vendor/plugins/validation_reflection/README +64 -0
- data/test/rails_root/vendor/plugins/validation_reflection/Rakefile +22 -0
- data/test/rails_root/vendor/plugins/validation_reflection/about.yml +7 -0
- data/test/rails_root/vendor/plugins/validation_reflection/init.rb +8 -0
- data/test/rails_root/vendor/plugins/validation_reflection/lib/boiler_plate/validation_reflection.rb +129 -0
- data/test/rails_root/vendor/plugins/validation_reflection/test/test_helper.rb +36 -0
- data/test/rails_root/vendor/plugins/validation_reflection/test/validation_reflection_test.rb +126 -0
- metadata +313 -10
- data/test/cms_lite_test.rb +0 -8
- data/test/test_helper.rb +0 -3
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Copyright (c) 2006 Michael Schuerig
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4
|
+
a copy of this software and associated documentation files (the
|
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
+
the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be
|
|
12
|
+
included in all copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
Validation Reflection
|
|
2
|
+
=====================
|
|
3
|
+
|
|
4
|
+
Version 0.3.1, 2008-01-03
|
|
5
|
+
|
|
6
|
+
This plugin adds reflective access to validations
|
|
7
|
+
|
|
8
|
+
- ModelClass.reflect_on_all_validations
|
|
9
|
+
- ModelClass.reflect_on_validations_for(:property)
|
|
10
|
+
|
|
11
|
+
Both of these methods return arrays containing instances of
|
|
12
|
+
ActiveRecord::Reflection::MacroReflection. For example
|
|
13
|
+
|
|
14
|
+
class Person < ActiveRecord::Base
|
|
15
|
+
validates_presence_of :name
|
|
16
|
+
validates_numericality_of :size, :only_integer => true
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
refl = Person.reflect_on_validations_for(:name)
|
|
20
|
+
refl[0].macro
|
|
21
|
+
# => :validates_presence_of
|
|
22
|
+
|
|
23
|
+
refl = Person.reflect_on_validations_for(:size)
|
|
24
|
+
refl[0].macro
|
|
25
|
+
# => :validates_numericality_of
|
|
26
|
+
refl[0].options
|
|
27
|
+
# => { :only_integer => true }
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
== Customization
|
|
31
|
+
|
|
32
|
+
Usually, all the standard Rails validations are reflected.
|
|
33
|
+
You can change this -- add or remove validations -- in an
|
|
34
|
+
application-specific configuration file,
|
|
35
|
+
|
|
36
|
+
config/plugins/validation_reflection.rb
|
|
37
|
+
|
|
38
|
+
In that file change config.reflected_validations to suit your
|
|
39
|
+
needs. Say, you have a custom validation for email addresses,
|
|
40
|
+
validates_as_email, then you could add it like this
|
|
41
|
+
|
|
42
|
+
config.reflected_validations << :validates_as_email
|
|
43
|
+
|
|
44
|
+
If validates_as_email is implemented in terms of other validation
|
|
45
|
+
methods, these validations are added to the reflection metadata,
|
|
46
|
+
too. As that may not be what you want, you can disable reflection
|
|
47
|
+
for these subordinate validations
|
|
48
|
+
|
|
49
|
+
config.reflected_validations << {
|
|
50
|
+
:method => :validates_as_email,
|
|
51
|
+
:ignore_subvalidations => true
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
You have to make sure that all reflected validations are defined
|
|
55
|
+
before this plugin is loaded. To this end, you may have to
|
|
56
|
+
explicitly set the load order of plugins somewhere in the environment
|
|
57
|
+
configuration using
|
|
58
|
+
|
|
59
|
+
config.plugins = [...]
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
Copyright (c) 2006-2008, Michael Schuerig, michael@schuerig.de
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
require 'rake'
|
|
2
|
+
require 'rake/testtask'
|
|
3
|
+
require 'rake/rdoctask'
|
|
4
|
+
|
|
5
|
+
desc 'Default: run unit tests.'
|
|
6
|
+
task :default => :test
|
|
7
|
+
|
|
8
|
+
desc 'Test the validation_reflection plugin.'
|
|
9
|
+
Rake::TestTask.new(:test) do |t|
|
|
10
|
+
t.libs << 'lib'
|
|
11
|
+
t.pattern = 'test/**/*_test.rb'
|
|
12
|
+
t.verbose = true
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
desc 'Generate documentation for the validation_reflection plugin.'
|
|
16
|
+
Rake::RDocTask.new(:rdoc) do |rdoc|
|
|
17
|
+
rdoc.rdoc_dir = 'rdoc'
|
|
18
|
+
rdoc.title = 'ValidationReflection'
|
|
19
|
+
rdoc.options << '--line-numbers' << '--inline-source'
|
|
20
|
+
rdoc.rdoc_files.include('README')
|
|
21
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
22
|
+
end
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
require 'boiler_plate/validation_reflection'
|
|
3
|
+
|
|
4
|
+
ActiveRecord::Base.class_eval do
|
|
5
|
+
include BoilerPlate::ActiveRecordExtensions::ValidationReflection
|
|
6
|
+
BoilerPlate::ActiveRecordExtensions::ValidationReflection.load_config
|
|
7
|
+
BoilerPlate::ActiveRecordExtensions::ValidationReflection.install(self)
|
|
8
|
+
end
|
data/test/rails_root/vendor/plugins/validation_reflection/lib/boiler_plate/validation_reflection.rb
ADDED
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
#--
|
|
2
|
+
# Copyright (c) 2006-2008, Michael Schuerig, michael@schuerig.de
|
|
3
|
+
#
|
|
4
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
|
5
|
+
# a copy of this software and associated documentation files (the
|
|
6
|
+
# "Software"), to deal in the Software without restriction, including
|
|
7
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
|
8
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
9
|
+
# permit persons to whom the Software is furnished to do so, subject to
|
|
10
|
+
# the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be
|
|
13
|
+
# included in all copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
16
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
17
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
18
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
19
|
+
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
20
|
+
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
21
|
+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
22
|
+
#++
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
require 'active_record/reflection'
|
|
26
|
+
require 'ostruct'
|
|
27
|
+
|
|
28
|
+
# Based on code by Sebastian Kanthak
|
|
29
|
+
# See http://dev.rubyonrails.org/ticket/861
|
|
30
|
+
module BoilerPlate # :nodoc:
|
|
31
|
+
module ActiveRecordExtensions # :nodoc:
|
|
32
|
+
module ValidationReflection # :nodoc:
|
|
33
|
+
CONFIG_PATH = File.join(RAILS_ROOT, 'config', 'plugins', 'validation_reflection.rb')
|
|
34
|
+
|
|
35
|
+
mattr_accessor :reflected_validations
|
|
36
|
+
BoilerPlate::ActiveRecordExtensions::ValidationReflection.reflected_validations = %w(
|
|
37
|
+
validates_acceptance_of
|
|
38
|
+
validates_associated
|
|
39
|
+
validates_confirmation_of
|
|
40
|
+
validates_exclusion_of
|
|
41
|
+
validates_format_of
|
|
42
|
+
validates_inclusion_of
|
|
43
|
+
validates_length_of
|
|
44
|
+
validates_numericality_of
|
|
45
|
+
validates_presence_of
|
|
46
|
+
validates_uniqueness_of
|
|
47
|
+
)
|
|
48
|
+
|
|
49
|
+
mattr_accessor :in_ignored_subvalidation
|
|
50
|
+
BoilerPlate::ActiveRecordExtensions::ValidationReflection.in_ignored_subvalidation = false
|
|
51
|
+
|
|
52
|
+
def self.included(base)
|
|
53
|
+
return if base.kind_of?(BoilerPlate::ActiveRecordExtensions::ValidationReflection::ClassMethods)
|
|
54
|
+
base.extend(ClassMethods)
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
def self.load_config
|
|
58
|
+
if File.file?(CONFIG_PATH)
|
|
59
|
+
config = OpenStruct.new
|
|
60
|
+
config.reflected_validations = reflected_validations
|
|
61
|
+
silence_warnings do
|
|
62
|
+
eval(IO.read(CONFIG_PATH), binding, CONFIG_PATH)
|
|
63
|
+
end
|
|
64
|
+
end
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
def self.install(base)
|
|
68
|
+
reflected_validations.freeze
|
|
69
|
+
reflected_validations.each do |validation_type|
|
|
70
|
+
next if base.respond_to?("#{validation_type}_with_reflection")
|
|
71
|
+
ignore_subvalidations = false
|
|
72
|
+
if validation_type.kind_of?(Hash)
|
|
73
|
+
ignore_subvalidations = validation_type[:ignore_subvalidations]
|
|
74
|
+
validation_type = validation_type[:method]
|
|
75
|
+
end
|
|
76
|
+
base.class_eval <<-"end_eval"
|
|
77
|
+
class << self
|
|
78
|
+
def #{validation_type}_with_reflection(*attr_names)
|
|
79
|
+
ignoring_subvalidations(#{ignore_subvalidations}) do
|
|
80
|
+
#{validation_type}_without_reflection(*attr_names)
|
|
81
|
+
remember_validation_metadata(:#{validation_type}, *attr_names)
|
|
82
|
+
end
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
alias_method_chain :#{validation_type}, :reflection
|
|
86
|
+
end
|
|
87
|
+
end_eval
|
|
88
|
+
end
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
module ClassMethods
|
|
92
|
+
|
|
93
|
+
# Returns an array of MacroReflection objects for all validations in the class
|
|
94
|
+
def reflect_on_all_validations
|
|
95
|
+
read_inheritable_attribute(:validations) || []
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
# Returns an array of MacroReflection objects for all validations defined for the field +attr_name+.
|
|
99
|
+
def reflect_on_validations_for(attr_name)
|
|
100
|
+
attr_name = attr_name.to_sym
|
|
101
|
+
reflect_on_all_validations.select do |reflection|
|
|
102
|
+
reflection.name == attr_name
|
|
103
|
+
end
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
private
|
|
107
|
+
|
|
108
|
+
def remember_validation_metadata(validation_type, *attr_names)
|
|
109
|
+
configuration = attr_names.last.is_a?(Hash) ? attr_names.pop : {}
|
|
110
|
+
attr_names.each do |attr_name|
|
|
111
|
+
write_inheritable_array :validations,
|
|
112
|
+
[ ActiveRecord::Reflection::MacroReflection.new(validation_type, attr_name.to_sym, configuration, self) ]
|
|
113
|
+
end
|
|
114
|
+
end
|
|
115
|
+
|
|
116
|
+
def ignoring_subvalidations(ignore)
|
|
117
|
+
save_ignore = BoilerPlate::ActiveRecordExtensions::ValidationReflection.in_ignored_subvalidation
|
|
118
|
+
unless BoilerPlate::ActiveRecordExtensions::ValidationReflection.in_ignored_subvalidation
|
|
119
|
+
BoilerPlate::ActiveRecordExtensions::ValidationReflection.in_ignored_subvalidation = ignore
|
|
120
|
+
yield
|
|
121
|
+
end
|
|
122
|
+
ensure
|
|
123
|
+
BoilerPlate::ActiveRecordExtensions::ValidationReflection.in_ignored_subvalidation = save_ignore
|
|
124
|
+
end
|
|
125
|
+
end
|
|
126
|
+
|
|
127
|
+
end
|
|
128
|
+
end
|
|
129
|
+
end
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
|
|
2
|
+
ENV["RAILS_ENV"] = "test"
|
|
3
|
+
RAILS_ROOT = File.join(File.dirname(__FILE__), '../../../..')
|
|
4
|
+
|
|
5
|
+
$:.unshift File.join(File.dirname(__FILE__), '../lib')
|
|
6
|
+
$:.unshift File.join(RAILS_ROOT, 'lib')
|
|
7
|
+
$:.unshift File.join(RAILS_ROOT, 'vendor/rails/activerecord/lib')
|
|
8
|
+
$:.unshift File.join(RAILS_ROOT, 'vendor/rails/actionpack/lib')
|
|
9
|
+
$:.unshift File.join(RAILS_ROOT, 'vendor/rails/activesupport/lib')
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
require 'test/unit'
|
|
13
|
+
require 'logger'
|
|
14
|
+
require 'active_support'
|
|
15
|
+
require 'active_record'
|
|
16
|
+
require 'action_controller'
|
|
17
|
+
require 'action_controller/assertions'
|
|
18
|
+
require 'html/document'
|
|
19
|
+
|
|
20
|
+
require 'ruby-debug'
|
|
21
|
+
|
|
22
|
+
RAILS_DEFAULT_LOGGER = Logger.new(STDERR)
|
|
23
|
+
### TODO why is this necessary?
|
|
24
|
+
ActionController::Base.logger = RAILS_DEFAULT_LOGGER
|
|
25
|
+
ActiveRecord::Base.logger = RAILS_DEFAULT_LOGGER
|
|
26
|
+
ActiveRecord::Base.colorize_logging = false
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def with_log_level(level)
|
|
30
|
+
old_level = RAILS_DEFAULT_LOGGER.level
|
|
31
|
+
RAILS_DEFAULT_LOGGER.level = level
|
|
32
|
+
yield
|
|
33
|
+
ensure
|
|
34
|
+
RAILS_DEFAULT_LOGGER.level = old_level
|
|
35
|
+
end
|
|
36
|
+
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
|
|
2
|
+
$:.unshift File.join(File.dirname(__FILE__))
|
|
3
|
+
$:.unshift File.join(File.dirname(__FILE__), '/../lib')
|
|
4
|
+
|
|
5
|
+
require 'test_helper'
|
|
6
|
+
|
|
7
|
+
ActiveRecord::Base.class_eval do
|
|
8
|
+
def self.validates_something_weird(*cols)
|
|
9
|
+
cols.each do |col|
|
|
10
|
+
validates_format_of col, :with => /weird/
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
def self.validates_something_selfcontained(*cols)
|
|
14
|
+
cols.each do |col|
|
|
15
|
+
validates_format_of col, :with => /blablabla/
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
require 'boiler_plate/validation_reflection'
|
|
21
|
+
|
|
22
|
+
ActiveRecord::Base.class_eval do
|
|
23
|
+
include BoilerPlate::ActiveRecordExtensions::ValidationReflection
|
|
24
|
+
BoilerPlate::ActiveRecordExtensions::ValidationReflection.reflected_validations << :validates_something_weird
|
|
25
|
+
BoilerPlate::ActiveRecordExtensions::ValidationReflection.reflected_validations << {
|
|
26
|
+
:method => :validates_something_selfcontained,
|
|
27
|
+
:ignore_subvalidations => true
|
|
28
|
+
}
|
|
29
|
+
BoilerPlate::ActiveRecordExtensions::ValidationReflection.install(self)
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
class ValidationReflectionTest < Test::Unit::TestCase
|
|
34
|
+
|
|
35
|
+
class Dummy < ActiveRecord::Base
|
|
36
|
+
class << self
|
|
37
|
+
|
|
38
|
+
def create_fake_column(name, null = true, limit = nil)
|
|
39
|
+
sql_type = limit ? "varchar (#{limit})" : nil
|
|
40
|
+
col = ActiveRecord::ConnectionAdapters::Column.new(name, nil, sql_type, null)
|
|
41
|
+
col
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
def columns
|
|
45
|
+
[
|
|
46
|
+
create_fake_column('col0'),
|
|
47
|
+
create_fake_column('col1'),
|
|
48
|
+
create_fake_column('col2', false, 100),
|
|
49
|
+
create_fake_column('col3'),
|
|
50
|
+
create_fake_column('col4'),
|
|
51
|
+
create_fake_column('col5'),
|
|
52
|
+
create_fake_column('col6'),
|
|
53
|
+
create_fake_column('col7')
|
|
54
|
+
]
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
has_one :nothing
|
|
59
|
+
|
|
60
|
+
validates_presence_of :col1
|
|
61
|
+
validates_length_of :col2, :maximum => 100
|
|
62
|
+
validates_format_of :col3, :with => /^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i
|
|
63
|
+
validates_numericality_of :col4, :only_integer => true
|
|
64
|
+
validates_numericality_of :col5, :less_than => 5
|
|
65
|
+
validates_something_weird :col6
|
|
66
|
+
validates_something_selfcontained :col7
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
def test_sanity
|
|
71
|
+
assert_equal [], Dummy.reflect_on_validations_for(:col0)
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
def test_validates_presence_of_is_reflected
|
|
75
|
+
refls = Dummy.reflect_on_validations_for(:col1)
|
|
76
|
+
assert refls.all? { |r| r.name.to_s == 'col1' }
|
|
77
|
+
assert refls.find { |r| r.macro == :validates_presence_of }
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
def test_string_limit_is_reflected
|
|
81
|
+
refls = Dummy.reflect_on_validations_for(:col2)
|
|
82
|
+
assert refls.any? { |r| r.macro == :validates_length_of && r.options[:maximum] == 100 }
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
def test_format_is_reflected
|
|
86
|
+
refls = Dummy.reflect_on_validations_for(:col3)
|
|
87
|
+
assert refls.any? { |r| r.macro == :validates_format_of && r.options[:with] == /^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i }
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
def test_numeric_integer_is_reflected
|
|
91
|
+
refls = Dummy.reflect_on_validations_for(:col4)
|
|
92
|
+
assert refls.any? { |r| r.macro == :validates_numericality_of && r.options[:only_integer] }
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
def test_numeric_is_reflected
|
|
96
|
+
refls = Dummy.reflect_on_validations_for(:col5)
|
|
97
|
+
assert refls.any? { |r| r.macro == :validates_numericality_of }
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
def test_validation_options_are_reflected
|
|
101
|
+
refls = Dummy.reflect_on_validations_for(:col5)
|
|
102
|
+
refl = refls[0]
|
|
103
|
+
assert_equal 5, refl.options[:less_than]
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
def test_custom_validations_are_reflected
|
|
107
|
+
refls = Dummy.reflect_on_validations_for(:col6)
|
|
108
|
+
assert refls.any? { |r| r.macro == :validates_something_weird }
|
|
109
|
+
assert refls.any? { |r| r.macro == :validates_format_of }
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
def test_custom_validations_with_options_are_reflected
|
|
113
|
+
refls = Dummy.reflect_on_validations_for(:col7)
|
|
114
|
+
assert refls.any? { |r| r.macro == :validates_something_selfcontained }
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
def test_subvalidations_are_reflected
|
|
118
|
+
refls = Dummy.reflect_on_validations_for(:col6)
|
|
119
|
+
assert_equal 2, refls.size
|
|
120
|
+
end
|
|
121
|
+
|
|
122
|
+
def test_ignored_subvalidations_are_not_reflected
|
|
123
|
+
refls = Dummy.reflect_on_validations_for(:col7)
|
|
124
|
+
assert_equal 1, refls.size
|
|
125
|
+
end
|
|
126
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cms-lite
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Justin Ball
|
|
@@ -9,10 +9,19 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-
|
|
12
|
+
date: 2009-07-15 00:00:00 -06:00
|
|
13
13
|
default_executable:
|
|
14
|
-
dependencies:
|
|
15
|
-
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: babelphish
|
|
17
|
+
type: :runtime
|
|
18
|
+
version_requirement:
|
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: "0"
|
|
24
|
+
version:
|
|
16
25
|
description: CMS gem that makes it simple to interact with your content developers by serving pages from '/content'.
|
|
17
26
|
email: justinball@gmail.com
|
|
18
27
|
executables: []
|
|
@@ -20,11 +29,12 @@ executables: []
|
|
|
20
29
|
extensions: []
|
|
21
30
|
|
|
22
31
|
extra_rdoc_files:
|
|
23
|
-
- README.
|
|
32
|
+
- README.rdoc
|
|
24
33
|
files:
|
|
25
34
|
- .gemspec
|
|
35
|
+
- .gitignore
|
|
26
36
|
- MIT-LICENSE
|
|
27
|
-
- README.
|
|
37
|
+
- README.rdoc
|
|
28
38
|
- Rakefile
|
|
29
39
|
- VERSION
|
|
30
40
|
- app/controllers/cms_lite_controller.rb
|
|
@@ -37,8 +47,263 @@ files:
|
|
|
37
47
|
- lib/cms_lite/tasks.rb
|
|
38
48
|
- rails/init.rb
|
|
39
49
|
- tasks/rails.rake
|
|
40
|
-
- test/
|
|
41
|
-
- test/
|
|
50
|
+
- test/rails_root/.gitignore
|
|
51
|
+
- test/rails_root/.rake_tasks
|
|
52
|
+
- test/rails_root/Capfile
|
|
53
|
+
- test/rails_root/Rakefile
|
|
54
|
+
- test/rails_root/app/controllers/application_controller.rb
|
|
55
|
+
- test/rails_root/app/models/.keep
|
|
56
|
+
- test/rails_root/app/models/user.rb
|
|
57
|
+
- test/rails_root/app/models/user_session.rb
|
|
58
|
+
- test/rails_root/app/views/layouts/default.html.erb
|
|
59
|
+
- test/rails_root/app/views/layouts/test.html.erb
|
|
60
|
+
- test/rails_root/config/amazon_s3.yml
|
|
61
|
+
- test/rails_root/config/boot.rb
|
|
62
|
+
- test/rails_root/config/database.yml
|
|
63
|
+
- test/rails_root/config/environment.rb
|
|
64
|
+
- test/rails_root/config/environments/development.rb
|
|
65
|
+
- test/rails_root/config/environments/production.rb
|
|
66
|
+
- test/rails_root/config/environments/test.rb
|
|
67
|
+
- test/rails_root/config/global_config.yml
|
|
68
|
+
- test/rails_root/config/initializers/cms_lite.rb
|
|
69
|
+
- test/rails_root/config/initializers/inflections.rb
|
|
70
|
+
- test/rails_root/config/initializers/mime_types.rb
|
|
71
|
+
- test/rails_root/config/initializers/requires.rb
|
|
72
|
+
- test/rails_root/config/initializers/session_store.rb
|
|
73
|
+
- test/rails_root/config/routes.rb
|
|
74
|
+
- test/rails_root/content/pages/en/demo/hi.html.erb
|
|
75
|
+
- test/rails_root/content/pages/en/open/hello.html.erb
|
|
76
|
+
- test/rails_root/content/protected-pages/en/demo/hi.html.erb
|
|
77
|
+
- test/rails_root/content/protected-pages/en/protected/safe-hello.html.erb
|
|
78
|
+
- test/rails_root/db/.keep
|
|
79
|
+
- test/rails_root/db/migrate/20090320174818_create_muck_permissions_and_roles.rb
|
|
80
|
+
- test/rails_root/db/migrate/20090402234137_create_languages.rb
|
|
81
|
+
- test/rails_root/db/migrate/20090426041056_create_countries.rb
|
|
82
|
+
- test/rails_root/db/migrate/20090426041103_create_states.rb
|
|
83
|
+
- test/rails_root/db/migrate/20090530170040_create_themes.rb
|
|
84
|
+
- test/rails_root/db/migrate/20090602041838_create_users.rb
|
|
85
|
+
- test/rails_root/db/migrate/20090606153236_create_domain_themes.rb
|
|
86
|
+
- test/rails_root/features/step_definitions/cms_steps.rb
|
|
87
|
+
- test/rails_root/features/step_definitions/common_steps.rb
|
|
88
|
+
- test/rails_root/features/step_definitions/webrat_steps.rb
|
|
89
|
+
- test/rails_root/features/support/env.rb
|
|
90
|
+
- test/rails_root/features/view_cms_pages.feature
|
|
91
|
+
- test/rails_root/lib/tasks/cucumber.rake
|
|
92
|
+
- test/rails_root/public/.htaccess
|
|
93
|
+
- test/rails_root/public/404.html
|
|
94
|
+
- test/rails_root/public/422.html
|
|
95
|
+
- test/rails_root/public/500.html
|
|
96
|
+
- test/rails_root/public/dispatch.rb
|
|
97
|
+
- test/rails_root/public/favicon.ico
|
|
98
|
+
- test/rails_root/public/images/arrow_left.gif
|
|
99
|
+
- test/rails_root/public/images/arrow_right.gif
|
|
100
|
+
- test/rails_root/public/images/blue/preview.gif
|
|
101
|
+
- test/rails_root/public/images/fancybox/fancy_closebox.png
|
|
102
|
+
- test/rails_root/public/images/fancybox/fancy_left.png
|
|
103
|
+
- test/rails_root/public/images/fancybox/fancy_progress.png
|
|
104
|
+
- test/rails_root/public/images/fancybox/fancy_right.png
|
|
105
|
+
- test/rails_root/public/images/fancybox/fancy_shadow_e.png
|
|
106
|
+
- test/rails_root/public/images/fancybox/fancy_shadow_n.png
|
|
107
|
+
- test/rails_root/public/images/fancybox/fancy_shadow_ne.png
|
|
108
|
+
- test/rails_root/public/images/fancybox/fancy_shadow_nw.png
|
|
109
|
+
- test/rails_root/public/images/fancybox/fancy_shadow_s.png
|
|
110
|
+
- test/rails_root/public/images/fancybox/fancy_shadow_se.png
|
|
111
|
+
- test/rails_root/public/images/fancybox/fancy_shadow_sw.png
|
|
112
|
+
- test/rails_root/public/images/fancybox/fancy_shadow_w.png
|
|
113
|
+
- test/rails_root/public/images/fancybox/fancy_title_left.png
|
|
114
|
+
- test/rails_root/public/images/fancybox/fancy_title_main.png
|
|
115
|
+
- test/rails_root/public/images/fancybox/fancy_title_right.png
|
|
116
|
+
- test/rails_root/public/images/icons/accept.png
|
|
117
|
+
- test/rails_root/public/images/icons/add.png
|
|
118
|
+
- test/rails_root/public/images/icons/delete.png
|
|
119
|
+
- test/rails_root/public/images/icons/vote.png
|
|
120
|
+
- test/rails_root/public/images/kjh/preview.gif
|
|
121
|
+
- test/rails_root/public/images/kjy/preview.gif
|
|
122
|
+
- test/rails_root/public/images/loading.gif
|
|
123
|
+
- test/rails_root/public/images/profile_default.jpg
|
|
124
|
+
- test/rails_root/public/images/rails.png
|
|
125
|
+
- test/rails_root/public/images/red/preview.gif
|
|
126
|
+
- test/rails_root/public/images/spinner.gif
|
|
127
|
+
- test/rails_root/public/images/sprites.png
|
|
128
|
+
- test/rails_root/public/javascripts/application.js
|
|
129
|
+
- test/rails_root/public/javascripts/builder.js
|
|
130
|
+
- test/rails_root/public/javascripts/controls.js
|
|
131
|
+
- test/rails_root/public/javascripts/dragdrop.js
|
|
132
|
+
- test/rails_root/public/javascripts/effects.js
|
|
133
|
+
- test/rails_root/public/javascripts/fancyzoom.min.js
|
|
134
|
+
- test/rails_root/public/javascripts/jquery/jquery-ui.js
|
|
135
|
+
- test/rails_root/public/javascripts/jquery/jquery.easing.js
|
|
136
|
+
- test/rails_root/public/javascripts/jquery/jquery.fancybox.js
|
|
137
|
+
- test/rails_root/public/javascripts/jquery/jquery.form.js
|
|
138
|
+
- test/rails_root/public/javascripts/jquery/jquery.jgrowl.js
|
|
139
|
+
- test/rails_root/public/javascripts/jquery/jquery.js
|
|
140
|
+
- test/rails_root/public/javascripts/jquery/jquery.tips.js
|
|
141
|
+
- test/rails_root/public/javascripts/muck.js
|
|
142
|
+
- test/rails_root/public/javascripts/prototype.js
|
|
143
|
+
- test/rails_root/public/javascripts/scriptaculous.js
|
|
144
|
+
- test/rails_root/public/javascripts/slider.js
|
|
145
|
+
- test/rails_root/public/javascripts/sound.js
|
|
146
|
+
- test/rails_root/public/robots.txt
|
|
147
|
+
- test/rails_root/public/stylesheets/.keep
|
|
148
|
+
- test/rails_root/public/stylesheets/admin.css
|
|
149
|
+
- test/rails_root/public/stylesheets/blue.css
|
|
150
|
+
- test/rails_root/public/stylesheets/blueprint/ie.css
|
|
151
|
+
- test/rails_root/public/stylesheets/blueprint/liquid_screen.css
|
|
152
|
+
- test/rails_root/public/stylesheets/blueprint/plugins/buttons/icons/cross.png
|
|
153
|
+
- test/rails_root/public/stylesheets/blueprint/plugins/buttons/icons/key.png
|
|
154
|
+
- test/rails_root/public/stylesheets/blueprint/plugins/buttons/icons/tick.png
|
|
155
|
+
- test/rails_root/public/stylesheets/blueprint/plugins/buttons/readme.txt
|
|
156
|
+
- test/rails_root/public/stylesheets/blueprint/plugins/buttons/screen.css
|
|
157
|
+
- test/rails_root/public/stylesheets/blueprint/plugins/fancy-type/readme.txt
|
|
158
|
+
- test/rails_root/public/stylesheets/blueprint/plugins/fancy-type/screen.css
|
|
159
|
+
- test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/doc.png
|
|
160
|
+
- test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/email.png
|
|
161
|
+
- test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/external.png
|
|
162
|
+
- test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/feed.png
|
|
163
|
+
- test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/im.png
|
|
164
|
+
- test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/pdf.png
|
|
165
|
+
- test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/visited.png
|
|
166
|
+
- test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/xls.png
|
|
167
|
+
- test/rails_root/public/stylesheets/blueprint/plugins/link-icons/readme.txt
|
|
168
|
+
- test/rails_root/public/stylesheets/blueprint/plugins/link-icons/screen.css
|
|
169
|
+
- test/rails_root/public/stylesheets/blueprint/plugins/liquid/liquid.css
|
|
170
|
+
- test/rails_root/public/stylesheets/blueprint/plugins/liquid/src/liquid.css
|
|
171
|
+
- test/rails_root/public/stylesheets/blueprint/plugins/rtl/readme.txt
|
|
172
|
+
- test/rails_root/public/stylesheets/blueprint/plugins/rtl/screen.css
|
|
173
|
+
- test/rails_root/public/stylesheets/blueprint/print.css
|
|
174
|
+
- test/rails_root/public/stylesheets/blueprint/screen.css
|
|
175
|
+
- test/rails_root/public/stylesheets/blueprint/sprite.css
|
|
176
|
+
- test/rails_root/public/stylesheets/blueprint/src/forms.css
|
|
177
|
+
- test/rails_root/public/stylesheets/blueprint/src/grid.css
|
|
178
|
+
- test/rails_root/public/stylesheets/blueprint/src/grid.png
|
|
179
|
+
- test/rails_root/public/stylesheets/blueprint/src/ie.css
|
|
180
|
+
- test/rails_root/public/stylesheets/blueprint/src/print.css
|
|
181
|
+
- test/rails_root/public/stylesheets/blueprint/src/reset.css
|
|
182
|
+
- test/rails_root/public/stylesheets/blueprint/src/typography.css
|
|
183
|
+
- test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png
|
|
184
|
+
- test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_diagonals-thick_15_444444_40x40.png
|
|
185
|
+
- test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_100_f0f0f0_1x400.png
|
|
186
|
+
- test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_50_99c2ff_1x400.png
|
|
187
|
+
- test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_55_fbf5d0_1x400.png
|
|
188
|
+
- test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_80_e6e6e6_1x400.png
|
|
189
|
+
- test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_95_fef1ec_1x400.png
|
|
190
|
+
- test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png
|
|
191
|
+
- test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_highlight-soft_100_e7eef3_1x100.png
|
|
192
|
+
- test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_222222_256x240.png
|
|
193
|
+
- test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_2694e8_256x240.png
|
|
194
|
+
- test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_2e83ff_256x240.png
|
|
195
|
+
- test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_72a7cf_256x240.png
|
|
196
|
+
- test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_888888_256x240.png
|
|
197
|
+
- test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_cd0a0a_256x240.png
|
|
198
|
+
- test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_ffffff_256x240.png
|
|
199
|
+
- test/rails_root/public/stylesheets/jquery/cupertino/jquery-ui-1.7.1.custom.css
|
|
200
|
+
- test/rails_root/public/stylesheets/jquery/jquery.fancybox.css
|
|
201
|
+
- test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png
|
|
202
|
+
- test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_flat_55_fbec88_40x100.png
|
|
203
|
+
- test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png
|
|
204
|
+
- test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_glass_85_dfeffc_1x400.png
|
|
205
|
+
- test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_glass_95_fef1ec_1x400.png
|
|
206
|
+
- test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png
|
|
207
|
+
- test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png
|
|
208
|
+
- test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png
|
|
209
|
+
- test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_217bc0_256x240.png
|
|
210
|
+
- test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_2e83ff_256x240.png
|
|
211
|
+
- test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_469bdd_256x240.png
|
|
212
|
+
- test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_6da8d5_256x240.png
|
|
213
|
+
- test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_cd0a0a_256x240.png
|
|
214
|
+
- test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_d8e7f3_256x240.png
|
|
215
|
+
- test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_f9bd01_256x240.png
|
|
216
|
+
- test/rails_root/public/stylesheets/jquery/redmond/jquery-ui-1.7.1.custom.css
|
|
217
|
+
- test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
|
|
218
|
+
- test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
|
|
219
|
+
- test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
|
|
220
|
+
- test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
|
|
221
|
+
- test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_75_dadada_1x400.png
|
|
222
|
+
- test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
|
|
223
|
+
- test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
|
|
224
|
+
- test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
|
|
225
|
+
- test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_222222_256x240.png
|
|
226
|
+
- test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_2e83ff_256x240.png
|
|
227
|
+
- test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_454545_256x240.png
|
|
228
|
+
- test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_888888_256x240.png
|
|
229
|
+
- test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_cd0a0a_256x240.png
|
|
230
|
+
- test/rails_root/public/stylesheets/jquery/smoothness/jquery-ui-1.7.1.custom.css
|
|
231
|
+
- test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png
|
|
232
|
+
- test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png
|
|
233
|
+
- test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_flat_10_000000_40x100.png
|
|
234
|
+
- test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png
|
|
235
|
+
- test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png
|
|
236
|
+
- test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png
|
|
237
|
+
- test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png
|
|
238
|
+
- test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
|
|
239
|
+
- test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
|
|
240
|
+
- test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_222222_256x240.png
|
|
241
|
+
- test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_228ef1_256x240.png
|
|
242
|
+
- test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_ef8c08_256x240.png
|
|
243
|
+
- test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_ffd27a_256x240.png
|
|
244
|
+
- test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_ffffff_256x240.png
|
|
245
|
+
- test/rails_root/public/stylesheets/jquery/ui-lightness/jquery-ui-1.7.1.custom.css
|
|
246
|
+
- test/rails_root/public/stylesheets/kjh.css
|
|
247
|
+
- test/rails_root/public/stylesheets/kjy.css
|
|
248
|
+
- test/rails_root/public/stylesheets/red.css
|
|
249
|
+
- test/rails_root/public/stylesheets/reset.css
|
|
250
|
+
- test/rails_root/public/stylesheets/styles.css
|
|
251
|
+
- test/rails_root/public/stylesheets/themes/blue/styles.css
|
|
252
|
+
- test/rails_root/public/stylesheets/themes/red/styles.css
|
|
253
|
+
- test/rails_root/script/about
|
|
254
|
+
- test/rails_root/script/breakpointer
|
|
255
|
+
- test/rails_root/script/console
|
|
256
|
+
- test/rails_root/script/create_project.rb
|
|
257
|
+
- test/rails_root/script/cucumber
|
|
258
|
+
- test/rails_root/script/dbconsole
|
|
259
|
+
- test/rails_root/script/destroy
|
|
260
|
+
- test/rails_root/script/generate
|
|
261
|
+
- test/rails_root/script/performance/benchmarker
|
|
262
|
+
- test/rails_root/script/performance/profiler
|
|
263
|
+
- test/rails_root/script/performance/request
|
|
264
|
+
- test/rails_root/script/plugin
|
|
265
|
+
- test/rails_root/script/process/inspector
|
|
266
|
+
- test/rails_root/script/process/reaper
|
|
267
|
+
- test/rails_root/script/process/spawner
|
|
268
|
+
- test/rails_root/script/runner
|
|
269
|
+
- test/rails_root/script/server
|
|
270
|
+
- test/rails_root/test/factories.rb
|
|
271
|
+
- test/rails_root/test/functional/.keep
|
|
272
|
+
- test/rails_root/test/functional/cms_lite_controller_test.rb
|
|
273
|
+
- test/rails_root/test/mocks/development/.keep
|
|
274
|
+
- test/rails_root/test/mocks/test/.keep
|
|
275
|
+
- test/rails_root/test/shoulda_macros/controller.rb
|
|
276
|
+
- test/rails_root/test/shoulda_macros/models.rb
|
|
277
|
+
- test/rails_root/test/test_helper.rb
|
|
278
|
+
- test/rails_root/test/unit/.keep
|
|
279
|
+
- test/rails_root/test/unit/cms_lite_test.rb
|
|
280
|
+
- test/rails_root/themes/blue/content/pages/en/blue/blue.html.erb
|
|
281
|
+
- test/rails_root/themes/blue/content/pages/en/open/blue.html.erb
|
|
282
|
+
- test/rails_root/themes/blue/description.txt
|
|
283
|
+
- test/rails_root/themes/blue/locales/en.yml
|
|
284
|
+
- test/rails_root/themes/blue/views/layouts/default.html.erb
|
|
285
|
+
- test/rails_root/themes/blue/views/layouts/global/_footer.html.erb
|
|
286
|
+
- test/rails_root/themes/blue/views/layouts/global/_head.html.erb
|
|
287
|
+
- test/rails_root/themes/blue/views/layouts/global/_header.html.erb
|
|
288
|
+
- test/rails_root/themes/red/content/protected-pages/en/red/red.html.erb
|
|
289
|
+
- test/rails_root/themes/red/description.txt
|
|
290
|
+
- test/rails_root/themes/red/locales/en.yml
|
|
291
|
+
- test/rails_root/themes/red/views/layouts/default.html.erb
|
|
292
|
+
- test/rails_root/themes/red/views/layouts/global/_footer.html.erb
|
|
293
|
+
- test/rails_root/themes/red/views/layouts/global/_head.html.erb
|
|
294
|
+
- test/rails_root/themes/red/views/layouts/global/_header.html.erb
|
|
295
|
+
- test/rails_root/vendor/plugins/ssl_requirement/README
|
|
296
|
+
- test/rails_root/vendor/plugins/ssl_requirement/lib/ssl_requirement.rb
|
|
297
|
+
- test/rails_root/vendor/plugins/ssl_requirement/test/ssl_requirement_test.rb
|
|
298
|
+
- test/rails_root/vendor/plugins/validation_reflection/CHANGELOG
|
|
299
|
+
- test/rails_root/vendor/plugins/validation_reflection/LICENSE
|
|
300
|
+
- test/rails_root/vendor/plugins/validation_reflection/README
|
|
301
|
+
- test/rails_root/vendor/plugins/validation_reflection/Rakefile
|
|
302
|
+
- test/rails_root/vendor/plugins/validation_reflection/about.yml
|
|
303
|
+
- test/rails_root/vendor/plugins/validation_reflection/init.rb
|
|
304
|
+
- test/rails_root/vendor/plugins/validation_reflection/lib/boiler_plate/validation_reflection.rb
|
|
305
|
+
- test/rails_root/vendor/plugins/validation_reflection/test/test_helper.rb
|
|
306
|
+
- test/rails_root/vendor/plugins/validation_reflection/test/validation_reflection_test.rb
|
|
42
307
|
- uninstall.rb
|
|
43
308
|
has_rdoc: true
|
|
44
309
|
homepage: http://github.com/jbasdf/cms_lite
|
|
@@ -67,5 +332,43 @@ signing_key:
|
|
|
67
332
|
specification_version: 2
|
|
68
333
|
summary: Simple CMS system
|
|
69
334
|
test_files:
|
|
70
|
-
- test/
|
|
71
|
-
- test/
|
|
335
|
+
- test/rails_root/app/controllers/application_controller.rb
|
|
336
|
+
- test/rails_root/app/models/user.rb
|
|
337
|
+
- test/rails_root/app/models/user_session.rb
|
|
338
|
+
- test/rails_root/config/boot.rb
|
|
339
|
+
- test/rails_root/config/environment.rb
|
|
340
|
+
- test/rails_root/config/environments/development.rb
|
|
341
|
+
- test/rails_root/config/environments/production.rb
|
|
342
|
+
- test/rails_root/config/environments/test.rb
|
|
343
|
+
- test/rails_root/config/initializers/cms_lite.rb
|
|
344
|
+
- test/rails_root/config/initializers/inflections.rb
|
|
345
|
+
- test/rails_root/config/initializers/mime_types.rb
|
|
346
|
+
- test/rails_root/config/initializers/requires.rb
|
|
347
|
+
- test/rails_root/config/initializers/session_store.rb
|
|
348
|
+
- test/rails_root/config/routes.rb
|
|
349
|
+
- test/rails_root/db/migrate/20090320174818_create_muck_permissions_and_roles.rb
|
|
350
|
+
- test/rails_root/db/migrate/20090402234137_create_languages.rb
|
|
351
|
+
- test/rails_root/db/migrate/20090426041056_create_countries.rb
|
|
352
|
+
- test/rails_root/db/migrate/20090426041103_create_states.rb
|
|
353
|
+
- test/rails_root/db/migrate/20090530170040_create_themes.rb
|
|
354
|
+
- test/rails_root/db/migrate/20090602041838_create_users.rb
|
|
355
|
+
- test/rails_root/db/migrate/20090606153236_create_domain_themes.rb
|
|
356
|
+
- test/rails_root/db/schema.rb
|
|
357
|
+
- test/rails_root/features/step_definitions/cms_steps.rb
|
|
358
|
+
- test/rails_root/features/step_definitions/common_steps.rb
|
|
359
|
+
- test/rails_root/features/step_definitions/webrat_steps.rb
|
|
360
|
+
- test/rails_root/features/support/env.rb
|
|
361
|
+
- test/rails_root/public/dispatch.rb
|
|
362
|
+
- test/rails_root/script/create_project.rb
|
|
363
|
+
- test/rails_root/test/factories.rb
|
|
364
|
+
- test/rails_root/test/functional/cms_lite_controller_test.rb
|
|
365
|
+
- test/rails_root/test/shoulda_macros/controller.rb
|
|
366
|
+
- test/rails_root/test/shoulda_macros/models.rb
|
|
367
|
+
- test/rails_root/test/test_helper.rb
|
|
368
|
+
- test/rails_root/test/unit/cms_lite_test.rb
|
|
369
|
+
- test/rails_root/vendor/plugins/ssl_requirement/lib/ssl_requirement.rb
|
|
370
|
+
- test/rails_root/vendor/plugins/ssl_requirement/test/ssl_requirement_test.rb
|
|
371
|
+
- test/rails_root/vendor/plugins/validation_reflection/init.rb
|
|
372
|
+
- test/rails_root/vendor/plugins/validation_reflection/lib/boiler_plate/validation_reflection.rb
|
|
373
|
+
- test/rails_root/vendor/plugins/validation_reflection/test/test_helper.rb
|
|
374
|
+
- test/rails_root/vendor/plugins/validation_reflection/test/validation_reflection_test.rb
|