muck-invites 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +30 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +6 -0
- data/Rakefile +66 -0
- data/VERSION +1 -0
- data/app/controllers/muck/invites_controller.rb +62 -0
- data/app/models/invite_mailer.rb +28 -0
- data/app/models/user_invite.rb +6 -0
- data/app/views/invite_mailer/invite_notification.text.html.erb +9 -0
- data/app/views/invite_mailer/invite_notification.text.plain.erb +9 -0
- data/app/views/invite_mailer/invited_joined_notification.text.html.erb +5 -0
- data/app/views/invite_mailer/invited_joined_notification.text.plain.erb +5 -0
- data/app/views/invites/_get_contacts.html.erb +27 -0
- data/app/views/invites/new.html.erb +50 -0
- data/config/muck_invites_routes.rb +3 -0
- data/db/migrate/20090928213532_create_invites.rb +20 -0
- data/install.rb +1 -0
- data/lib/active_record/acts/muck_invite.rb +57 -0
- data/lib/active_record/acts/muck_inviter.rb +68 -0
- data/lib/muck_invites.rb +3 -0
- data/lib/muck_invites/initialize_routes.rb +8 -0
- data/lib/muck_invites/tasks.rb +28 -0
- data/locales/ar.yml +19 -0
- data/locales/bg.yml +19 -0
- data/locales/ca.yml +19 -0
- data/locales/cs.yml +19 -0
- data/locales/da.yml +19 -0
- data/locales/de.yml +19 -0
- data/locales/el.yml +19 -0
- data/locales/en.yml +19 -0
- data/locales/es.yml +19 -0
- data/locales/et.yml +19 -0
- data/locales/fa.yml +19 -0
- data/locales/fi.yml +19 -0
- data/locales/fr.yml +19 -0
- data/locales/gl.yml +19 -0
- data/locales/hi.yml +19 -0
- data/locales/hr.yml +19 -0
- data/locales/hu.yml +19 -0
- data/locales/id.yml +19 -0
- data/locales/it.yml +19 -0
- data/locales/iw.yml +19 -0
- data/locales/ja.yml +19 -0
- data/locales/ko.yml +19 -0
- data/locales/lt.yml +19 -0
- data/locales/lv.yml +19 -0
- data/locales/mt.yml +19 -0
- data/locales/nl.yml +19 -0
- data/locales/no.yml +20 -0
- data/locales/pl.yml +19 -0
- data/locales/pt-PT.yml +19 -0
- data/locales/ro.yml +19 -0
- data/locales/ru.yml +19 -0
- data/locales/sk.yml +19 -0
- data/locales/sl.yml +19 -0
- data/locales/sq.yml +19 -0
- data/locales/sr.yml +19 -0
- data/locales/sv.yml +19 -0
- data/locales/th.yml +19 -0
- data/locales/tl.yml +19 -0
- data/locales/tr.yml +19 -0
- data/locales/uk.yml +19 -0
- data/locales/vi.yml +19 -0
- data/locales/zh-CN.yml +19 -0
- data/locales/zh-TW.yml +19 -0
- data/locales/zh.yml +19 -0
- data/muck-invites.gemspec +454 -0
- data/public/stylesheets/muck-invites.css +13 -0
- data/rails/init.rb +18 -0
- data/tasks/muck_invites_tasks.rake +1 -0
- 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 +23 -0
- data/test/rails_root/app/controllers/default_controller.rb +9 -0
- data/test/rails_root/app/helpers/application_helper.rb +3 -0
- data/test/rails_root/app/models/.keep +0 -0
- data/test/rails_root/app/models/activity.rb +26 -0
- data/test/rails_root/app/models/invite.rb +4 -0
- data/test/rails_root/app/models/user.rb +9 -0
- data/test/rails_root/app/models/user_session.rb +2 -0
- data/test/rails_root/app/views/default/index.html.erb +2 -0
- data/test/rails_root/app/views/layouts/default.html.erb +29 -0
- data/test/rails_root/config/boot.rb +109 -0
- data/test/rails_root/config/database.yml +23 -0
- data/test/rails_root/config/environment.rb +25 -0
- data/test/rails_root/config/environments/cucumber.rb +38 -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 +42 -0
- data/test/rails_root/config/global_config.yml +81 -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 +6 -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/20090402033319_add_muck_activities.rb +36 -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/20090602041838_create_users.rb +39 -0
- data/test/rails_root/db/migrate/20090608073052_create_friends.rb +16 -0
- data/test/rails_root/db/migrate/20090703055724_add_contents.rb +49 -0
- data/test/rails_root/db/migrate/20090704220055_create_slugs.rb +18 -0
- data/test/rails_root/db/migrate/20090928213532_create_invites.rb +20 -0
- data/test/rails_root/features/comments.feature +21 -0
- data/test/rails_root/features/step_definitions/comment_steps.rb +11 -0
- data/test/rails_root/features/step_definitions/common_steps.rb +93 -0
- data/test/rails_root/features/step_definitions/webrat_steps.rb +128 -0
- data/test/rails_root/features/support/env.rb +49 -0
- data/test/rails_root/features/support/paths.rb +33 -0
- data/test/rails_root/lib/tasks/cucumber.rake +20 -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_down.gif +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/arrow_up.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/blue_guy.png +0 -0
- data/test/rails_root/public/images/icons/button_background.png +0 -0
- data/test/rails_root/public/images/icons/cancel.png +0 -0
- data/test/rails_root/public/images/icons/close.png +0 -0
- data/test/rails_root/public/images/icons/comment.png +0 -0
- data/test/rails_root/public/images/icons/delete.png +0 -0
- data/test/rails_root/public/images/icons/exclaim.png +0 -0
- data/test/rails_root/public/images/icons/grey_guy.png +0 -0
- data/test/rails_root/public/images/icons/hide.png +0 -0
- data/test/rails_root/public/images/icons/information.png +0 -0
- data/test/rails_root/public/images/icons/minus.png +0 -0
- data/test/rails_root/public/images/icons/question.png +0 -0
- data/test/rails_root/public/images/icons/search_box.png +0 -0
- data/test/rails_root/public/images/icons/star.png +0 -0
- data/test/rails_root/public/images/icons/stop.png +0 -0
- data/test/rails_root/public/images/icons/thumb_down.png +0 -0
- data/test/rails_root/public/images/icons/thumb_up.png +0 -0
- data/test/rails_root/public/images/icons/vote.png +0 -0
- data/test/rails_root/public/images/loading.gif +0 -0
- data/test/rails_root/public/images/nothing.png +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/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/jquery/jrails.js +1 -0
- data/test/rails_root/public/javascripts/muck.js +81 -0
- data/test/rails_root/public/javascripts/muck_activities.js +108 -0
- data/test/rails_root/public/javascripts/muck_time/en.js +53 -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/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/muck-invites.css +13 -0
- data/test/rails_root/public/stylesheets/reset.css +0 -0
- data/test/rails_root/public/stylesheets/styles.css +85 -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 +8 -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 +73 -0
- data/test/rails_root/test/functional/.keep +0 -0
- data/test/rails_root/test/functional/invites_controller_test.rb +67 -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 +49 -0
- data/test/rails_root/test/shoulda_macros/forms.rb +32 -0
- data/test/rails_root/test/shoulda_macros/models.rb +50 -0
- data/test/rails_root/test/shoulda_macros/pagination.rb +53 -0
- data/test/rails_root/test/shoulda_macros/plugins.rb +34 -0
- data/test/rails_root/test/test_helper.rb +48 -0
- data/test/rails_root/test/unit/.keep +0 -0
- data/test/rails_root/test/unit/contacts_test.rb +37 -0
- data/test/rails_root/test/unit/invite_mailer_test.rb +41 -0
- data/test/rails_root/test/unit/invite_test.rb +140 -0
- data/test/rails_root/test/unit/user_test.rb +18 -0
- data/test/rails_root/vendor/plugins/jrails/CHANGELOG +43 -0
- data/test/rails_root/vendor/plugins/jrails/LICENSE +18 -0
- data/test/rails_root/vendor/plugins/jrails/README.rdoc +21 -0
- data/test/rails_root/vendor/plugins/jrails/Rakefile +18 -0
- data/test/rails_root/vendor/plugins/jrails/VERSION.yml +4 -0
- data/test/rails_root/vendor/plugins/jrails/bin/jrails +30 -0
- data/test/rails_root/vendor/plugins/jrails/init.rb +1 -0
- data/test/rails_root/vendor/plugins/jrails/install.rb +9 -0
- data/test/rails_root/vendor/plugins/jrails/javascripts/jquery-ui.js +188 -0
- data/test/rails_root/vendor/plugins/jrails/javascripts/jquery.js +19 -0
- data/test/rails_root/vendor/plugins/jrails/javascripts/jrails.js +1 -0
- data/test/rails_root/vendor/plugins/jrails/javascripts/sources/jrails.js +197 -0
- data/test/rails_root/vendor/plugins/jrails/jrails.gemspec +50 -0
- data/test/rails_root/vendor/plugins/jrails/lib/jrails.rb +421 -0
- data/test/rails_root/vendor/plugins/jrails/rails/init.rb +15 -0
- data/test/rails_root/vendor/plugins/jrails/tasks/jrails.rake +25 -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
- data/uninstall.rb +1 -0
- metadata +482 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
class CreateSlugs < ActiveRecord::Migration
|
|
2
|
+
def self.up
|
|
3
|
+
create_table :slugs do |t|
|
|
4
|
+
t.string :name
|
|
5
|
+
t.integer :sluggable_id
|
|
6
|
+
t.integer :sequence, :null => false, :default => 1
|
|
7
|
+
t.string :sluggable_type, :limit => 40
|
|
8
|
+
t.string :scope, :limit => 40
|
|
9
|
+
t.datetime :created_at
|
|
10
|
+
end
|
|
11
|
+
add_index :slugs, [:name, :sluggable_type, :scope, :sequence], :unique => true
|
|
12
|
+
add_index :slugs, :sluggable_id
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
def self.down
|
|
16
|
+
drop_table :slugs
|
|
17
|
+
end
|
|
18
|
+
end
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
class CreateInvites < ActiveRecord::Migration
|
|
2
|
+
def self.up
|
|
3
|
+
create_table :invites, :force => true do |t|
|
|
4
|
+
t.string "email", :null => false
|
|
5
|
+
end
|
|
6
|
+
add_index :invites, ["email"]
|
|
7
|
+
|
|
8
|
+
create_table :user_invites, :force => true do |t|
|
|
9
|
+
t.integer "user_id", :null => false
|
|
10
|
+
t.integer "invite_id", :null => false
|
|
11
|
+
t.timestamp "created_at", :null => false
|
|
12
|
+
end
|
|
13
|
+
add_index :user_invites, ["user_id"]
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def self.down
|
|
17
|
+
drop_table :user_invites
|
|
18
|
+
drop_table :invites
|
|
19
|
+
end
|
|
20
|
+
end
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Feature: View invites page
|
|
2
|
+
As a user
|
|
3
|
+
I want to be able to view and add invites
|
|
4
|
+
|
|
5
|
+
Scenario: Anonymous user visits the invites
|
|
6
|
+
Given I am not logged in
|
|
7
|
+
And There are invites
|
|
8
|
+
When I go to "the show invites page"
|
|
9
|
+
Then I should see "invites"
|
|
10
|
+
|
|
11
|
+
Scenario: Logged in user views add invite
|
|
12
|
+
Given I log in with role "administrator"
|
|
13
|
+
When I go to "the create invites page"
|
|
14
|
+
Then I should see "Add a new invite"
|
|
15
|
+
|
|
16
|
+
Scenario: Add invite
|
|
17
|
+
GivenScenario: Logged in user views add invite
|
|
18
|
+
When I fill in "invite_body" with "a test invite"
|
|
19
|
+
And I press "Add Invite"
|
|
20
|
+
Then I should see "added invite"
|
|
21
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
Given /^There are invites$/ do
|
|
2
|
+
create_invites
|
|
3
|
+
end
|
|
4
|
+
|
|
5
|
+
def create_invites(inviteable = nil)
|
|
6
|
+
inviteable ||= Factory(:user)
|
|
7
|
+
invite = Factory(:invite, :inviteable => inviteable)
|
|
8
|
+
child = Factory(:invite, :inviteable => inviteable)
|
|
9
|
+
child.move_to_child_of(invite)
|
|
10
|
+
invite
|
|
11
|
+
end
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
PASSWORD = "asdfasdf"
|
|
2
|
+
|
|
3
|
+
def log_in_user(user, password)
|
|
4
|
+
visit(login_url)
|
|
5
|
+
fill_in("user_session_login", :with => user.login)
|
|
6
|
+
fill_in("user_session_password", :with => PASSWORD)
|
|
7
|
+
click_button("Sign In")
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
def log_in_with_login_and_role(login, role)
|
|
11
|
+
@user = Factory(:user, :login => login, :password => PASSWORD, :password_confirmation => PASSWORD)
|
|
12
|
+
@user.add_to_role(role)
|
|
13
|
+
log_in_user(@user, PASSWORD)
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def log_in_with_role(role)
|
|
17
|
+
@user = Factory(:user, :password => PASSWORD, :password_confirmation => PASSWORD)
|
|
18
|
+
@user.add_to_role(role)
|
|
19
|
+
log_in_user(@user, PASSWORD)
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
Before do
|
|
24
|
+
ActionMailer::Base.deliveries = []
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
# Assumes password is 'asdfasdf'
|
|
29
|
+
Given /I log in as "(.*)"/ do |login|
|
|
30
|
+
@user = User.find_by_login(login)
|
|
31
|
+
log_in_user(@user, PASSWORD)
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
Given /I log in as new user "(.*)" with password "(.*)"/ do |login, password|
|
|
35
|
+
@user = Factory(:user, :login => login, :password => password, :password_confirmation => password)
|
|
36
|
+
log_in_user(@user, password)
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
Given /I log in as new user/ do
|
|
40
|
+
@user = Factory(:user, :password => PASSWORD, :password_confirmation => PASSWORD)
|
|
41
|
+
log_in_user(@user, PASSWORD)
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
Given /^I log in with role "(.*)"$/ do |role|
|
|
45
|
+
log_in_with_role(role)
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
Given /^I am not logged in$/ do
|
|
49
|
+
post '/logout'
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
Then /^I should see the login$/ do
|
|
53
|
+
response.body.should =~ /sign_in/m
|
|
54
|
+
response.body.should =~ /user_session_login/m
|
|
55
|
+
response.body.should =~ /user_session_password/m
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
#features/step_definitions/common_steps.rb
|
|
60
|
+
# On page/record
|
|
61
|
+
Given /^I am on "([^"]*)"$/ do |path|
|
|
62
|
+
visit path
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
Then /^I should be on "([^"]*)"$/ do |path|
|
|
66
|
+
current_path.should == path
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
Given /^I am on "([^"]*)" "([^"]*)"$/ do |model,number|
|
|
70
|
+
visit polymorphic_path(record_from_strings(model,number))
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
Then /^I should be on "([^"]*)" "([^"]*)"$/ do |model,number|
|
|
74
|
+
current_path.should == polymorphic_path(record_from_strings(model,number))
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
# Existing
|
|
78
|
+
Given /^a "([^"]*)" exists for "([^"]*)" "([^"]*)"$/ do |associated,model,number|
|
|
79
|
+
record = record_from_strings(model,number)
|
|
80
|
+
record.send(associated.underscore+'=',valid(associated))
|
|
81
|
+
record.save!
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
# Support
|
|
85
|
+
def current_path
|
|
86
|
+
response.request.request_uri
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
def record_from_strings(model,number)
|
|
90
|
+
model.constantize.find(:first,:offset=>number.to_i-1)
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
require File.expand_path(File.join(File.dirname(__FILE__), "..", "support", "paths"))
|
|
2
|
+
|
|
3
|
+
# Commonly used webrat steps
|
|
4
|
+
# http://github.com/brynary/webrat
|
|
5
|
+
|
|
6
|
+
Given /^I am on (.+)$/ do |page_name|
|
|
7
|
+
visit path_to(page_name)
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
When /^I go to (.+)$/ do |page_name|
|
|
11
|
+
visit path_to(page_name)
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
When /^I press "([^\"]*)"$/ do |button|
|
|
15
|
+
click_button(button)
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
When /^I follow "([^\"]*)"$/ do |link|
|
|
19
|
+
click_link(link)
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
When /^I fill in "([^\"]*)" with "([^\"]*)"$/ do |field, value|
|
|
23
|
+
fill_in(field, :with => value)
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
When /^I select "([^\"]*)" from "([^\"]*)"$/ do |value, field|
|
|
27
|
+
select(value, :from => field)
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
# Use this step in conjunction with Rail's datetime_select helper. For example:
|
|
31
|
+
# When I select "December 25, 2008 10:00" as the date and time
|
|
32
|
+
When /^I select "([^\"]*)" as the date and time$/ do |time|
|
|
33
|
+
select_datetime(time)
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
# Use this step when using multiple datetime_select helpers on a page or
|
|
37
|
+
# you want to specify which datetime to select. Given the following view:
|
|
38
|
+
# <%= f.label :preferred %><br />
|
|
39
|
+
# <%= f.datetime_select :preferred %>
|
|
40
|
+
# <%= f.label :alternative %><br />
|
|
41
|
+
# <%= f.datetime_select :alternative %>
|
|
42
|
+
# The following steps would fill out the form:
|
|
43
|
+
# When I select "November 23, 2004 11:20" as the "Preferred" date and time
|
|
44
|
+
# And I select "November 25, 2004 10:30" as the "Alternative" date and time
|
|
45
|
+
When /^I select "([^\"]*)" as the "([^\"]*)" date and time$/ do |datetime, datetime_label|
|
|
46
|
+
select_datetime(datetime, :from => datetime_label)
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
# Use this step in conjunction with Rail's time_select helper. For example:
|
|
50
|
+
# When I select "2:20PM" as the time
|
|
51
|
+
# Note: Rail's default time helper provides 24-hour time-- not 12 hour time. Webrat
|
|
52
|
+
# will convert the 2:20PM to 14:20 and then select it.
|
|
53
|
+
When /^I select "([^\"]*)" as the time$/ do |time|
|
|
54
|
+
select_time(time)
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
# Use this step when using multiple time_select helpers on a page or you want to
|
|
58
|
+
# specify the name of the time on the form. For example:
|
|
59
|
+
# When I select "7:30AM" as the "Gym" time
|
|
60
|
+
When /^I select "([^\"]*)" as the "([^\"]*)" time$/ do |time, time_label|
|
|
61
|
+
select_time(time, :from => time_label)
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
# Use this step in conjunction with Rail's date_select helper. For example:
|
|
65
|
+
# When I select "February 20, 1981" as the date
|
|
66
|
+
When /^I select "([^\"]*)" as the date$/ do |date|
|
|
67
|
+
select_date(date)
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
# Use this step when using multiple date_select helpers on one page or
|
|
71
|
+
# you want to specify the name of the date on the form. For example:
|
|
72
|
+
# When I select "April 26, 1982" as the "Date of Birth" date
|
|
73
|
+
When /^I select "([^\"]*)" as the "([^\"]*)" date$/ do |date, date_label|
|
|
74
|
+
select_date(date, :from => date_label)
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
When /^I check "([^\"]*)"$/ do |field|
|
|
78
|
+
check(field)
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
When /^I uncheck "([^\"]*)"$/ do |field|
|
|
82
|
+
uncheck(field)
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
When /^I choose "([^\"]*)"$/ do |field|
|
|
86
|
+
choose(field)
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
When /^I attach the file at "([^\"]*)" to "([^\"]*)"$/ do |path, field|
|
|
90
|
+
attach_file(field, path)
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
Then /^I should see "([^\"]*)"$/ do |text|
|
|
94
|
+
response.should contain(text)
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
Then /^I should see \/([^\/]*)\/$/ do |regexp|
|
|
98
|
+
regexp = Regexp.new(regexp)
|
|
99
|
+
response.should contain(regexp)
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
Then /^I should not see "([^\"]*)"$/ do |text|
|
|
103
|
+
response.should_not contain(text)
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
Then /^I should not see \/([^\/]*)\/$/ do |regexp|
|
|
107
|
+
response.should_not contain(text)
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
Then /^the "([^\"]*)" field should contain "([^\"]*)"$/ do |field, value|
|
|
111
|
+
field_labeled(field).value.should =~ /#{value}/
|
|
112
|
+
end
|
|
113
|
+
|
|
114
|
+
Then /^the "([^\"]*)" field should not contain "([^\"]*)"$/ do |field, value|
|
|
115
|
+
field_labeled(field).value.should_not =~ /#{value}/
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
Then /^the "([^\"]*)" checkbox should be checked$/ do |label|
|
|
119
|
+
field_labeled(label).should be_checked
|
|
120
|
+
end
|
|
121
|
+
|
|
122
|
+
Then /^the "([^\"]*)" checkbox should not be checked$/ do |label|
|
|
123
|
+
field_labeled(label).should_not be_checked
|
|
124
|
+
end
|
|
125
|
+
|
|
126
|
+
Then /^I should be on (.+)$/ do |page_name|
|
|
127
|
+
URI.parse(current_url).path.should == path_to(page_name)
|
|
128
|
+
end
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# Sets up the Rails environment for Cucumber
|
|
2
|
+
ENV["RAILS_ENV"] ||= "cucumber"
|
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../../config/environment')
|
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../../test/test_helper')
|
|
5
|
+
require 'cucumber/rails/world'
|
|
6
|
+
require 'cucumber/formatter/unicode' # Invite out this line if you don't want Cucumber Unicode support
|
|
7
|
+
|
|
8
|
+
require 'database_cleaner'
|
|
9
|
+
require 'database_cleaner/cucumber'
|
|
10
|
+
DatabaseCleaner.strategy = :truncation
|
|
11
|
+
|
|
12
|
+
Cucumber::Rails.use_transactional_fixtures
|
|
13
|
+
|
|
14
|
+
# Invite out the next line if you want Rails' own error handling
|
|
15
|
+
# (e.g. rescue_action_in_public / rescue_responses / rescue_from)
|
|
16
|
+
Cucumber::Rails.bypass_rescue
|
|
17
|
+
|
|
18
|
+
require 'webrat'
|
|
19
|
+
require 'cucumber/webrat/table_locator' # Lets you do table.diff!(table_at('#my_table').to_a)
|
|
20
|
+
|
|
21
|
+
# Invite out the next two lines if you're not using RSpec's matchers (should / should_not) in your steps.
|
|
22
|
+
require 'cucumber/rails/rspec'
|
|
23
|
+
#require 'webrat/rspec-rails'
|
|
24
|
+
|
|
25
|
+
require 'webrat/core/matchers'
|
|
26
|
+
|
|
27
|
+
Webrat.configure do |config|
|
|
28
|
+
config.mode = :rails
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
# Webrat.configure do |config|
|
|
32
|
+
# config.mode = :selenium
|
|
33
|
+
# config.application_environment = :test
|
|
34
|
+
# config.application_framework = :rails
|
|
35
|
+
# end
|
|
36
|
+
|
|
37
|
+
# To enable selenium:
|
|
38
|
+
# 1. sudo gem install selenium-client
|
|
39
|
+
# 2. uninvite Webrat.configure that contains :selenium and then invite out the one that contains :rails above
|
|
40
|
+
# 3. set: self.use_transactional_fixtures = false in test_helper.rb
|
|
41
|
+
# 4. uninvite in test_helper.rb:
|
|
42
|
+
# setup do |session|
|
|
43
|
+
# session.host! "localhost:3001"
|
|
44
|
+
# end
|
|
45
|
+
# 5. Be sure to apply the patch mentioned in the viget article below found here: http://gist.github.com/141590
|
|
46
|
+
|
|
47
|
+
# References:
|
|
48
|
+
# http://www.brynary.com/2009/4/6/switching-webrat-to-selenium-mode
|
|
49
|
+
# http://www.viget.com/extend/getting-started-with-webrat-selenium-rails-and-firefox-3/
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
module NavigationHelpers
|
|
2
|
+
# Maps a name to a path. Used by the
|
|
3
|
+
#
|
|
4
|
+
# When /^I go to (.+)$/ do |page_name|
|
|
5
|
+
#
|
|
6
|
+
# step definition in webrat_steps.rb
|
|
7
|
+
#
|
|
8
|
+
def path_to(page_name)
|
|
9
|
+
case page_name
|
|
10
|
+
|
|
11
|
+
when /the homepage/
|
|
12
|
+
'/'
|
|
13
|
+
|
|
14
|
+
when /the show invites page/
|
|
15
|
+
invite_path(Invite.first)
|
|
16
|
+
|
|
17
|
+
when /the create invites page/
|
|
18
|
+
new_invite_path(make_parent_params(Factory(:user)))
|
|
19
|
+
|
|
20
|
+
# Add more mappings here.
|
|
21
|
+
# Here is a more fancy example:
|
|
22
|
+
#
|
|
23
|
+
# when /^(.*)'s profile page$/i
|
|
24
|
+
# user_profile_path(User.find_by_login($1))
|
|
25
|
+
|
|
26
|
+
else
|
|
27
|
+
raise "Can't find mapping from \"#{page_name}\" to a path.\n" +
|
|
28
|
+
"Now, go and add a mapping in #{__FILE__}"
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
World(NavigationHelpers)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
$LOAD_PATH.unshift(RAILS_ROOT + '/vendor/plugins/cucumber/lib') if File.directory?(RAILS_ROOT + '/vendor/plugins/cucumber/lib')
|
|
2
|
+
|
|
3
|
+
unless ARGV.any? {|a| a =~ /^gems/}
|
|
4
|
+
|
|
5
|
+
begin
|
|
6
|
+
require 'cucumber/rake/task'
|
|
7
|
+
|
|
8
|
+
Cucumber::Rake::Task.new(:features) do |t|
|
|
9
|
+
t.fork = true
|
|
10
|
+
t.cucumber_opts = ['--format', (ENV['CUCUMBER_FORMAT'] || 'pretty')]
|
|
11
|
+
end
|
|
12
|
+
task :features => 'db:test:prepare'
|
|
13
|
+
rescue LoadError
|
|
14
|
+
desc 'Cucumber rake task not available'
|
|
15
|
+
task :features do
|
|
16
|
+
abort 'Cucumber rake task is not available. Be sure to install cucumber as a gem or plugin'
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
end
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# General Apache options
|
|
2
|
+
AddHandler fastcgi-script .fcgi
|
|
3
|
+
AddHandler cgi-script .cgi
|
|
4
|
+
Options +FollowSymLinks +ExecCGI
|
|
5
|
+
|
|
6
|
+
# If you don't want Rails to look in certain directories,
|
|
7
|
+
# use the following rewrite rules so that Apache won't rewrite certain requests
|
|
8
|
+
#
|
|
9
|
+
# Example:
|
|
10
|
+
# RewriteCond %{REQUEST_URI} ^/notrails.*
|
|
11
|
+
# RewriteRule .* - [L]
|
|
12
|
+
|
|
13
|
+
# Redirect all requests not available on the filesystem to Rails
|
|
14
|
+
# By default the cgi dispatcher is used which is very slow
|
|
15
|
+
#
|
|
16
|
+
# For better performance replace the dispatcher with the fastcgi one
|
|
17
|
+
#
|
|
18
|
+
# Example:
|
|
19
|
+
# RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
|
|
20
|
+
RewriteEngine On
|
|
21
|
+
|
|
22
|
+
# If your Rails application is accessed via an Alias directive,
|
|
23
|
+
# then you MUST also set the RewriteBase in this htaccess file.
|
|
24
|
+
#
|
|
25
|
+
# Example:
|
|
26
|
+
# Alias /myrailsapp /path/to/myrailsapp/public
|
|
27
|
+
# RewriteBase /myrailsapp
|
|
28
|
+
|
|
29
|
+
RewriteRule ^$ index.html [QSA]
|
|
30
|
+
RewriteRule ^([^.]+)$ $1.html [QSA]
|
|
31
|
+
RewriteCond %{REQUEST_FILENAME} !-f
|
|
32
|
+
RewriteRule ^(.*)$ dispatch.cgi [QSA,L]
|
|
33
|
+
|
|
34
|
+
# In case Rails experiences terminal errors
|
|
35
|
+
# Instead of displaying this message you can supply a file here which will be rendered instead
|
|
36
|
+
#
|
|
37
|
+
# Example:
|
|
38
|
+
# ErrorDocument 500 /500.html
|
|
39
|
+
|
|
40
|
+
ErrorDocument 500 "<h2>Application error</h2>Rails application failed to start properly"
|