branston 0.3.2
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/LICENSE +20 -0
- data/README.rdoc +17 -0
- data/bin/branston +4 -0
- data/lib/branston/README +1 -0
- data/lib/branston/Rakefile +20 -0
- data/lib/branston/app/controllers/application_controller.rb +13 -0
- data/lib/branston/app/controllers/iterations_controller.rb +106 -0
- data/lib/branston/app/controllers/outcomes_controller.rb +102 -0
- data/lib/branston/app/controllers/preconditions_controller.rb +106 -0
- data/lib/branston/app/controllers/releases_controller.rb +93 -0
- data/lib/branston/app/controllers/scenarios_controller.rb +104 -0
- data/lib/branston/app/controllers/sessions_controller.rb +44 -0
- data/lib/branston/app/controllers/stories_controller.rb +121 -0
- data/lib/branston/app/controllers/user_roles_controller.rb +91 -0
- data/lib/branston/app/controllers/users_controller.rb +28 -0
- data/lib/branston/app/helpers/application_helper.rb +14 -0
- data/lib/branston/app/helpers/iterations_helper.rb +2 -0
- data/lib/branston/app/helpers/outcomes_helper.rb +2 -0
- data/lib/branston/app/helpers/preconditions_helper.rb +2 -0
- data/lib/branston/app/helpers/releases_helper.rb +2 -0
- data/lib/branston/app/helpers/sessions_helper.rb +2 -0
- data/lib/branston/app/helpers/stories_helper.rb +2 -0
- data/lib/branston/app/helpers/user_roles_helper.rb +2 -0
- data/lib/branston/app/helpers/users_helper.rb +93 -0
- data/lib/branston/app/models/iteration.rb +15 -0
- data/lib/branston/app/models/outcome.rb +16 -0
- data/lib/branston/app/models/participation.rb +7 -0
- data/lib/branston/app/models/precondition.rb +16 -0
- data/lib/branston/app/models/release.rb +7 -0
- data/lib/branston/app/models/scenario.rb +14 -0
- data/lib/branston/app/models/story.rb +33 -0
- data/lib/branston/app/models/user.rb +56 -0
- data/lib/branston/app/models/user_role.rb +7 -0
- data/lib/branston/app/views/iterations/_form.html.erb +24 -0
- data/lib/branston/app/views/iterations/edit.html.erb +14 -0
- data/lib/branston/app/views/iterations/index.html.erb +31 -0
- data/lib/branston/app/views/iterations/new.html.erb +13 -0
- data/lib/branston/app/views/iterations/show.html.erb +39 -0
- data/lib/branston/app/views/layouts/_footer.html.erb +7 -0
- data/lib/branston/app/views/layouts/_header.html.erb +30 -0
- data/lib/branston/app/views/layouts/_meta.html.erb +5 -0
- data/lib/branston/app/views/layouts/main.html.erb +31 -0
- data/lib/branston/app/views/layouts/outcomes.html.erb +17 -0
- data/lib/branston/app/views/layouts/preconditions.html.erb +17 -0
- data/lib/branston/app/views/layouts/releases.html.erb +17 -0
- data/lib/branston/app/views/layouts/user_roles.html.erb +32 -0
- data/lib/branston/app/views/outcomes/_outcome.html.erb +19 -0
- data/lib/branston/app/views/outcomes/_outcomes.html.erb +13 -0
- data/lib/branston/app/views/outcomes/create.js.rjs +3 -0
- data/lib/branston/app/views/outcomes/destroy.js.rjs +2 -0
- data/lib/branston/app/views/outcomes/edit.html.erb +12 -0
- data/lib/branston/app/views/outcomes/index.html.erb +18 -0
- data/lib/branston/app/views/outcomes/index.js.rjs +3 -0
- data/lib/branston/app/views/outcomes/new.html.erb +11 -0
- data/lib/branston/app/views/outcomes/new.js.rjs +3 -0
- data/lib/branston/app/views/outcomes/show.html.erb +3 -0
- data/lib/branston/app/views/preconditions/_precondition.html.erb +19 -0
- data/lib/branston/app/views/preconditions/_preconditions.html.erb +13 -0
- data/lib/branston/app/views/preconditions/create.js.rjs +3 -0
- data/lib/branston/app/views/preconditions/destroy.js.rjs +2 -0
- data/lib/branston/app/views/preconditions/edit.html.erb +12 -0
- data/lib/branston/app/views/preconditions/index.html.erb +18 -0
- data/lib/branston/app/views/preconditions/index.js.rjs +3 -0
- data/lib/branston/app/views/preconditions/new.html.erb +16 -0
- data/lib/branston/app/views/preconditions/new.js.rjs +3 -0
- data/lib/branston/app/views/preconditions/show.html.erb +3 -0
- data/lib/branston/app/views/releases/edit.html.erb +20 -0
- data/lib/branston/app/views/releases/index.html.erb +28 -0
- data/lib/branston/app/views/releases/new.html.erb +19 -0
- data/lib/branston/app/views/releases/show.html.erb +13 -0
- data/lib/branston/app/views/scenarios/_scenario.html.erb +25 -0
- data/lib/branston/app/views/scenarios/_scenarios.html.erb +16 -0
- data/lib/branston/app/views/scenarios/create.js.rjs +2 -0
- data/lib/branston/app/views/scenarios/destroy.js.rjs +2 -0
- data/lib/branston/app/views/scenarios/edit.html.erb +0 -0
- data/lib/branston/app/views/scenarios/index.html.erb +0 -0
- data/lib/branston/app/views/scenarios/index.js.rjs +3 -0
- data/lib/branston/app/views/scenarios/new.html.erb +0 -0
- data/lib/branston/app/views/scenarios/new.js.rjs +3 -0
- data/lib/branston/app/views/scenarios/show.html.erb +0 -0
- data/lib/branston/app/views/sessions/new.html.erb +21 -0
- data/lib/branston/app/views/stories/_form.html.erb +17 -0
- data/lib/branston/app/views/stories/_story.html.erb +37 -0
- data/lib/branston/app/views/stories/edit.html.erb +14 -0
- data/lib/branston/app/views/stories/index.html.erb +52 -0
- data/lib/branston/app/views/stories/new.html.erb +13 -0
- data/lib/branston/app/views/stories/show.html.erb +23 -0
- data/lib/branston/app/views/stories/show.js.rjs +3 -0
- data/lib/branston/app/views/stories/update.js.rjs +1 -0
- data/lib/branston/app/views/user_roles/edit.html.erb +16 -0
- data/lib/branston/app/views/user_roles/index.html.erb +20 -0
- data/lib/branston/app/views/user_roles/new.html.erb +15 -0
- data/lib/branston/app/views/user_roles/show.html.erb +8 -0
- data/lib/branston/app/views/users/_user_bar.html.erb +8 -0
- data/lib/branston/app/views/users/new.html.erb +28 -0
- data/lib/branston/config/boot.rb +110 -0
- data/lib/branston/config/database.yml +31 -0
- data/lib/branston/config/environment.rb +51 -0
- data/lib/branston/config/environments/cucumber.rb +24 -0
- data/lib/branston/config/environments/development.rb +20 -0
- data/lib/branston/config/environments/production.rb +29 -0
- data/lib/branston/config/environments/test.rb +43 -0
- data/lib/branston/config/initializers/backtrace_silencers.rb +7 -0
- data/lib/branston/config/initializers/inflections.rb +10 -0
- data/lib/branston/config/initializers/mime_types.rb +5 -0
- data/lib/branston/config/initializers/new_rails_defaults.rb +21 -0
- data/lib/branston/config/initializers/session_store.rb +15 -0
- data/lib/branston/config/initializers/site_keys.rb +38 -0
- data/lib/branston/config/locales/en.yml +5 -0
- data/lib/branston/config/routes.rb +26 -0
- data/lib/branston/coverage/app-controllers-application_controller_rb.html +141 -0
- data/lib/branston/coverage/app-controllers-iterations_controller_rb.html +693 -0
- data/lib/branston/coverage/app-controllers-outcomes_controller_rb.html +663 -0
- data/lib/branston/coverage/app-controllers-preconditions_controller_rb.html +735 -0
- data/lib/branston/coverage/app-controllers-releases_controller_rb.html +609 -0
- data/lib/branston/coverage/app-controllers-scenarios_controller_rb.html +669 -0
- data/lib/branston/coverage/app-controllers-sessions_controller_rb.html +309 -0
- data/lib/branston/coverage/app-controllers-stories_controller_rb.html +717 -0
- data/lib/branston/coverage/app-controllers-user_roles_controller_rb.html +573 -0
- data/lib/branston/coverage/app-controllers-users_controller_rb.html +219 -0
- data/lib/branston/coverage/app-helpers-application_helper_rb.html +129 -0
- data/lib/branston/coverage/app-helpers-iterations_helper_rb.html +75 -0
- data/lib/branston/coverage/app-helpers-outcomes_helper_rb.html +75 -0
- data/lib/branston/coverage/app-helpers-preconditions_helper_rb.html +75 -0
- data/lib/branston/coverage/app-helpers-releases_helper_rb.html +75 -0
- data/lib/branston/coverage/app-helpers-sessions_helper_rb.html +75 -0
- data/lib/branston/coverage/app-helpers-stories_helper_rb.html +75 -0
- data/lib/branston/coverage/app-helpers-user_roles_helper_rb.html +75 -0
- data/lib/branston/coverage/app-models-iteration_rb.html +153 -0
- data/lib/branston/coverage/app-models-outcome_rb.html +159 -0
- data/lib/branston/coverage/app-models-participation_rb.html +105 -0
- data/lib/branston/coverage/app-models-precondition_rb.html +153 -0
- data/lib/branston/coverage/app-models-release_rb.html +105 -0
- data/lib/branston/coverage/app-models-scenario_rb.html +147 -0
- data/lib/branston/coverage/app-models-story_rb.html +189 -0
- data/lib/branston/coverage/app-models-user_rb.html +399 -0
- data/lib/branston/coverage/app-models-user_role_rb.html +105 -0
- data/lib/branston/coverage/index.html +554 -0
- data/lib/branston/coverage/jquery-1.3.2.min.js +19 -0
- data/lib/branston/coverage/jquery.tablesorter.min.js +15 -0
- data/lib/branston/coverage/lib-faker_extras_rb.html +207 -0
- data/lib/branston/coverage/lib-story_generator_rb.html +879 -0
- data/lib/branston/coverage/print.css +12 -0
- data/lib/branston/coverage/rcov.js +42 -0
- data/lib/branston/coverage/screen.css +270 -0
- data/lib/branston/db/development.sqlite3 +0 -0
- data/lib/branston/db/development_structure.sql +35 -0
- data/lib/branston/db/migrate/20091127114237_create_users.rb +22 -0
- data/lib/branston/db/migrate/20091127120627_create_iterations.rb +17 -0
- data/lib/branston/db/migrate/20091127122422_create_stories.rb +16 -0
- data/lib/branston/db/migrate/20091127131037_create_user_roles.rb +13 -0
- data/lib/branston/db/migrate/20091127144645_create_participations.rb +15 -0
- data/lib/branston/db/migrate/20091127164217_create_scenarios.rb +14 -0
- data/lib/branston/db/migrate/20091127164446_create_preconditions.rb +14 -0
- data/lib/branston/db/migrate/20091127164705_create_outcomes.rb +14 -0
- data/lib/branston/db/migrate/20091127172849_add_title_to_stories.rb +9 -0
- data/lib/branston/db/migrate/20091127172950_add_story_id_to_user_role.rb +10 -0
- data/lib/branston/db/migrate/20091127173744_add_author_id_to_story.rb +10 -0
- data/lib/branston/db/migrate/20091202105555_create_releases.rb +17 -0
- data/lib/branston/db/migrate/20091204173634_add_slug_to_stories.rb +13 -0
- data/lib/branston/db/pristine.sqlite3 +0 -0
- data/lib/branston/db/production.sqlite3 +0 -0
- data/lib/branston/db/schema.rb +91 -0
- data/lib/branston/db/seeds.rb +7 -0
- data/lib/branston/db/test.sqlite3 +0 -0
- data/lib/branston/doc/README_FOR_APP +2 -0
- data/lib/branston/doc/branston.zargo +0 -0
- data/lib/branston/features/step_definitions/webrat_steps.rb +189 -0
- data/lib/branston/features/support/env.rb +46 -0
- data/lib/branston/features/support/paths.rb +27 -0
- data/lib/branston/features/support/version_check.rb +31 -0
- data/lib/branston/lib/authenticated_system.rb +189 -0
- data/lib/branston/lib/authenticated_test_helper.rb +11 -0
- data/lib/branston/lib/branston.rb +149 -0
- data/lib/branston/lib/client.rb +61 -0
- data/lib/branston/lib/faker_extras.rb +24 -0
- data/lib/branston/lib/story_generator.rb +135 -0
- data/lib/branston/lib/tasks/cucumber.rake +46 -0
- data/lib/branston/lib/tasks/make_pristine_copy.rake +18 -0
- data/lib/branston/log/cucumber.log +1 -0
- data/lib/branston/log/development.log +10836 -0
- data/lib/branston/log/test.log +52955 -0
- data/lib/branston/public/404.html +75 -0
- data/lib/branston/public/422.html +74 -0
- data/lib/branston/public/500.html +65 -0
- data/lib/branston/public/blank_iframe.html +2 -0
- data/lib/branston/public/favicon.ico +0 -0
- data/lib/branston/public/images/branston_pickle_bg.png +0 -0
- data/lib/branston/public/images/calendar_date_select/calendar.gif +0 -0
- data/lib/branston/public/images/icons/back_icon_30x23.png +0 -0
- data/lib/branston/public/images/icons/delete_icon_20x19.png +0 -0
- data/lib/branston/public/images/icons/delete_icon_30x29.png +0 -0
- data/lib/branston/public/images/icons/plus_icon_15x15.png +0 -0
- data/lib/branston/public/images/icons/plus_icon_20x20.png +0 -0
- data/lib/branston/public/images/icons/plus_icon_30x30.png +0 -0
- data/lib/branston/public/images/img01.gif +0 -0
- data/lib/branston/public/images/img02.gif +0 -0
- data/lib/branston/public/images/img03.gif +0 -0
- data/lib/branston/public/images/img04.gif +0 -0
- data/lib/branston/public/images/img05.gif +0 -0
- data/lib/branston/public/images/img06.gif +0 -0
- data/lib/branston/public/images/img07.gif +0 -0
- data/lib/branston/public/images/img08.gif +0 -0
- data/lib/branston/public/images/logo.png +0 -0
- data/lib/branston/public/images/rails.png +0 -0
- data/lib/branston/public/javascripts/accordion.js +126 -0
- data/lib/branston/public/javascripts/application.js +11 -0
- data/lib/branston/public/javascripts/calendar_date_select/calendar_date_select.js +443 -0
- data/lib/branston/public/javascripts/calendar_date_select/calendar_date_select.prototype.js +443 -0
- data/lib/branston/public/javascripts/calendar_date_select/format_american.js +34 -0
- data/lib/branston/public/javascripts/calendar_date_select/format_db.js +27 -0
- data/lib/branston/public/javascripts/calendar_date_select/format_euro_24hr.js +7 -0
- data/lib/branston/public/javascripts/calendar_date_select/format_euro_24hr_ymd.js +7 -0
- data/lib/branston/public/javascripts/calendar_date_select/format_finnish.js +32 -0
- data/lib/branston/public/javascripts/calendar_date_select/format_german.js +34 -0
- data/lib/branston/public/javascripts/calendar_date_select/format_hyphen_ampm.js +37 -0
- data/lib/branston/public/javascripts/calendar_date_select/format_iso_date.js +46 -0
- data/lib/branston/public/javascripts/calendar_date_select/format_italian.js +24 -0
- data/lib/branston/public/javascripts/calendar_date_select/locale/de.js +11 -0
- data/lib/branston/public/javascripts/calendar_date_select/locale/fi.js +10 -0
- data/lib/branston/public/javascripts/calendar_date_select/locale/fr.js +10 -0
- data/lib/branston/public/javascripts/calendar_date_select/locale/pl.js +10 -0
- data/lib/branston/public/javascripts/calendar_date_select/locale/pt.js +11 -0
- data/lib/branston/public/javascripts/calendar_date_select/locale/ru.js +10 -0
- data/lib/branston/public/javascripts/controls.js +963 -0
- data/lib/branston/public/javascripts/dragdrop.js +973 -0
- data/lib/branston/public/javascripts/effects.js +1128 -0
- data/lib/branston/public/javascripts/prototype.js +4320 -0
- data/lib/branston/public/robots.txt +5 -0
- data/lib/branston/public/stylesheets/application.css +74 -0
- data/lib/branston/public/stylesheets/calendar_date_select/blue.css +130 -0
- data/lib/branston/public/stylesheets/calendar_date_select/default.css +135 -0
- data/lib/branston/public/stylesheets/calendar_date_select/plain.css +128 -0
- data/lib/branston/public/stylesheets/calendar_date_select/red.css +135 -0
- data/lib/branston/public/stylesheets/calendar_date_select/silver.css +133 -0
- data/lib/branston/public/stylesheets/scaffold.css +54 -0
- data/lib/branston/public/stylesheets/style.css +485 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-icons_222222_256x240.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/jquery-ui-1.7.2.custom.css +406 -0
- data/lib/branston/script/about +4 -0
- data/lib/branston/script/console +3 -0
- data/lib/branston/script/cucumber +17 -0
- data/lib/branston/script/dbconsole +3 -0
- data/lib/branston/script/destroy +3 -0
- data/lib/branston/script/generate +3 -0
- data/lib/branston/script/performance/benchmarker +3 -0
- data/lib/branston/script/performance/profiler +3 -0
- data/lib/branston/script/plugin +3 -0
- data/lib/branston/script/runner +3 -0
- data/lib/branston/script/server +3 -0
- data/lib/branston/test/blueprints.rb +108 -0
- data/lib/branston/test/fixtures/outcomes.yml +7 -0
- data/lib/branston/test/fixtures/preconditions.yml +7 -0
- data/lib/branston/test/functional/iterations_controller_test.rb +155 -0
- data/lib/branston/test/functional/outcomes_controller_test.rb +97 -0
- data/lib/branston/test/functional/preconditions_controller_test.rb +106 -0
- data/lib/branston/test/functional/releases_controller_test.rb +68 -0
- data/lib/branston/test/functional/scenarios_controller_test.rb +100 -0
- data/lib/branston/test/functional/sessions_controller_test.rb +85 -0
- data/lib/branston/test/functional/stories_controller_test.rb +129 -0
- data/lib/branston/test/functional/user_roles_controller_test.rb +71 -0
- data/lib/branston/test/functional/users_controller_test.rb +61 -0
- data/lib/branston/test/performance/browsing_test.rb +9 -0
- data/lib/branston/test/test_helper.rb +49 -0
- data/lib/branston/test/unit/client_test.rb +101 -0
- data/lib/branston/test/unit/helpers/iterations_helper_test.rb +4 -0
- data/lib/branston/test/unit/helpers/outcomes_helper_test.rb +4 -0
- data/lib/branston/test/unit/helpers/preconditions_helper_test.rb +4 -0
- data/lib/branston/test/unit/helpers/releases_helper_test.rb +4 -0
- data/lib/branston/test/unit/helpers/stories_helper_test.rb +4 -0
- data/lib/branston/test/unit/helpers/user_roles_helper_test.rb +4 -0
- data/lib/branston/test/unit/iteration_test.rb +13 -0
- data/lib/branston/test/unit/outcome_test.rb +9 -0
- data/lib/branston/test/unit/participation_test.rb +9 -0
- data/lib/branston/test/unit/precondition_test.rb +9 -0
- data/lib/branston/test/unit/release_test.rb +5 -0
- data/lib/branston/test/unit/scenario_test.rb +12 -0
- data/lib/branston/test/unit/story_generator_test.rb +37 -0
- data/lib/branston/test/unit/story_test.rb +159 -0
- data/lib/branston/test/unit/user_role_test.rb +9 -0
- data/lib/branston/test/unit/user_test.rb +115 -0
- data/lib/branston/test/xml/example.xml +45 -0
- data/lib/branston/test/xml/no_scenarios.xml +12 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/History.txt +237 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/MIT-LICENSE +20 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/Manifest.txt +42 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/Rakefile +31 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/Readme.txt +16 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/init.rb +1 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/js_test/functional/cds_test.html +334 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/js_test/prototype.js +4184 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/js_test/test.css +40 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/js_test/unit/cds_helper_methods.html +46 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/js_test/unittest.js +564 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/lib/calendar_date_select.rb +33 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/lib/calendar_date_select/calendar_date_select.rb +116 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/lib/calendar_date_select/form_helpers.rb +225 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/lib/calendar_date_select/includes_helper.rb +29 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/blank_iframe.html +2 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/images/calendar_date_select/calendar.gif +0 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/calendar_date_select.js +443 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_american.js +34 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_db.js +27 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_euro_24hr.js +7 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_euro_24hr_ymd.js +7 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_finnish.js +32 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_hyphen_ampm.js +37 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_iso_date.js +46 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_italian.js +24 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/de.js +11 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/fi.js +10 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/fr.js +10 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/pl.js +10 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/pt.js +11 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/ru.js +10 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/stylesheets/calendar_date_select/blue.css +130 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/stylesheets/calendar_date_select/default.css +135 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/stylesheets/calendar_date_select/plain.css +128 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/stylesheets/calendar_date_select/red.css +135 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/stylesheets/calendar_date_select/silver.css +133 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/spec/calendar_date_select/calendar_date_select_spec.rb +14 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/spec/calendar_date_select/form_helpers_spec.rb +166 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/spec/spec_helper.rb +26 -0
- data/lib/branston/vendor/plugins/in_place_editing/README +14 -0
- data/lib/branston/vendor/plugins/in_place_editing/Rakefile +22 -0
- data/lib/branston/vendor/plugins/in_place_editing/init.rb +2 -0
- data/lib/branston/vendor/plugins/in_place_editing/lib/in_place_editing.rb +28 -0
- data/lib/branston/vendor/plugins/in_place_editing/lib/in_place_macros_helper.rb +82 -0
- data/lib/branston/vendor/plugins/in_place_editing/test/in_place_editing_test.rb +89 -0
- data/lib/branston/vendor/plugins/in_place_editing/test/test_helper.rb +8 -0
- data/lib/branston/vendor/plugins/restful_authentication/CHANGELOG +68 -0
- data/lib/branston/vendor/plugins/restful_authentication/LICENSE +20 -0
- data/lib/branston/vendor/plugins/restful_authentication/README.textile +224 -0
- data/lib/branston/vendor/plugins/restful_authentication/Rakefile +32 -0
- data/lib/branston/vendor/plugins/restful_authentication/TODO +15 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/USAGE +1 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/authenticated_generator.rb +478 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/lib/insert_routes.rb +54 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/_model_partial.html.erb +8 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/activation.erb +3 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/authenticated_system.rb +189 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/authenticated_test_helper.rb +22 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/controller.rb +43 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/features/accounts.feature +109 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/features/sessions.feature +134 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/features/step_definitions/ra_env.rb +9 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/features/step_definitions/ra_navigation_steps.rb +48 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/features/step_definitions/ra_resource_steps.rb +178 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/features/step_definitions/ra_response_steps.rb +169 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/features/step_definitions/rest_auth_features_helper.rb +81 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/features/step_definitions/user_steps.rb +131 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/helper.rb +2 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/login.html.erb +16 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/mailer.rb +25 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/migration.rb +26 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/model.rb +83 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/model_controller.rb +85 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/model_helper.rb +93 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/model_helper_spec.rb +158 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/observer.rb +11 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/signup.html.erb +19 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/signup_notification.erb +8 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/site_keys.rb +38 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/controllers/access_control_spec.rb +90 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/controllers/authenticated_system_spec.rb +102 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/controllers/sessions_controller_spec.rb +139 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/controllers/users_controller_spec.rb +198 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/fixtures/users.yml +60 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/helpers/users_helper_spec.rb +141 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/models/user_spec.rb +290 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/test/functional_test.rb +82 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/test/mailer_test.rb +31 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/test/model_functional_test.rb +93 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/test/unit_test.rb +164 -0
- data/lib/branston/vendor/plugins/restful_authentication/init.rb +1 -0
- data/lib/branston/vendor/plugins/restful_authentication/lib/authentication.rb +40 -0
- data/lib/branston/vendor/plugins/restful_authentication/lib/authentication/by_cookie_token.rb +82 -0
- data/lib/branston/vendor/plugins/restful_authentication/lib/authentication/by_password.rb +64 -0
- data/lib/branston/vendor/plugins/restful_authentication/lib/authorization.rb +14 -0
- data/lib/branston/vendor/plugins/restful_authentication/lib/authorization/aasm_roles.rb +63 -0
- data/lib/branston/vendor/plugins/restful_authentication/lib/authorization/stateful_roles.rb +62 -0
- data/lib/branston/vendor/plugins/restful_authentication/lib/trustification.rb +14 -0
- data/lib/branston/vendor/plugins/restful_authentication/lib/trustification/email_validation.rb +20 -0
- data/lib/branston/vendor/plugins/restful_authentication/notes/AccessControl.txt +2 -0
- data/lib/branston/vendor/plugins/restful_authentication/notes/Authentication.txt +5 -0
- data/lib/branston/vendor/plugins/restful_authentication/notes/Authorization.txt +154 -0
- data/lib/branston/vendor/plugins/restful_authentication/notes/RailsPlugins.txt +78 -0
- data/lib/branston/vendor/plugins/restful_authentication/notes/SecurityFramework.graffle +0 -0
- data/lib/branston/vendor/plugins/restful_authentication/notes/SecurityFramework.png +0 -0
- data/lib/branston/vendor/plugins/restful_authentication/notes/SecurityPatterns.txt +163 -0
- data/lib/branston/vendor/plugins/restful_authentication/notes/Tradeoffs.txt +126 -0
- data/lib/branston/vendor/plugins/restful_authentication/notes/Trustification.txt +49 -0
- data/lib/branston/vendor/plugins/restful_authentication/rails/init.rb +3 -0
- data/lib/branston/vendor/plugins/restful_authentication/restful-authentication.gemspec +33 -0
- data/lib/branston/vendor/plugins/restful_authentication/tasks/auth.rake +33 -0
- metadata +513 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# IMPORTANT: This file was generated by Cucumber 0.4.4
|
|
2
|
+
# Edit at your own peril - it's recommended to regenerate this file
|
|
3
|
+
# in the future when you upgrade to a newer version of Cucumber.
|
|
4
|
+
|
|
5
|
+
config.cache_classes = true # This must be true for Cucumber to operate correctly!
|
|
6
|
+
|
|
7
|
+
# Log error messages when you accidentally call methods on nil.
|
|
8
|
+
config.whiny_nils = true
|
|
9
|
+
|
|
10
|
+
# Show full error reports and disable caching
|
|
11
|
+
config.action_controller.consider_all_requests_local = true
|
|
12
|
+
config.action_controller.perform_caching = false
|
|
13
|
+
|
|
14
|
+
# Disable request forgery protection in test environment
|
|
15
|
+
config.action_controller.allow_forgery_protection = false
|
|
16
|
+
|
|
17
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
|
18
|
+
# The :test delivery method accumulates sent emails in the
|
|
19
|
+
# ActionMailer::Base.deliveries array.
|
|
20
|
+
config.action_mailer.delivery_method = :test
|
|
21
|
+
|
|
22
|
+
config.gem 'cucumber', :lib => false, :version => '>=0.4.4' unless File.directory?(File.join(Rails.root, 'vendor/plugins/cucumber'))
|
|
23
|
+
config.gem 'webrat', :lib => false, :version => '>=0.5.3' unless File.directory?(File.join(Rails.root, 'vendor/plugins/webrat'))
|
|
24
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Settings specified here will take precedence over those in config/environment.rb
|
|
2
|
+
|
|
3
|
+
# In the development environment your application's code is reloaded on
|
|
4
|
+
# every request. This slows down response time but is perfect for development
|
|
5
|
+
# since you don't have to restart the webserver when you make code changes.
|
|
6
|
+
config.cache_classes = false
|
|
7
|
+
|
|
8
|
+
# Log error messages when you accidentally call methods on nil.
|
|
9
|
+
config.whiny_nils = true
|
|
10
|
+
|
|
11
|
+
# Show full error reports and disable caching
|
|
12
|
+
config.action_controller.consider_all_requests_local = true
|
|
13
|
+
config.action_view.debug_rjs = true
|
|
14
|
+
config.action_controller.perform_caching = false
|
|
15
|
+
|
|
16
|
+
# Don't care if the mailer can't send
|
|
17
|
+
config.action_mailer.raise_delivery_errors = false
|
|
18
|
+
|
|
19
|
+
require 'ruby-debug'
|
|
20
|
+
Debugger.start
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Settings specified here will take precedence over those in config/environment.rb
|
|
2
|
+
|
|
3
|
+
# The production environment is meant for finished, "live" apps.
|
|
4
|
+
# Code is not reloaded between requests
|
|
5
|
+
config.cache_classes = true
|
|
6
|
+
|
|
7
|
+
# Full error reports are disabled and caching is turned on
|
|
8
|
+
config.action_controller.consider_all_requests_local = false
|
|
9
|
+
config.action_controller.perform_caching = true
|
|
10
|
+
config.action_view.cache_template_loading = true
|
|
11
|
+
|
|
12
|
+
# See everything in the log (default is :info)
|
|
13
|
+
config.log_path = "/dev/null"
|
|
14
|
+
|
|
15
|
+
# Use a different logger for distributed setups
|
|
16
|
+
# config.logger = SyslogLogger.new
|
|
17
|
+
|
|
18
|
+
# Use a different cache store in production
|
|
19
|
+
# config.cache_store = :mem_cache_store
|
|
20
|
+
|
|
21
|
+
# Enable serving of images, stylesheets, and javascripts from an asset server
|
|
22
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
|
23
|
+
|
|
24
|
+
# Disable delivery errors, bad email addresses will be ignored
|
|
25
|
+
# config.action_mailer.raise_delivery_errors = false
|
|
26
|
+
|
|
27
|
+
# Enable threaded mode
|
|
28
|
+
# config.threadsafe!
|
|
29
|
+
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Settings specified here will take precedence over those in config/environment.rb
|
|
2
|
+
|
|
3
|
+
# The test environment is used exclusively to run your application's
|
|
4
|
+
# test suite. You never need to work with it otherwise. Remember that
|
|
5
|
+
# your test database is "scratch space" for the test suite and is wiped
|
|
6
|
+
# and recreated between test runs. Don't rely on the data there!
|
|
7
|
+
config.cache_classes = true
|
|
8
|
+
|
|
9
|
+
# Log error messages when you accidentally call methods on nil.
|
|
10
|
+
config.whiny_nils = true
|
|
11
|
+
|
|
12
|
+
# Show full error reports and disable caching
|
|
13
|
+
config.action_controller.consider_all_requests_local = true
|
|
14
|
+
config.action_controller.perform_caching = false
|
|
15
|
+
config.action_view.cache_template_loading = true
|
|
16
|
+
|
|
17
|
+
# Disable request forgery protection in test environment
|
|
18
|
+
config.action_controller.allow_forgery_protection = false
|
|
19
|
+
|
|
20
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
|
21
|
+
# The :test delivery method accumulates sent emails in the
|
|
22
|
+
# ActionMailer::Base.deliveries array.
|
|
23
|
+
config.action_mailer.delivery_method = :test
|
|
24
|
+
|
|
25
|
+
# Use SQL instead of Active Record's schema dumper when creating the test database.
|
|
26
|
+
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
|
27
|
+
# like if you have constraints or database-specific column types
|
|
28
|
+
# config.active_record.schema_format = :sql
|
|
29
|
+
|
|
30
|
+
config.gem "cucumber", :lib => false, :version => '0.4.4'
|
|
31
|
+
config.gem "thoughtbot-shoulda", :lib => false, :source => "http://gems.github.com"
|
|
32
|
+
config.gem "notahat-machinist", :lib => false, :source => "http://gems.github.com"
|
|
33
|
+
config.gem 'webrat', :lib => false
|
|
34
|
+
config.gem "faker", :lib => false
|
|
35
|
+
config.gem "relevance-rcov", :lib => false
|
|
36
|
+
config.gem "ruby-prof", :lib => false
|
|
37
|
+
|
|
38
|
+
FEATURE_PATH='test/features/'
|
|
39
|
+
FileUtils.mkdir FEATURE_PATH unless File.exists? FEATURE_PATH
|
|
40
|
+
FileUtils.mkdir FEATURE_PATH + 'step_definitions' unless File.exists? FEATURE_PATH + 'step_definitions'
|
|
41
|
+
|
|
42
|
+
require 'ruby-debug'
|
|
43
|
+
Debugger.start
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
|
5
|
+
|
|
6
|
+
# You can also remove all the silencers if you're trying do debug a problem that might steem from framework code.
|
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# Add new inflection rules using the following format
|
|
4
|
+
# (all these examples are active by default):
|
|
5
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
|
6
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
|
7
|
+
# inflect.singular /^(ox)en/i, '\1'
|
|
8
|
+
# inflect.irregular 'person', 'people'
|
|
9
|
+
# inflect.uncountable %w( fish sheep )
|
|
10
|
+
# end
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# These settings change the behavior of Rails 2 apps and will be defaults
|
|
4
|
+
# for Rails 3. You can remove this initializer when Rails 3 is released.
|
|
5
|
+
|
|
6
|
+
if defined?(ActiveRecord)
|
|
7
|
+
# Include Active Record class name as root for JSON serialized output.
|
|
8
|
+
ActiveRecord::Base.include_root_in_json = true
|
|
9
|
+
|
|
10
|
+
# Store the full class name (including module namespace) in STI type column.
|
|
11
|
+
ActiveRecord::Base.store_full_sti_class = true
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
ActionController::Routing.generate_best_match = false
|
|
15
|
+
|
|
16
|
+
# Use ISO 8601 format for JSON serialized times and dates.
|
|
17
|
+
ActiveSupport.use_standard_json_time_format = true
|
|
18
|
+
|
|
19
|
+
# Don't escape HTML entities in JSON, leave that for the #json_escape helper.
|
|
20
|
+
# if you're including raw json in an HTML page.
|
|
21
|
+
ActiveSupport.escape_html_entities_in_json = false
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# Your secret key for verifying cookie session data integrity.
|
|
4
|
+
# If you change this key, all old sessions will become invalid!
|
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
|
7
|
+
ActionController::Base.session = {
|
|
8
|
+
:key => '_branston_session',
|
|
9
|
+
:secret => '8dd6da1924758b31b76c72a064ae7a6f9dc974f99fb287c1884850e851f74dd4ebe2e013496a9ac57c398b53c7621a7dcc080b2d393c7396ce63ef1764cd8aa6'
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
# Use the database for sessions instead of the cookie-based default,
|
|
13
|
+
# which shouldn't be used to store highly confidential information
|
|
14
|
+
# (create the session table with "rake db:sessions:create")
|
|
15
|
+
# ActionController::Base.session_store = :active_record_store
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
|
|
2
|
+
# A Site key gives additional protection against a dictionary attack if your
|
|
3
|
+
# DB is ever compromised. With no site key, we store
|
|
4
|
+
# DB_password = hash(user_password, DB_user_salt)
|
|
5
|
+
# If your database were to be compromised you'd be vulnerable to a dictionary
|
|
6
|
+
# attack on all your stupid users' passwords. With a site key, we store
|
|
7
|
+
# DB_password = hash(user_password, DB_user_salt, Code_site_key)
|
|
8
|
+
# That means an attacker needs access to both your site's code *and* its
|
|
9
|
+
# database to mount an "offline dictionary attack.":http://www.dwheeler.com/secure-programs/Secure-Programs-HOWTO/web-authentication.html
|
|
10
|
+
#
|
|
11
|
+
# It's probably of minor importance, but recommended by best practices: 'defense
|
|
12
|
+
# in depth'. Needless to say, if you upload this to github or the youtubes or
|
|
13
|
+
# otherwise place it in public view you'll kinda defeat the point. Your users'
|
|
14
|
+
# passwords are still secure, and the world won't end, but defense_in_depth -= 1.
|
|
15
|
+
#
|
|
16
|
+
# Please note: if you change this, all the passwords will be invalidated, so DO
|
|
17
|
+
# keep it someplace secure. Use the random value given or type in the lyrics to
|
|
18
|
+
# your favorite Jay-Z song or something; any moderately long, unpredictable text.
|
|
19
|
+
REST_AUTH_SITE_KEY = 'dea42ce250849e5221b24e6615566d60e0f27bd2'
|
|
20
|
+
|
|
21
|
+
# Repeated applications of the hash make brute force (even with a compromised
|
|
22
|
+
# database and site key) harder, and scale with Moore's law.
|
|
23
|
+
#
|
|
24
|
+
# bq. "To squeeze the most security out of a limited-entropy password or
|
|
25
|
+
# passphrase, we can use two techniques [salting and stretching]... that are
|
|
26
|
+
# so simple and obvious that they should be used in every password system.
|
|
27
|
+
# There is really no excuse not to use them." http://tinyurl.com/37lb73
|
|
28
|
+
# Practical Security (Ferguson & Scheier) p350
|
|
29
|
+
#
|
|
30
|
+
# A modest 10 foldings (the default here) adds 3ms. This makes brute forcing 10
|
|
31
|
+
# times harder, while reducing an app that otherwise serves 100 reqs/s to 78 signin
|
|
32
|
+
# reqs/s, an app that does 10reqs/s to 9.7 reqs/s
|
|
33
|
+
#
|
|
34
|
+
# More:
|
|
35
|
+
# * http://www.owasp.org/index.php/Hashing_Java
|
|
36
|
+
# * "An Illustrated Guide to Cryptographic Hashes":http://www.unixwiz.net/techtips/iguide-crypto-hashes.html
|
|
37
|
+
|
|
38
|
+
REST_AUTH_DIGEST_STRETCHES = 10
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
ActionController::Routing::Routes.draw do |map|
|
|
2
|
+
map.resources :outcomes
|
|
3
|
+
|
|
4
|
+
map.resources :preconditions
|
|
5
|
+
|
|
6
|
+
map.resources :releases
|
|
7
|
+
map.resources :iterations
|
|
8
|
+
|
|
9
|
+
map.resources :user_roles
|
|
10
|
+
map.resources :stories, :member => { :generate_feature => :get } do |r|
|
|
11
|
+
r.resources :scenarios
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
map.logout '/logout', :controller => 'sessions', :action => 'destroy'
|
|
15
|
+
map.login '/login', :controller => 'sessions', :action => 'new'
|
|
16
|
+
map.register '/register', :controller => 'users', :action => 'create'
|
|
17
|
+
map.signup '/signup', :controller => 'users', :action => 'new'
|
|
18
|
+
map.resources :users
|
|
19
|
+
|
|
20
|
+
map.resource :session
|
|
21
|
+
map.connect ':controller/:action/:id'
|
|
22
|
+
map.connect ':controller/:action/:id.:format'
|
|
23
|
+
|
|
24
|
+
map.root :controller => :iterations
|
|
25
|
+
end
|
|
26
|
+
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
2
|
+
<html lang='en' xml:lang='en' xmlns='http://www.w3.org/1999/xhtml'>
|
|
3
|
+
<head>
|
|
4
|
+
<title>app/controllers/application_controller.rb</title>
|
|
5
|
+
<link href="screen.css" media="all" rel="stylesheet" type="text/css" />
|
|
6
|
+
<link href="print.css" media="print" rel="stylesheet" type="text/css" />
|
|
7
|
+
|
|
8
|
+
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
|
|
9
|
+
<script type="text/javascript" src="rcov.js"></script>
|
|
10
|
+
</head>
|
|
11
|
+
<body>
|
|
12
|
+
<h1>Branston C0 Coverage Information - RCov</h1>
|
|
13
|
+
<h2>app/controllers/application_controller.rb</h2>
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
<div class="report_table_wrapper">
|
|
18
|
+
<table class='report' id='report_table'>
|
|
19
|
+
<thead>
|
|
20
|
+
<tr>
|
|
21
|
+
<th class="left_align">Name</th>
|
|
22
|
+
<th class="right_align">Total Lines</th>
|
|
23
|
+
<th class="right_align">Lines of Code</th>
|
|
24
|
+
<th class="left_align">Total Coverage</th>
|
|
25
|
+
<th class="left_align">Code Coverage</th>
|
|
26
|
+
</tr>
|
|
27
|
+
</thead>
|
|
28
|
+
<tbody>
|
|
29
|
+
<tr>
|
|
30
|
+
<td class="left_align"><a href="app-controllers-application_controller_rb.html">app/controllers/application_controller.rb</a></td>
|
|
31
|
+
<td class='right_align'><tt>13</tt></td>
|
|
32
|
+
<td class='right_align'><tt>5</tt></td>
|
|
33
|
+
<td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
|
|
34
|
+
<div class="percent_graph">
|
|
35
|
+
<div class="covered" style="width:100px"></div>
|
|
36
|
+
<div class="uncovered" style="width:0px"></div>
|
|
37
|
+
</div></td>
|
|
38
|
+
<td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
|
|
39
|
+
<div class="percent_graph">
|
|
40
|
+
<div class="covered" style="width:100px"></div>
|
|
41
|
+
<div class="uncovered" style="width:0px"></div>
|
|
42
|
+
</div></td>
|
|
43
|
+
</tr>
|
|
44
|
+
</tbody>
|
|
45
|
+
</table>
|
|
46
|
+
</div>
|
|
47
|
+
|
|
48
|
+
<h3>Key</h3>
|
|
49
|
+
|
|
50
|
+
<div class="key"><pre><span class='marked'>Code reported as executed by Ruby looks like this...</span><span class='marked1'>and this: this line is also marked as covered.</span><span class='inferred'>Lines considered as run by rcov, but not reported by Ruby, look like this,</span><span class='inferred1'>and this: these lines were inferred by rcov (using simple heuristics).</span><span class='uncovered'>Finally, here's a line marked as not executed.</span></pre></div>
|
|
51
|
+
|
|
52
|
+
<h3>Coverage Details</h3>
|
|
53
|
+
|
|
54
|
+
<table class="details">
|
|
55
|
+
<tbody>
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
<tr class="inferred">
|
|
60
|
+
<td><pre><a name="line1">1</a> # Filters added to this controller apply to all controllers in the application.</pre></td>
|
|
61
|
+
</tr>
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
<tr class="inferred">
|
|
66
|
+
<td><pre><a name="line2">2</a> # Likewise, all the methods added will be available for all controllers.</pre></td>
|
|
67
|
+
</tr>
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
<tr class="inferred">
|
|
72
|
+
<td><pre><a name="line3">3</a> </pre></td>
|
|
73
|
+
</tr>
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
<tr class="marked">
|
|
78
|
+
<td><pre><a name="line4">4</a> class ApplicationController < ActionController::Base</pre></td>
|
|
79
|
+
</tr>
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
<tr class="marked">
|
|
84
|
+
<td><pre><a name="line5">5</a> helper :all # include all helpers, all the time</pre></td>
|
|
85
|
+
</tr>
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
<tr class="marked">
|
|
90
|
+
<td><pre><a name="line6">6</a> protect_from_forgery # See ActionController::RequestForgeryProtection for details</pre></td>
|
|
91
|
+
</tr>
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
<tr class="inferred">
|
|
96
|
+
<td><pre><a name="line7">7</a> </pre></td>
|
|
97
|
+
</tr>
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
<tr class="inferred">
|
|
102
|
+
<td><pre><a name="line8">8</a> # Scrub sensitive parameters from your log</pre></td>
|
|
103
|
+
</tr>
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
<tr class="inferred">
|
|
108
|
+
<td><pre><a name="line9">9</a> # filter_parameter_logging :password</pre></td>
|
|
109
|
+
</tr>
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
<tr class="inferred">
|
|
114
|
+
<td><pre><a name="line10">10</a> </pre></td>
|
|
115
|
+
</tr>
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
<tr class="inferred">
|
|
120
|
+
<td><pre><a name="line11">11</a> # RESTful authentication system</pre></td>
|
|
121
|
+
</tr>
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
<tr class="marked">
|
|
126
|
+
<td><pre><a name="line12">12</a> include AuthenticatedSystem</pre></td>
|
|
127
|
+
</tr>
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
<tr class="inferred">
|
|
132
|
+
<td><pre><a name="line13">13</a> end</pre></td>
|
|
133
|
+
</tr>
|
|
134
|
+
|
|
135
|
+
</tbody>
|
|
136
|
+
</table>
|
|
137
|
+
|
|
138
|
+
<p>Generated on Thu Dec 03 16:49:25 +0000 2009 with <a href="http://github.com/relevance/rcov">rcov 0.9.6</a></p>
|
|
139
|
+
|
|
140
|
+
</body>
|
|
141
|
+
</html>
|
|
@@ -0,0 +1,693 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
2
|
+
<html lang='en' xml:lang='en' xmlns='http://www.w3.org/1999/xhtml'>
|
|
3
|
+
<head>
|
|
4
|
+
<title>app/controllers/iterations_controller.rb</title>
|
|
5
|
+
<link href="screen.css" media="all" rel="stylesheet" type="text/css" />
|
|
6
|
+
<link href="print.css" media="print" rel="stylesheet" type="text/css" />
|
|
7
|
+
|
|
8
|
+
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
|
|
9
|
+
<script type="text/javascript" src="rcov.js"></script>
|
|
10
|
+
</head>
|
|
11
|
+
<body>
|
|
12
|
+
<h1>Branston C0 Coverage Information - RCov</h1>
|
|
13
|
+
<h2>app/controllers/iterations_controller.rb</h2>
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
<div class="report_table_wrapper">
|
|
18
|
+
<table class='report' id='report_table'>
|
|
19
|
+
<thead>
|
|
20
|
+
<tr>
|
|
21
|
+
<th class="left_align">Name</th>
|
|
22
|
+
<th class="right_align">Total Lines</th>
|
|
23
|
+
<th class="right_align">Lines of Code</th>
|
|
24
|
+
<th class="left_align">Total Coverage</th>
|
|
25
|
+
<th class="left_align">Code Coverage</th>
|
|
26
|
+
</tr>
|
|
27
|
+
</thead>
|
|
28
|
+
<tbody>
|
|
29
|
+
<tr>
|
|
30
|
+
<td class="left_align"><a href="app-controllers-iterations_controller_rb.html">app/controllers/iterations_controller.rb</a></td>
|
|
31
|
+
<td class='right_align'><tt>105</tt></td>
|
|
32
|
+
<td class='right_align'><tt>72</tt></td>
|
|
33
|
+
<td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
|
|
34
|
+
<div class="percent_graph">
|
|
35
|
+
<div class="covered" style="width:100px"></div>
|
|
36
|
+
<div class="uncovered" style="width:0px"></div>
|
|
37
|
+
</div></td>
|
|
38
|
+
<td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
|
|
39
|
+
<div class="percent_graph">
|
|
40
|
+
<div class="covered" style="width:100px"></div>
|
|
41
|
+
<div class="uncovered" style="width:0px"></div>
|
|
42
|
+
</div></td>
|
|
43
|
+
</tr>
|
|
44
|
+
</tbody>
|
|
45
|
+
</table>
|
|
46
|
+
</div>
|
|
47
|
+
|
|
48
|
+
<h3>Key</h3>
|
|
49
|
+
|
|
50
|
+
<div class="key"><pre><span class='marked'>Code reported as executed by Ruby looks like this...</span><span class='marked1'>and this: this line is also marked as covered.</span><span class='inferred'>Lines considered as run by rcov, but not reported by Ruby, look like this,</span><span class='inferred1'>and this: these lines were inferred by rcov (using simple heuristics).</span><span class='uncovered'>Finally, here's a line marked as not executed.</span></pre></div>
|
|
51
|
+
|
|
52
|
+
<h3>Coverage Details</h3>
|
|
53
|
+
|
|
54
|
+
<table class="details">
|
|
55
|
+
<tbody>
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
<tr class="marked">
|
|
60
|
+
<td><pre><a name="line1">1</a> class IterationsController < ApplicationController</pre></td>
|
|
61
|
+
</tr>
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
<tr class="inferred">
|
|
66
|
+
<td><pre><a name="line2">2</a> </pre></td>
|
|
67
|
+
</tr>
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
<tr class="marked">
|
|
72
|
+
<td><pre><a name="line3">3</a> layout 'main'</pre></td>
|
|
73
|
+
</tr>
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
<tr class="inferred">
|
|
78
|
+
<td><pre><a name="line4">4</a> </pre></td>
|
|
79
|
+
</tr>
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
<tr class="marked">
|
|
84
|
+
<td><pre><a name="line5">5</a> in_place_edit_for :iteration, :velocity</pre></td>
|
|
85
|
+
</tr>
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
<tr class="marked">
|
|
90
|
+
<td><pre><a name="line6">6</a> in_place_edit_for :iteration, :name</pre></td>
|
|
91
|
+
</tr>
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
<tr class="inferred">
|
|
96
|
+
<td><pre><a name="line7">7</a> </pre></td>
|
|
97
|
+
</tr>
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
<tr class="marked">
|
|
102
|
+
<td><pre><a name="line8">8</a> before_filter :find_all_releases, :only => [:new, :edit]</pre></td>
|
|
103
|
+
</tr>
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
<tr class="inferred">
|
|
108
|
+
<td><pre><a name="line9">9</a> </pre></td>
|
|
109
|
+
</tr>
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
<tr class="inferred">
|
|
114
|
+
<td><pre><a name="line10">10</a> # GET /iterations</pre></td>
|
|
115
|
+
</tr>
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
<tr class="inferred">
|
|
120
|
+
<td><pre><a name="line11">11</a> # GET /iterations.xml</pre></td>
|
|
121
|
+
</tr>
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
<tr class="marked">
|
|
126
|
+
<td><pre><a name="line12">12</a> def index</pre></td>
|
|
127
|
+
</tr>
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
<tr class="marked">
|
|
132
|
+
<td><pre><a name="line13">13</a> @iterations = Iteration.all</pre></td>
|
|
133
|
+
</tr>
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
<tr class="inferred">
|
|
138
|
+
<td><pre><a name="line14">14</a> </pre></td>
|
|
139
|
+
</tr>
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
<tr class="marked">
|
|
144
|
+
<td><pre><a name="line15">15</a> respond_to do |format|</pre></td>
|
|
145
|
+
</tr>
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
<tr class="marked">
|
|
150
|
+
<td><pre><a name="line16">16</a> format.html # index.html.erb</pre></td>
|
|
151
|
+
</tr>
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
<tr class="marked">
|
|
156
|
+
<td><pre><a name="line17">17</a> format.xml { render :xml => @iterations }</pre></td>
|
|
157
|
+
</tr>
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
<tr class="inferred">
|
|
162
|
+
<td><pre><a name="line18">18</a> end</pre></td>
|
|
163
|
+
</tr>
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
<tr class="inferred">
|
|
168
|
+
<td><pre><a name="line19">19</a> end</pre></td>
|
|
169
|
+
</tr>
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
<tr class="inferred">
|
|
174
|
+
<td><pre><a name="line20">20</a> </pre></td>
|
|
175
|
+
</tr>
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
<tr class="inferred">
|
|
180
|
+
<td><pre><a name="line21">21</a> # GET /iterations/1</pre></td>
|
|
181
|
+
</tr>
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
<tr class="inferred">
|
|
186
|
+
<td><pre><a name="line22">22</a> # GET /iterations/1.xml</pre></td>
|
|
187
|
+
</tr>
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
<tr class="marked">
|
|
192
|
+
<td><pre><a name="line23">23</a> def show</pre></td>
|
|
193
|
+
</tr>
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
<tr class="marked">
|
|
198
|
+
<td><pre><a name="line24">24</a> @iteration = Iteration.find(params[:id])</pre></td>
|
|
199
|
+
</tr>
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
<tr class="inferred">
|
|
204
|
+
<td><pre><a name="line25">25</a> </pre></td>
|
|
205
|
+
</tr>
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
<tr class="marked">
|
|
210
|
+
<td><pre><a name="line26">26</a> respond_to do |format|</pre></td>
|
|
211
|
+
</tr>
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
<tr class="marked">
|
|
216
|
+
<td><pre><a name="line27">27</a> format.html # show.html.erb</pre></td>
|
|
217
|
+
</tr>
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
<tr class="marked">
|
|
222
|
+
<td><pre><a name="line28">28</a> format.xml { render :xml => @iteration }</pre></td>
|
|
223
|
+
</tr>
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
<tr class="inferred">
|
|
228
|
+
<td><pre><a name="line29">29</a> end</pre></td>
|
|
229
|
+
</tr>
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
<tr class="inferred">
|
|
234
|
+
<td><pre><a name="line30">30</a> end</pre></td>
|
|
235
|
+
</tr>
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
<tr class="inferred">
|
|
240
|
+
<td><pre><a name="line31">31</a> </pre></td>
|
|
241
|
+
</tr>
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
<tr class="inferred">
|
|
246
|
+
<td><pre><a name="line32">32</a> # GET /iterations/new</pre></td>
|
|
247
|
+
</tr>
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
<tr class="inferred">
|
|
252
|
+
<td><pre><a name="line33">33</a> # GET /iterations/new.xml</pre></td>
|
|
253
|
+
</tr>
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
<tr class="marked">
|
|
258
|
+
<td><pre><a name="line34">34</a> def new</pre></td>
|
|
259
|
+
</tr>
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
<tr class="marked">
|
|
264
|
+
<td><pre><a name="line35">35</a> @releases = Release.all</pre></td>
|
|
265
|
+
</tr>
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
<tr class="marked">
|
|
270
|
+
<td><pre><a name="line36">36</a> @iteration = Iteration.new</pre></td>
|
|
271
|
+
</tr>
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
<tr class="inferred">
|
|
276
|
+
<td><pre><a name="line37">37</a> </pre></td>
|
|
277
|
+
</tr>
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
<tr class="marked">
|
|
282
|
+
<td><pre><a name="line38">38</a> respond_to do |format|</pre></td>
|
|
283
|
+
</tr>
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
<tr class="marked">
|
|
288
|
+
<td><pre><a name="line39">39</a> format.html # new.html.erb</pre></td>
|
|
289
|
+
</tr>
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
<tr class="marked">
|
|
294
|
+
<td><pre><a name="line40">40</a> format.xml { render :xml => @iteration }</pre></td>
|
|
295
|
+
</tr>
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
<tr class="inferred">
|
|
300
|
+
<td><pre><a name="line41">41</a> end</pre></td>
|
|
301
|
+
</tr>
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
<tr class="inferred">
|
|
306
|
+
<td><pre><a name="line42">42</a> end</pre></td>
|
|
307
|
+
</tr>
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
<tr class="inferred">
|
|
312
|
+
<td><pre><a name="line43">43</a> </pre></td>
|
|
313
|
+
</tr>
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
<tr class="inferred">
|
|
318
|
+
<td><pre><a name="line44">44</a> # GET /iterations/1/edit</pre></td>
|
|
319
|
+
</tr>
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
<tr class="marked">
|
|
324
|
+
<td><pre><a name="line45">45</a> def edit</pre></td>
|
|
325
|
+
</tr>
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
<tr class="marked">
|
|
330
|
+
<td><pre><a name="line46">46</a> @releases = Release.all</pre></td>
|
|
331
|
+
</tr>
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
<tr class="marked">
|
|
336
|
+
<td><pre><a name="line47">47</a> @iteration = Iteration.find(params[:id])</pre></td>
|
|
337
|
+
</tr>
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
<tr class="inferred">
|
|
342
|
+
<td><pre><a name="line48">48</a> end</pre></td>
|
|
343
|
+
</tr>
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
<tr class="inferred">
|
|
348
|
+
<td><pre><a name="line49">49</a> </pre></td>
|
|
349
|
+
</tr>
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
<tr class="inferred">
|
|
354
|
+
<td><pre><a name="line50">50</a> # POST /iterations</pre></td>
|
|
355
|
+
</tr>
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
<tr class="inferred">
|
|
360
|
+
<td><pre><a name="line51">51</a> # POST /iterations.xml</pre></td>
|
|
361
|
+
</tr>
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
<tr class="marked">
|
|
366
|
+
<td><pre><a name="line52">52</a> def create</pre></td>
|
|
367
|
+
</tr>
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
<tr class="marked">
|
|
372
|
+
<td><pre><a name="line53">53</a> @iteration = Iteration.new(params[:iteration])</pre></td>
|
|
373
|
+
</tr>
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
<tr class="inferred">
|
|
378
|
+
<td><pre><a name="line54">54</a> </pre></td>
|
|
379
|
+
</tr>
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
<tr class="marked">
|
|
384
|
+
<td><pre><a name="line55">55</a> respond_to do |format|</pre></td>
|
|
385
|
+
</tr>
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
<tr class="marked">
|
|
390
|
+
<td><pre><a name="line56">56</a> if @iteration.save</pre></td>
|
|
391
|
+
</tr>
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
<tr class="marked">
|
|
396
|
+
<td><pre><a name="line57">57</a> flash[:notice] = 'Iteration was successfully created.'</pre></td>
|
|
397
|
+
</tr>
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
<tr class="marked">
|
|
402
|
+
<td><pre><a name="line58">58</a> format.html { redirect_to iterations_path }</pre></td>
|
|
403
|
+
</tr>
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
<tr class="marked">
|
|
408
|
+
<td><pre><a name="line59">59</a> format.xml { render :xml => @iteration, :status => :created, :location => @iteration }</pre></td>
|
|
409
|
+
</tr>
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
<tr class="inferred">
|
|
414
|
+
<td><pre><a name="line60">60</a> else</pre></td>
|
|
415
|
+
</tr>
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
<tr class="marked">
|
|
420
|
+
<td><pre><a name="line61">61</a> @releases = Release.all</pre></td>
|
|
421
|
+
</tr>
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
<tr class="marked">
|
|
426
|
+
<td><pre><a name="line62">62</a> format.html { render :action => "new" }</pre></td>
|
|
427
|
+
</tr>
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
<tr class="marked">
|
|
432
|
+
<td><pre><a name="line63">63</a> format.xml { render :xml => @iteration.errors, :status => :unprocessable_entity }</pre></td>
|
|
433
|
+
</tr>
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
<tr class="inferred">
|
|
438
|
+
<td><pre><a name="line64">64</a> end</pre></td>
|
|
439
|
+
</tr>
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
<tr class="inferred">
|
|
444
|
+
<td><pre><a name="line65">65</a> end</pre></td>
|
|
445
|
+
</tr>
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
<tr class="inferred">
|
|
450
|
+
<td><pre><a name="line66">66</a> end</pre></td>
|
|
451
|
+
</tr>
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
<tr class="inferred">
|
|
456
|
+
<td><pre><a name="line67">67</a> </pre></td>
|
|
457
|
+
</tr>
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
<tr class="inferred">
|
|
462
|
+
<td><pre><a name="line68">68</a> # PUT /iterations/1</pre></td>
|
|
463
|
+
</tr>
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
<tr class="inferred">
|
|
468
|
+
<td><pre><a name="line69">69</a> # PUT /iterations/1.xml</pre></td>
|
|
469
|
+
</tr>
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
<tr class="marked">
|
|
474
|
+
<td><pre><a name="line70">70</a> def update</pre></td>
|
|
475
|
+
</tr>
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
<tr class="marked">
|
|
480
|
+
<td><pre><a name="line71">71</a> @iteration = Iteration.find(params[:id])</pre></td>
|
|
481
|
+
</tr>
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
<tr class="inferred">
|
|
486
|
+
<td><pre><a name="line72">72</a> </pre></td>
|
|
487
|
+
</tr>
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
<tr class="marked">
|
|
492
|
+
<td><pre><a name="line73">73</a> respond_to do |format|</pre></td>
|
|
493
|
+
</tr>
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
<tr class="marked">
|
|
498
|
+
<td><pre><a name="line74">74</a> if @iteration.update_attributes(params[:iteration])</pre></td>
|
|
499
|
+
</tr>
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
<tr class="marked">
|
|
504
|
+
<td><pre><a name="line75">75</a> flash[:notice] = 'Iteration was successfully updated.'</pre></td>
|
|
505
|
+
</tr>
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
<tr class="marked">
|
|
510
|
+
<td><pre><a name="line76">76</a> format.html { redirect_to iterations_path }</pre></td>
|
|
511
|
+
</tr>
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
<tr class="marked">
|
|
516
|
+
<td><pre><a name="line77">77</a> format.xml { head :ok }</pre></td>
|
|
517
|
+
</tr>
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
<tr class="inferred">
|
|
522
|
+
<td><pre><a name="line78">78</a> else</pre></td>
|
|
523
|
+
</tr>
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
<tr class="marked">
|
|
528
|
+
<td><pre><a name="line79">79</a> @releases = Release.all</pre></td>
|
|
529
|
+
</tr>
|
|
530
|
+
|
|
531
|
+
|
|
532
|
+
|
|
533
|
+
<tr class="marked">
|
|
534
|
+
<td><pre><a name="line80">80</a> format.html { render :action => "edit" }</pre></td>
|
|
535
|
+
</tr>
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
|
|
539
|
+
<tr class="marked">
|
|
540
|
+
<td><pre><a name="line81">81</a> format.xml { render :xml => @iteration.errors, :status => :unprocessable_entity }</pre></td>
|
|
541
|
+
</tr>
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
<tr class="inferred">
|
|
546
|
+
<td><pre><a name="line82">82</a> end</pre></td>
|
|
547
|
+
</tr>
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
|
|
551
|
+
<tr class="inferred">
|
|
552
|
+
<td><pre><a name="line83">83</a> end</pre></td>
|
|
553
|
+
</tr>
|
|
554
|
+
|
|
555
|
+
|
|
556
|
+
|
|
557
|
+
<tr class="inferred">
|
|
558
|
+
<td><pre><a name="line84">84</a> end</pre></td>
|
|
559
|
+
</tr>
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
<tr class="inferred">
|
|
564
|
+
<td><pre><a name="line85">85</a> </pre></td>
|
|
565
|
+
</tr>
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
|
|
569
|
+
<tr class="inferred">
|
|
570
|
+
<td><pre><a name="line86">86</a> # DELETE /iterations/1</pre></td>
|
|
571
|
+
</tr>
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
|
|
575
|
+
<tr class="inferred">
|
|
576
|
+
<td><pre><a name="line87">87</a> # DELETE /iterations/1.xml</pre></td>
|
|
577
|
+
</tr>
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
|
|
581
|
+
<tr class="marked">
|
|
582
|
+
<td><pre><a name="line88">88</a> def destroy</pre></td>
|
|
583
|
+
</tr>
|
|
584
|
+
|
|
585
|
+
|
|
586
|
+
|
|
587
|
+
<tr class="marked">
|
|
588
|
+
<td><pre><a name="line89">89</a> @iteration = Iteration.find(params[:id])</pre></td>
|
|
589
|
+
</tr>
|
|
590
|
+
|
|
591
|
+
|
|
592
|
+
|
|
593
|
+
<tr class="marked">
|
|
594
|
+
<td><pre><a name="line90">90</a> @iteration.destroy</pre></td>
|
|
595
|
+
</tr>
|
|
596
|
+
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
<tr class="inferred">
|
|
600
|
+
<td><pre><a name="line91">91</a> </pre></td>
|
|
601
|
+
</tr>
|
|
602
|
+
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
<tr class="marked">
|
|
606
|
+
<td><pre><a name="line92">92</a> respond_to do |format|</pre></td>
|
|
607
|
+
</tr>
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
<tr class="marked">
|
|
612
|
+
<td><pre><a name="line93">93</a> format.html { redirect_to(iterations_url) }</pre></td>
|
|
613
|
+
</tr>
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
<tr class="marked">
|
|
618
|
+
<td><pre><a name="line94">94</a> format.xml { head :ok }</pre></td>
|
|
619
|
+
</tr>
|
|
620
|
+
|
|
621
|
+
|
|
622
|
+
|
|
623
|
+
<tr class="inferred">
|
|
624
|
+
<td><pre><a name="line95">95</a> end</pre></td>
|
|
625
|
+
</tr>
|
|
626
|
+
|
|
627
|
+
|
|
628
|
+
|
|
629
|
+
<tr class="inferred">
|
|
630
|
+
<td><pre><a name="line96">96</a> end</pre></td>
|
|
631
|
+
</tr>
|
|
632
|
+
|
|
633
|
+
|
|
634
|
+
|
|
635
|
+
<tr class="inferred">
|
|
636
|
+
<td><pre><a name="line97">97</a> </pre></td>
|
|
637
|
+
</tr>
|
|
638
|
+
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
<tr class="marked">
|
|
642
|
+
<td><pre><a name="line98">98</a> private</pre></td>
|
|
643
|
+
</tr>
|
|
644
|
+
|
|
645
|
+
|
|
646
|
+
|
|
647
|
+
<tr class="inferred">
|
|
648
|
+
<td><pre><a name="line99">99</a> </pre></td>
|
|
649
|
+
</tr>
|
|
650
|
+
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
<tr class="marked">
|
|
654
|
+
<td><pre><a name="line100">100</a> def find_all_releases</pre></td>
|
|
655
|
+
</tr>
|
|
656
|
+
|
|
657
|
+
|
|
658
|
+
|
|
659
|
+
<tr class="marked">
|
|
660
|
+
<td><pre><a name="line101">101</a> @releases = Release.all</pre></td>
|
|
661
|
+
</tr>
|
|
662
|
+
|
|
663
|
+
|
|
664
|
+
|
|
665
|
+
<tr class="inferred">
|
|
666
|
+
<td><pre><a name="line102">102</a> end</pre></td>
|
|
667
|
+
</tr>
|
|
668
|
+
|
|
669
|
+
|
|
670
|
+
|
|
671
|
+
<tr class="inferred">
|
|
672
|
+
<td><pre><a name="line103">103</a> </pre></td>
|
|
673
|
+
</tr>
|
|
674
|
+
|
|
675
|
+
|
|
676
|
+
|
|
677
|
+
<tr class="inferred">
|
|
678
|
+
<td><pre><a name="line104">104</a> end</pre></td>
|
|
679
|
+
</tr>
|
|
680
|
+
|
|
681
|
+
|
|
682
|
+
|
|
683
|
+
<tr class="inferred">
|
|
684
|
+
<td><pre><a name="line105">105</a> </pre></td>
|
|
685
|
+
</tr>
|
|
686
|
+
|
|
687
|
+
</tbody>
|
|
688
|
+
</table>
|
|
689
|
+
|
|
690
|
+
<p>Generated on Thu Dec 03 16:49:25 +0000 2009 with <a href="http://github.com/relevance/rcov">rcov 0.9.6</a></p>
|
|
691
|
+
|
|
692
|
+
</body>
|
|
693
|
+
</html>
|