serum-rails 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/.gitignore +6 -0
- data/.rspec +3 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +42 -0
- data/LICENSE +22 -0
- data/README.md +40 -0
- data/bin/serum-rails +13 -0
- data/lib/serum/rails/app.rb +50 -0
- data/lib/serum/rails/code_scanner.rb +49 -0
- data/lib/serum/rails/metrics.rb +118 -0
- data/lib/serum/rails/type_selection.rb +31 -0
- data/lib/serum/rails/version.rb +7 -0
- data/lib/serum-rails.rb +5 -0
- data/serum-rails.gemspec +23 -0
- data/spec/serum/rails/metrics_spec.rb +87 -0
- data/spec/spec_helper.rb +80 -0
- data/spec/test_app/Capfile +4 -0
- data/spec/test_app/Gemfile +54 -0
- data/spec/test_app/Gemfile.lock +163 -0
- data/spec/test_app/Rakefile +11 -0
- data/spec/test_app/app/controllers/admin/categories_controller.rb +17 -0
- data/spec/test_app/app/controllers/admin/users_controller.rb +30 -0
- data/spec/test_app/app/controllers/application_controller/i18n_trait.rb +24 -0
- data/spec/test_app/app/controllers/application_controller/navigation_trait.rb +19 -0
- data/spec/test_app/app/controllers/application_controller/security_trait/disabled_clearance_accounts_trait.rb +41 -0
- data/spec/test_app/app/controllers/application_controller/security_trait.rb +65 -0
- data/spec/test_app/app/controllers/application_controller.rb +13 -0
- data/spec/test_app/app/controllers/conferences_controller.rb +67 -0
- data/spec/test_app/app/controllers/friendship_requests_controller.rb +31 -0
- data/spec/test_app/app/controllers/invitations_controller.rb +39 -0
- data/spec/test_app/app/controllers/members_controller.rb +21 -0
- data/spec/test_app/app/controllers/passwords_controller.rb +33 -0
- data/spec/test_app/app/controllers/sessions_controller.rb +17 -0
- data/spec/test_app/app/controllers/shared/boring_controller_trait/deletable_trait.rb +23 -0
- data/spec/test_app/app/controllers/shared/boring_controller_trait/flash_trait.rb +23 -0
- data/spec/test_app/app/controllers/shared/boring_controller_trait/helpers_trait.rb +35 -0
- data/spec/test_app/app/controllers/shared/boring_controller_trait/index_trait.rb +39 -0
- data/spec/test_app/app/controllers/shared/boring_controller_trait/log_changes_trait.rb +18 -0
- data/spec/test_app/app/controllers/shared/boring_controller_trait.rb +16 -0
- data/spec/test_app/app/controllers/users_controller.rb +49 -0
- data/spec/test_app/app/controllers/ws/api_controller/formatters_trait.rb +91 -0
- data/spec/test_app/app/controllers/ws/api_controller/parsers_trait.rb +59 -0
- data/spec/test_app/app/controllers/ws/api_controller.rb +70 -0
- data/spec/test_app/app/controllers/ws/attendees_controller.rb +43 -0
- data/spec/test_app/app/controllers/ws/categories_controller.rb +30 -0
- data/spec/test_app/app/controllers/ws/conferences_controller.rb +62 -0
- data/spec/test_app/app/controllers/ws/contacts_controller.rb +41 -0
- data/spec/test_app/app/controllers/ws/factory_controller.rb +45 -0
- data/spec/test_app/app/controllers/ws/members_controller.rb +34 -0
- data/spec/test_app/app/controllers/ws/series_controller.rb +19 -0
- data/spec/test_app/app/controllers/ws/tests_controller.rb +23 -0
- data/spec/test_app/app/helpers/application_helper.rb +180 -0
- data/spec/test_app/app/helpers/mail_helper.rb +9 -0
- data/spec/test_app/app/helpers/tags_helper.rb +16 -0
- data/spec/test_app/app/helpers/user_helper.rb +23 -0
- data/spec/test_app/app/models/attendance.rb +11 -0
- data/spec/test_app/app/models/category/ancestry_trait.rb +23 -0
- data/spec/test_app/app/models/category.rb +25 -0
- data/spec/test_app/app/models/conference/attendance_trait.rb +23 -0
- data/spec/test_app/app/models/conference/categories_trait.rb +26 -0
- data/spec/test_app/app/models/conference/icalendar_trait.rb +36 -0
- data/spec/test_app/app/models/conference/search_trait.rb +44 -0
- data/spec/test_app/app/models/conference.rb +24 -0
- data/spec/test_app/app/models/conference_category.rb +6 -0
- data/spec/test_app/app/models/conference_search.rb +51 -0
- data/spec/test_app/app/models/error.rb +25 -0
- data/spec/test_app/app/models/friendship.rb +14 -0
- data/spec/test_app/app/models/friendship_request.rb +19 -0
- data/spec/test_app/app/models/invitation.rb +38 -0
- data/spec/test_app/app/models/member_search.rb +18 -0
- data/spec/test_app/app/models/navigation.rb +38 -0
- data/spec/test_app/app/models/patterns.rb +14 -0
- data/spec/test_app/app/models/permissions.rb +106 -0
- data/spec/test_app/app/models/shared/afterlife_trait.rb +18 -0
- data/spec/test_app/app/models/shared/choice_trait.rb +37 -0
- data/spec/test_app/app/models/shared/deletable_trait.rb +8 -0
- data/spec/test_app/app/models/shared/flag_trait.rb +30 -0
- data/spec/test_app/app/models/shared/indestructible_trait.rb +19 -0
- data/spec/test_app/app/models/shared/list_field_trait.rb +70 -0
- data/spec/test_app/app/models/shared/person_name_trait.rb +25 -0
- data/spec/test_app/app/models/shared/searchable_trait.rb +71 -0
- data/spec/test_app/app/models/shared/sortable_trait.rb +24 -0
- data/spec/test_app/app/models/user/authentication_trait.rb +33 -0
- data/spec/test_app/app/models/user/authorization_trait.rb +17 -0
- data/spec/test_app/app/models/user/friends_trait.rb +42 -0
- data/spec/test_app/app/models/user/search_trait.rb +43 -0
- data/spec/test_app/app/models/user.rb +61 -0
- data/spec/test_app/app/models/util.rb +19 -0
- data/spec/test_app/app/views/admin/categories/_form.html.haml +18 -0
- data/spec/test_app/app/views/admin/categories/_list.html.haml +17 -0
- data/spec/test_app/app/views/admin/categories/edit.html.haml +6 -0
- data/spec/test_app/app/views/admin/categories/index.html.haml +6 -0
- data/spec/test_app/app/views/admin/categories/new.html.haml +6 -0
- data/spec/test_app/app/views/admin/categories/show.html.haml +27 -0
- data/spec/test_app/app/views/admin/users/_form.html.haml +49 -0
- data/spec/test_app/app/views/admin/users/_head.html.haml +5 -0
- data/spec/test_app/app/views/admin/users/_list.html.haml +20 -0
- data/spec/test_app/app/views/admin/users/_search.html.haml +9 -0
- data/spec/test_app/app/views/admin/users/deleted.html.haml +5 -0
- data/spec/test_app/app/views/admin/users/edit.html.haml +5 -0
- data/spec/test_app/app/views/admin/users/index.html.haml +7 -0
- data/spec/test_app/app/views/admin/users/new.html.haml +6 -0
- data/spec/test_app/app/views/clearance_mailer/change_password.erb +9 -0
- data/spec/test_app/app/views/conferences/_categories_list.html.haml +8 -0
- data/spec/test_app/app/views/conferences/_form.html.haml +32 -0
- data/spec/test_app/app/views/conferences/_head.html.haml +4 -0
- data/spec/test_app/app/views/conferences/_list.html.haml +22 -0
- data/spec/test_app/app/views/conferences/_search.html.haml +24 -0
- data/spec/test_app/app/views/conferences/edit.html.haml +8 -0
- data/spec/test_app/app/views/conferences/index.html.haml +22 -0
- data/spec/test_app/app/views/conferences/new.html.haml +9 -0
- data/spec/test_app/app/views/conferences/search.html.haml +7 -0
- data/spec/test_app/app/views/conferences/show.html.haml +78 -0
- data/spec/test_app/app/views/invitations/index.html.haml +26 -0
- data/spec/test_app/app/views/invitations/new.html.haml +22 -0
- data/spec/test_app/app/views/layouts/_flashes.html.haml +13 -0
- data/spec/test_app/app/views/layouts/_javascript_requirement.html.haml +8 -0
- data/spec/test_app/app/views/layouts/_javascripts.html.haml +4 -0
- data/spec/test_app/app/views/layouts/_notifications.html.haml +11 -0
- data/spec/test_app/app/views/layouts/_session_navigation.html.haml +12 -0
- data/spec/test_app/app/views/layouts/_stylesheets.html.haml +6 -0
- data/spec/test_app/app/views/layouts/screen.html.haml +30 -0
- data/spec/test_app/app/views/members/index.html.haml +40 -0
- data/spec/test_app/app/views/passwords/edit.html.haml +21 -0
- data/spec/test_app/app/views/passwords/new.html.haml +14 -0
- data/spec/test_app/app/views/sessions/new.html.haml +19 -0
- data/spec/test_app/app/views/users/_form.html.haml +45 -0
- data/spec/test_app/app/views/users/_head.html.haml +3 -0
- data/spec/test_app/app/views/users/edit.html.haml +5 -0
- data/spec/test_app/app/views/users/new.html.haml +6 -0
- data/spec/test_app/app/views/users/show.html.haml +49 -0
- data/spec/test_app/assets/data.json +981 -0
- data/spec/test_app/config/boot.rb +125 -0
- data/spec/test_app/config/cucumber.yml +8 -0
- data/spec/test_app/config/database.sample.yml +24 -0
- data/spec/test_app/config/deploy/production.rb +9 -0
- data/spec/test_app/config/deploy.rb +100 -0
- data/spec/test_app/config/environment.rb +27 -0
- data/spec/test_app/config/environments/cucumber.rb +28 -0
- data/spec/test_app/config/environments/development.rb +22 -0
- data/spec/test_app/config/environments/production.rb +35 -0
- data/spec/test_app/config/environments/test.rb +30 -0
- data/spec/test_app/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/test_app/config/initializers/clearance.rb +5 -0
- data/spec/test_app/config/initializers/collect_hash.rb +23 -0
- data/spec/test_app/config/initializers/collection_path_with_params.rb +18 -0
- data/spec/test_app/config/initializers/cookie_verification_secret.rb +10 -0
- data/spec/test_app/config/initializers/form_builder.rb +166 -0
- data/spec/test_app/config/initializers/inflections.rb +10 -0
- data/spec/test_app/config/initializers/invert_ordered_hash.rb +12 -0
- data/spec/test_app/config/initializers/localize_textfield_input_for_numbers.rb +30 -0
- data/spec/test_app/config/initializers/mime_types.rb +7 -0
- data/spec/test_app/config/initializers/new_rails_defaults.rb +21 -0
- data/spec/test_app/config/initializers/preload_associations.rb +7 -0
- data/spec/test_app/config/initializers/query_diet.rb +6 -0
- data/spec/test_app/config/initializers/saner_field_with_errors.rb +5 -0
- data/spec/test_app/config/initializers/session_store.rb +18 -0
- data/spec/test_app/config/locales/en.yml +231 -0
- data/spec/test_app/config/preinitializer.rb +22 -0
- data/spec/test_app/config/routes.rb +47 -0
- data/spec/test_app/db/migrate/20110114164517_initial_tables.rb +52 -0
- data/spec/test_app/db/migrate/20110118090858_add_profile_fields_to_user.rb +15 -0
- data/spec/test_app/db/migrate/20110118092741_create_conference.rb +20 -0
- data/spec/test_app/db/migrate/20110118093503_create_category.rb +17 -0
- data/spec/test_app/db/migrate/20110118104438_create_conference_category.rb +16 -0
- data/spec/test_app/db/migrate/20110118105959_create_attendance.rb +17 -0
- data/spec/test_app/db/migrate/20110118122324_create_friendship_requests.rb +15 -0
- data/spec/test_app/db/migrate/20110118162436_create_invitation.rb +16 -0
- data/spec/test_app/db/migrate/20110118170347_create_friendships.rb +15 -0
- data/spec/test_app/db/migrate/20110118193528_add_timestamps_to_conference.rb +12 -0
- data/spec/test_app/db/migrate/20110119075012_set_unique_index_on_username_for_user.rb +11 -0
- data/spec/test_app/db/migrate/20110119093458_remove_first_and_last_name_from_user.rb +12 -0
- data/spec/test_app/db/migrate/20110119110857_add_missing_indexes.rb +23 -0
- data/spec/test_app/db/migrate/20110119115751_add_uniqueness_of_name_to_category.rb +9 -0
- data/spec/test_app/db/seeds.rb +5 -0
- data/spec/test_app/lib/scripts/create_many_users_sql.rb +14 -0
- data/spec/test_app/lib/tasks/cucumber.rake +53 -0
- data/spec/test_app/lib/tasks/pending_migrations.rake +24 -0
- data/spec/test_app/lib/tasks/rcov.rake +42 -0
- data/spec/test_app/lib/tasks/rspec.rake +144 -0
- data/spec/test_app/public/404.html +30 -0
- data/spec/test_app/public/422.html +30 -0
- data/spec/test_app/public/500.html +30 -0
- data/spec/test_app/public/favicon.ico +0 -0
- data/spec/test_app/public/images/ajax-loader.gif +0 -0
- data/spec/test_app/public/images/icons/balloon-quotation.png +0 -0
- data/spec/test_app/public/images/icons/balloon-sound.png +0 -0
- data/spec/test_app/public/images/icons/balloon.png +0 -0
- data/spec/test_app/public/images/icons/bell.png +0 -0
- data/spec/test_app/public/images/icons/bin.png +0 -0
- data/spec/test_app/public/images/icons/bookmark.png +0 -0
- data/spec/test_app/public/images/icons/cake.png +0 -0
- data/spec/test_app/public/images/icons/calendar-blue.png +0 -0
- data/spec/test_app/public/images/icons/calendar-month.png +0 -0
- data/spec/test_app/public/images/icons/calendar-month_light.png +0 -0
- data/spec/test_app/public/images/icons/calendar-select.png +0 -0
- data/spec/test_app/public/images/icons/card-address.png +0 -0
- data/spec/test_app/public/images/icons/cards-address.png +0 -0
- data/spec/test_app/public/images/icons/cross-script.png +0 -0
- data/spec/test_app/public/images/icons/cross-small.png +0 -0
- data/spec/test_app/public/images/icons/cross.png +0 -0
- data/spec/test_app/public/images/icons/crown-silver.png +0 -0
- data/spec/test_app/public/images/icons/crown.png +0 -0
- data/spec/test_app/public/images/icons/dashboard.png +0 -0
- data/spec/test_app/public/images/icons/document-list.png +0 -0
- data/spec/test_app/public/images/icons/document-node.png +0 -0
- data/spec/test_app/public/images/icons/document-number.png +0 -0
- data/spec/test_app/public/images/icons/document-stamp.png +0 -0
- data/spec/test_app/public/images/icons/document-task.png +0 -0
- data/spec/test_app/public/images/icons/document-text.png +0 -0
- data/spec/test_app/public/images/icons/fire.png +0 -0
- data/spec/test_app/public/images/icons/folder-medium.png +0 -0
- data/spec/test_app/public/images/icons/folder.png +0 -0
- data/spec/test_app/public/images/icons/gear.png +0 -0
- data/spec/test_app/public/images/icons/globe-green.png +0 -0
- data/spec/test_app/public/images/icons/globe-green_light.png +0 -0
- data/spec/test_app/public/images/icons/globe-medium-green.png +0 -0
- data/spec/test_app/public/images/icons/heart-break.png +0 -0
- data/spec/test_app/public/images/icons/heart.png +0 -0
- data/spec/test_app/public/images/icons/images-flickr.png +0 -0
- data/spec/test_app/public/images/icons/information-balloon.png +0 -0
- data/spec/test_app/public/images/icons/key.png +0 -0
- data/spec/test_app/public/images/icons/light-bulb.png +0 -0
- data/spec/test_app/public/images/icons/lock--exclamation.png +0 -0
- data/spec/test_app/public/images/icons/lock.png +0 -0
- data/spec/test_app/public/images/icons/magnifier-medium.png +0 -0
- data/spec/test_app/public/images/icons/magnifier.png +0 -0
- data/spec/test_app/public/images/icons/mail.png +0 -0
- data/spec/test_app/public/images/icons/paper-clip-small.png +0 -0
- data/spec/test_app/public/images/icons/paper-clip.png +0 -0
- data/spec/test_app/public/images/icons/pencil.png +0 -0
- data/spec/test_app/public/images/icons/plus-circle.png +0 -0
- data/spec/test_app/public/images/icons/plus-small.png +0 -0
- data/spec/test_app/public/images/icons/plus.png +0 -0
- data/spec/test_app/public/images/icons/printer.png +0 -0
- data/spec/test_app/public/images/icons/question-balloon.png +0 -0
- data/spec/test_app/public/images/icons/question-white.png +0 -0
- data/spec/test_app/public/images/icons/question.png +0 -0
- data/spec/test_app/public/images/icons/quill.png +0 -0
- data/spec/test_app/public/images/icons/robot.png +0 -0
- data/spec/test_app/public/images/icons/ruby_16.png +0 -0
- data/spec/test_app/public/images/icons/ruby_2_16.png +0 -0
- data/spec/test_app/public/images/icons/ruby_32.png +0 -0
- data/spec/test_app/public/images/icons/show.png +0 -0
- data/spec/test_app/public/images/icons/star.png +0 -0
- data/spec/test_app/public/images/icons/sticky-note-text.png +0 -0
- data/spec/test_app/public/images/icons/telephone-fax.png +0 -0
- data/spec/test_app/public/images/icons/telephone-fax_light.png +0 -0
- data/spec/test_app/public/images/icons/telephone.png +0 -0
- data/spec/test_app/public/images/icons/telephone_light.png +0 -0
- data/spec/test_app/public/images/icons/thumb-up.png +0 -0
- data/spec/test_app/public/images/icons/thumb.png +0 -0
- data/spec/test_app/public/images/icons/tick.png +0 -0
- data/spec/test_app/public/images/icons/trophy-silver.png +0 -0
- data/spec/test_app/public/images/icons/trophy.png +0 -0
- data/spec/test_app/public/images/icons/user-gray.png +0 -0
- data/spec/test_app/public/images/icons/user-gray_gray.png +0 -0
- data/spec/test_app/public/images/icons/user-medium.png +0 -0
- data/spec/test_app/public/images/icons/user-red.png +0 -0
- data/spec/test_app/public/images/icons/users.png +0 -0
- data/spec/test_app/public/images/icons/users_gray.png +0 -0
- data/spec/test_app/public/images/icons/xfn.png +0 -0
- data/spec/test_app/public/images/legend_bg.png +0 -0
- data/spec/test_app/public/images/poshytip/tip-deepgray.png +0 -0
- data/spec/test_app/public/images/poshytip/tip-deepgray_arrows.png +0 -0
- data/spec/test_app/public/images/stripes_bottom_dark.png +0 -0
- data/spec/test_app/public/images/stripes_top_dark.png +0 -0
- data/spec/test_app/public/images/ui/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
- data/spec/test_app/public/images/ui/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
- data/spec/test_app/public/images/ui/ui-bg_flat_10_000000_40x100.png +0 -0
- data/spec/test_app/public/images/ui/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
- data/spec/test_app/public/images/ui/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/spec/test_app/public/images/ui/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/spec/test_app/public/images/ui/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
- data/spec/test_app/public/images/ui/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
- data/spec/test_app/public/images/ui/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
- data/spec/test_app/public/images/ui/ui-icons_222222_256x240.png +0 -0
- data/spec/test_app/public/images/ui/ui-icons_228ef1_256x240.png +0 -0
- data/spec/test_app/public/images/ui/ui-icons_ef8c08_256x240.png +0 -0
- data/spec/test_app/public/images/ui/ui-icons_ffd27a_256x240.png +0 -0
- data/spec/test_app/public/images/ui/ui-icons_ffffff_256x240.png +0 -0
- data/spec/test_app/public/javascripts/application.js +175 -0
- data/spec/test_app/public/javascripts/lib/jquery-1.4.2.min.js +154 -0
- data/spec/test_app/public/javascripts/lib/jquery-ui-1.8.5.custom.min.js +249 -0
- data/spec/test_app/public/javascripts/lib/jquery-ui-1.8.5.custom.min.txt +9 -0
- data/spec/test_app/public/javascripts/lib/jquery-ui-timepicker-addon.js +682 -0
- data/spec/test_app/public/javascripts/lib/jquery-ui-timepicker-addon.min.js +22 -0
- data/spec/test_app/public/javascripts/lib/jquery.elastic.js +6 -0
- data/spec/test_app/public/javascripts/lib/jquery.elastic.performance.js +128 -0
- data/spec/test_app/public/javascripts/lib/jquery.elastic.source.js +117 -0
- data/spec/test_app/public/javascripts/lib/jquery.poshytip.js +414 -0
- data/spec/test_app/public/javascripts/lib/jquery.poshytip.min.js +7 -0
- data/spec/test_app/public/javascripts/lib/jquery.ui.datepicker-de.js +23 -0
- data/spec/test_app/public/javascripts/lib/jrails.js +1 -0
- data/spec/test_app/public/javascripts/lib/multiple-autocomplete.js +39 -0
- data/spec/test_app/public/javascripts/lib/underscore-min.js +17 -0
- data/spec/test_app/public/javascripts/lib/underscore.js +704 -0
- data/spec/test_app/public/robots.txt +5 -0
- data/spec/test_app/public/stylesheets/lib/PIE.htc +77 -0
- data/spec/test_app/public/stylesheets/lib/PIE_uncompressed.htc +3064 -0
- data/spec/test_app/public/stylesheets/lib/jquery-ui-timepicker-addon.css +11 -0
- data/spec/test_app/public/stylesheets/lib/poshytip/tip-darkgray/tip-darkgray.css +62 -0
- data/spec/test_app/public/stylesheets/lib/poshytip/tip-darkgray/tip-darkgray.png +0 -0
- data/spec/test_app/public/stylesheets/lib/poshytip/tip-darkgray/tip-darkgray_arrows.png +0 -0
- data/spec/test_app/public/stylesheets/lib/poshytip/tip-deepgray/tip-deepgray.css +64 -0
- data/spec/test_app/public/stylesheets/lib/poshytip/tip-green/tip-green.css +57 -0
- data/spec/test_app/public/stylesheets/lib/poshytip/tip-green/tip-green_arrows.gif +0 -0
- data/spec/test_app/public/stylesheets/lib/poshytip/tip-skyblue/tip-skyblue.css +58 -0
- data/spec/test_app/public/stylesheets/lib/poshytip/tip-skyblue/tip-skyblue.png +0 -0
- data/spec/test_app/public/stylesheets/lib/poshytip/tip-skyblue/tip-skyblue_arrows.png +0 -0
- data/spec/test_app/public/stylesheets/lib/poshytip/tip-twitter/tip-twitter.css +59 -0
- data/spec/test_app/public/stylesheets/lib/poshytip/tip-twitter/tip-twitter_arrows.gif +0 -0
- data/spec/test_app/public/stylesheets/lib/poshytip/tip-violet/tip-violet.css +60 -0
- data/spec/test_app/public/stylesheets/lib/poshytip/tip-violet/tip-violet.png +0 -0
- data/spec/test_app/public/stylesheets/lib/poshytip/tip-violet/tip-violet_arrows.png +0 -0
- data/spec/test_app/public/stylesheets/lib/poshytip/tip-yellow/tip-yellow.css +60 -0
- data/spec/test_app/public/stylesheets/lib/poshytip/tip-yellow/tip-yellow.png +0 -0
- data/spec/test_app/public/stylesheets/lib/poshytip/tip-yellow/tip-yellow_arrows.png +0 -0
- data/spec/test_app/public/stylesheets/lib/poshytip/tip-yellowsimple/tip-yellowsimple.css +60 -0
- data/spec/test_app/public/stylesheets/lib/poshytip/tip-yellowsimple/tip-yellowsimple_arrows.gif +0 -0
- data/spec/test_app/public/stylesheets/lib/ui-lightness/jquery-ui-1.8.5.custom.css +459 -0
- data/spec/test_app/public/stylesheets/sass/_mixins.sass +79 -0
- data/spec/test_app/public/stylesheets/sass/_reset.sass +40 -0
- data/spec/test_app/public/stylesheets/sass/print.sass +22 -0
- data/spec/test_app/public/stylesheets/sass/screen.sass +866 -0
- data/spec/test_app/script/about +4 -0
- data/spec/test_app/script/autospec +6 -0
- data/spec/test_app/script/console +3 -0
- data/spec/test_app/script/cucumber +10 -0
- data/spec/test_app/script/dbconsole +3 -0
- data/spec/test_app/script/destroy +3 -0
- data/spec/test_app/script/generate +3 -0
- data/spec/test_app/script/performance/benchmarker +3 -0
- data/spec/test_app/script/performance/profiler +3 -0
- data/spec/test_app/script/plugin +3 -0
- data/spec/test_app/script/runner +3 -0
- data/spec/test_app/script/server +3 -0
- data/spec/test_app/script/spec +10 -0
- metadata +748 -0
metadata
ADDED
@@ -0,0 +1,748 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: serum-rails
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Henning Koch
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-09-04 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rake
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ! '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ! '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rspec
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ! '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '3'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ! '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '3'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: activesupport
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ! '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.2'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ! '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.2'
|
55
|
+
description: Scans a Rails application for metrics relevant to security audits
|
56
|
+
email: henning.koch@makandra.de
|
57
|
+
executables:
|
58
|
+
- serum-rails
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- .gitignore
|
63
|
+
- .rspec
|
64
|
+
- Gemfile
|
65
|
+
- Gemfile.lock
|
66
|
+
- LICENSE
|
67
|
+
- README.md
|
68
|
+
- bin/serum-rails
|
69
|
+
- lib/serum-rails.rb
|
70
|
+
- lib/serum/rails/app.rb
|
71
|
+
- lib/serum/rails/code_scanner.rb
|
72
|
+
- lib/serum/rails/metrics.rb
|
73
|
+
- lib/serum/rails/type_selection.rb
|
74
|
+
- lib/serum/rails/version.rb
|
75
|
+
- serum-rails.gemspec
|
76
|
+
- spec/serum/rails/metrics_spec.rb
|
77
|
+
- spec/spec_helper.rb
|
78
|
+
- spec/test_app/Capfile
|
79
|
+
- spec/test_app/Gemfile
|
80
|
+
- spec/test_app/Gemfile.lock
|
81
|
+
- spec/test_app/Rakefile
|
82
|
+
- spec/test_app/app/controllers/admin/categories_controller.rb
|
83
|
+
- spec/test_app/app/controllers/admin/users_controller.rb
|
84
|
+
- spec/test_app/app/controllers/application_controller.rb
|
85
|
+
- spec/test_app/app/controllers/application_controller/i18n_trait.rb
|
86
|
+
- spec/test_app/app/controllers/application_controller/navigation_trait.rb
|
87
|
+
- spec/test_app/app/controllers/application_controller/security_trait.rb
|
88
|
+
- spec/test_app/app/controllers/application_controller/security_trait/disabled_clearance_accounts_trait.rb
|
89
|
+
- spec/test_app/app/controllers/conferences_controller.rb
|
90
|
+
- spec/test_app/app/controllers/friendship_requests_controller.rb
|
91
|
+
- spec/test_app/app/controllers/invitations_controller.rb
|
92
|
+
- spec/test_app/app/controllers/members_controller.rb
|
93
|
+
- spec/test_app/app/controllers/passwords_controller.rb
|
94
|
+
- spec/test_app/app/controllers/sessions_controller.rb
|
95
|
+
- spec/test_app/app/controllers/shared/boring_controller_trait.rb
|
96
|
+
- spec/test_app/app/controllers/shared/boring_controller_trait/deletable_trait.rb
|
97
|
+
- spec/test_app/app/controllers/shared/boring_controller_trait/flash_trait.rb
|
98
|
+
- spec/test_app/app/controllers/shared/boring_controller_trait/helpers_trait.rb
|
99
|
+
- spec/test_app/app/controllers/shared/boring_controller_trait/index_trait.rb
|
100
|
+
- spec/test_app/app/controllers/shared/boring_controller_trait/log_changes_trait.rb
|
101
|
+
- spec/test_app/app/controllers/users_controller.rb
|
102
|
+
- spec/test_app/app/controllers/ws/api_controller.rb
|
103
|
+
- spec/test_app/app/controllers/ws/api_controller/formatters_trait.rb
|
104
|
+
- spec/test_app/app/controllers/ws/api_controller/parsers_trait.rb
|
105
|
+
- spec/test_app/app/controllers/ws/attendees_controller.rb
|
106
|
+
- spec/test_app/app/controllers/ws/categories_controller.rb
|
107
|
+
- spec/test_app/app/controllers/ws/conferences_controller.rb
|
108
|
+
- spec/test_app/app/controllers/ws/contacts_controller.rb
|
109
|
+
- spec/test_app/app/controllers/ws/factory_controller.rb
|
110
|
+
- spec/test_app/app/controllers/ws/members_controller.rb
|
111
|
+
- spec/test_app/app/controllers/ws/series_controller.rb
|
112
|
+
- spec/test_app/app/controllers/ws/tests_controller.rb
|
113
|
+
- spec/test_app/app/helpers/application_helper.rb
|
114
|
+
- spec/test_app/app/helpers/mail_helper.rb
|
115
|
+
- spec/test_app/app/helpers/tags_helper.rb
|
116
|
+
- spec/test_app/app/helpers/user_helper.rb
|
117
|
+
- spec/test_app/app/models/attendance.rb
|
118
|
+
- spec/test_app/app/models/category.rb
|
119
|
+
- spec/test_app/app/models/category/ancestry_trait.rb
|
120
|
+
- spec/test_app/app/models/conference.rb
|
121
|
+
- spec/test_app/app/models/conference/attendance_trait.rb
|
122
|
+
- spec/test_app/app/models/conference/categories_trait.rb
|
123
|
+
- spec/test_app/app/models/conference/icalendar_trait.rb
|
124
|
+
- spec/test_app/app/models/conference/search_trait.rb
|
125
|
+
- spec/test_app/app/models/conference_category.rb
|
126
|
+
- spec/test_app/app/models/conference_search.rb
|
127
|
+
- spec/test_app/app/models/error.rb
|
128
|
+
- spec/test_app/app/models/friendship.rb
|
129
|
+
- spec/test_app/app/models/friendship_request.rb
|
130
|
+
- spec/test_app/app/models/invitation.rb
|
131
|
+
- spec/test_app/app/models/member_search.rb
|
132
|
+
- spec/test_app/app/models/navigation.rb
|
133
|
+
- spec/test_app/app/models/patterns.rb
|
134
|
+
- spec/test_app/app/models/permissions.rb
|
135
|
+
- spec/test_app/app/models/shared/afterlife_trait.rb
|
136
|
+
- spec/test_app/app/models/shared/choice_trait.rb
|
137
|
+
- spec/test_app/app/models/shared/deletable_trait.rb
|
138
|
+
- spec/test_app/app/models/shared/flag_trait.rb
|
139
|
+
- spec/test_app/app/models/shared/indestructible_trait.rb
|
140
|
+
- spec/test_app/app/models/shared/list_field_trait.rb
|
141
|
+
- spec/test_app/app/models/shared/person_name_trait.rb
|
142
|
+
- spec/test_app/app/models/shared/searchable_trait.rb
|
143
|
+
- spec/test_app/app/models/shared/sortable_trait.rb
|
144
|
+
- spec/test_app/app/models/user.rb
|
145
|
+
- spec/test_app/app/models/user/authentication_trait.rb
|
146
|
+
- spec/test_app/app/models/user/authorization_trait.rb
|
147
|
+
- spec/test_app/app/models/user/friends_trait.rb
|
148
|
+
- spec/test_app/app/models/user/search_trait.rb
|
149
|
+
- spec/test_app/app/models/util.rb
|
150
|
+
- spec/test_app/app/views/admin/categories/_form.html.haml
|
151
|
+
- spec/test_app/app/views/admin/categories/_list.html.haml
|
152
|
+
- spec/test_app/app/views/admin/categories/edit.html.haml
|
153
|
+
- spec/test_app/app/views/admin/categories/index.html.haml
|
154
|
+
- spec/test_app/app/views/admin/categories/new.html.haml
|
155
|
+
- spec/test_app/app/views/admin/categories/show.html.haml
|
156
|
+
- spec/test_app/app/views/admin/users/_form.html.haml
|
157
|
+
- spec/test_app/app/views/admin/users/_head.html.haml
|
158
|
+
- spec/test_app/app/views/admin/users/_list.html.haml
|
159
|
+
- spec/test_app/app/views/admin/users/_search.html.haml
|
160
|
+
- spec/test_app/app/views/admin/users/deleted.html.haml
|
161
|
+
- spec/test_app/app/views/admin/users/edit.html.haml
|
162
|
+
- spec/test_app/app/views/admin/users/index.html.haml
|
163
|
+
- spec/test_app/app/views/admin/users/new.html.haml
|
164
|
+
- spec/test_app/app/views/clearance_mailer/change_password.erb
|
165
|
+
- spec/test_app/app/views/conferences/_categories_list.html.haml
|
166
|
+
- spec/test_app/app/views/conferences/_form.html.haml
|
167
|
+
- spec/test_app/app/views/conferences/_head.html.haml
|
168
|
+
- spec/test_app/app/views/conferences/_list.html.haml
|
169
|
+
- spec/test_app/app/views/conferences/_search.html.haml
|
170
|
+
- spec/test_app/app/views/conferences/edit.html.haml
|
171
|
+
- spec/test_app/app/views/conferences/index.html.haml
|
172
|
+
- spec/test_app/app/views/conferences/new.html.haml
|
173
|
+
- spec/test_app/app/views/conferences/search.html.haml
|
174
|
+
- spec/test_app/app/views/conferences/show.html.haml
|
175
|
+
- spec/test_app/app/views/invitations/index.html.haml
|
176
|
+
- spec/test_app/app/views/invitations/new.html.haml
|
177
|
+
- spec/test_app/app/views/layouts/_flashes.html.haml
|
178
|
+
- spec/test_app/app/views/layouts/_javascript_requirement.html.haml
|
179
|
+
- spec/test_app/app/views/layouts/_javascripts.html.haml
|
180
|
+
- spec/test_app/app/views/layouts/_notifications.html.haml
|
181
|
+
- spec/test_app/app/views/layouts/_session_navigation.html.haml
|
182
|
+
- spec/test_app/app/views/layouts/_stylesheets.html.haml
|
183
|
+
- spec/test_app/app/views/layouts/screen.html.haml
|
184
|
+
- spec/test_app/app/views/members/index.html.haml
|
185
|
+
- spec/test_app/app/views/passwords/edit.html.haml
|
186
|
+
- spec/test_app/app/views/passwords/new.html.haml
|
187
|
+
- spec/test_app/app/views/sessions/new.html.haml
|
188
|
+
- spec/test_app/app/views/users/_form.html.haml
|
189
|
+
- spec/test_app/app/views/users/_head.html.haml
|
190
|
+
- spec/test_app/app/views/users/edit.html.haml
|
191
|
+
- spec/test_app/app/views/users/new.html.haml
|
192
|
+
- spec/test_app/app/views/users/show.html.haml
|
193
|
+
- spec/test_app/assets/data.json
|
194
|
+
- spec/test_app/config/boot.rb
|
195
|
+
- spec/test_app/config/cucumber.yml
|
196
|
+
- spec/test_app/config/database.sample.yml
|
197
|
+
- spec/test_app/config/deploy.rb
|
198
|
+
- spec/test_app/config/deploy/production.rb
|
199
|
+
- spec/test_app/config/environment.rb
|
200
|
+
- spec/test_app/config/environments/cucumber.rb
|
201
|
+
- spec/test_app/config/environments/development.rb
|
202
|
+
- spec/test_app/config/environments/production.rb
|
203
|
+
- spec/test_app/config/environments/test.rb
|
204
|
+
- spec/test_app/config/initializers/backtrace_silencers.rb
|
205
|
+
- spec/test_app/config/initializers/clearance.rb
|
206
|
+
- spec/test_app/config/initializers/collect_hash.rb
|
207
|
+
- spec/test_app/config/initializers/collection_path_with_params.rb
|
208
|
+
- spec/test_app/config/initializers/cookie_verification_secret.rb
|
209
|
+
- spec/test_app/config/initializers/form_builder.rb
|
210
|
+
- spec/test_app/config/initializers/inflections.rb
|
211
|
+
- spec/test_app/config/initializers/invert_ordered_hash.rb
|
212
|
+
- spec/test_app/config/initializers/localize_textfield_input_for_numbers.rb
|
213
|
+
- spec/test_app/config/initializers/mime_types.rb
|
214
|
+
- spec/test_app/config/initializers/new_rails_defaults.rb
|
215
|
+
- spec/test_app/config/initializers/preload_associations.rb
|
216
|
+
- spec/test_app/config/initializers/query_diet.rb
|
217
|
+
- spec/test_app/config/initializers/saner_field_with_errors.rb
|
218
|
+
- spec/test_app/config/initializers/session_store.rb
|
219
|
+
- spec/test_app/config/locales/en.yml
|
220
|
+
- spec/test_app/config/preinitializer.rb
|
221
|
+
- spec/test_app/config/routes.rb
|
222
|
+
- spec/test_app/db/migrate/20110114164517_initial_tables.rb
|
223
|
+
- spec/test_app/db/migrate/20110118090858_add_profile_fields_to_user.rb
|
224
|
+
- spec/test_app/db/migrate/20110118092741_create_conference.rb
|
225
|
+
- spec/test_app/db/migrate/20110118093503_create_category.rb
|
226
|
+
- spec/test_app/db/migrate/20110118104438_create_conference_category.rb
|
227
|
+
- spec/test_app/db/migrate/20110118105959_create_attendance.rb
|
228
|
+
- spec/test_app/db/migrate/20110118122324_create_friendship_requests.rb
|
229
|
+
- spec/test_app/db/migrate/20110118162436_create_invitation.rb
|
230
|
+
- spec/test_app/db/migrate/20110118170347_create_friendships.rb
|
231
|
+
- spec/test_app/db/migrate/20110118193528_add_timestamps_to_conference.rb
|
232
|
+
- spec/test_app/db/migrate/20110119075012_set_unique_index_on_username_for_user.rb
|
233
|
+
- spec/test_app/db/migrate/20110119093458_remove_first_and_last_name_from_user.rb
|
234
|
+
- spec/test_app/db/migrate/20110119110857_add_missing_indexes.rb
|
235
|
+
- spec/test_app/db/migrate/20110119115751_add_uniqueness_of_name_to_category.rb
|
236
|
+
- spec/test_app/db/seeds.rb
|
237
|
+
- spec/test_app/lib/scripts/create_many_users_sql.rb
|
238
|
+
- spec/test_app/lib/tasks/cucumber.rake
|
239
|
+
- spec/test_app/lib/tasks/pending_migrations.rake
|
240
|
+
- spec/test_app/lib/tasks/rcov.rake
|
241
|
+
- spec/test_app/lib/tasks/rspec.rake
|
242
|
+
- spec/test_app/public/404.html
|
243
|
+
- spec/test_app/public/422.html
|
244
|
+
- spec/test_app/public/500.html
|
245
|
+
- spec/test_app/public/favicon.ico
|
246
|
+
- spec/test_app/public/images/ajax-loader.gif
|
247
|
+
- spec/test_app/public/images/icons/balloon-quotation.png
|
248
|
+
- spec/test_app/public/images/icons/balloon-sound.png
|
249
|
+
- spec/test_app/public/images/icons/balloon.png
|
250
|
+
- spec/test_app/public/images/icons/bell.png
|
251
|
+
- spec/test_app/public/images/icons/bin.png
|
252
|
+
- spec/test_app/public/images/icons/bookmark.png
|
253
|
+
- spec/test_app/public/images/icons/cake.png
|
254
|
+
- spec/test_app/public/images/icons/calendar-blue.png
|
255
|
+
- spec/test_app/public/images/icons/calendar-month.png
|
256
|
+
- spec/test_app/public/images/icons/calendar-month_light.png
|
257
|
+
- spec/test_app/public/images/icons/calendar-select.png
|
258
|
+
- spec/test_app/public/images/icons/card-address.png
|
259
|
+
- spec/test_app/public/images/icons/cards-address.png
|
260
|
+
- spec/test_app/public/images/icons/cross-script.png
|
261
|
+
- spec/test_app/public/images/icons/cross-small.png
|
262
|
+
- spec/test_app/public/images/icons/cross.png
|
263
|
+
- spec/test_app/public/images/icons/crown-silver.png
|
264
|
+
- spec/test_app/public/images/icons/crown.png
|
265
|
+
- spec/test_app/public/images/icons/dashboard.png
|
266
|
+
- spec/test_app/public/images/icons/document-list.png
|
267
|
+
- spec/test_app/public/images/icons/document-node.png
|
268
|
+
- spec/test_app/public/images/icons/document-number.png
|
269
|
+
- spec/test_app/public/images/icons/document-stamp.png
|
270
|
+
- spec/test_app/public/images/icons/document-task.png
|
271
|
+
- spec/test_app/public/images/icons/document-text.png
|
272
|
+
- spec/test_app/public/images/icons/fire.png
|
273
|
+
- spec/test_app/public/images/icons/folder-medium.png
|
274
|
+
- spec/test_app/public/images/icons/folder.png
|
275
|
+
- spec/test_app/public/images/icons/gear.png
|
276
|
+
- spec/test_app/public/images/icons/globe-green.png
|
277
|
+
- spec/test_app/public/images/icons/globe-green_light.png
|
278
|
+
- spec/test_app/public/images/icons/globe-medium-green.png
|
279
|
+
- spec/test_app/public/images/icons/heart-break.png
|
280
|
+
- spec/test_app/public/images/icons/heart.png
|
281
|
+
- spec/test_app/public/images/icons/images-flickr.png
|
282
|
+
- spec/test_app/public/images/icons/information-balloon.png
|
283
|
+
- spec/test_app/public/images/icons/key.png
|
284
|
+
- spec/test_app/public/images/icons/light-bulb.png
|
285
|
+
- spec/test_app/public/images/icons/lock--exclamation.png
|
286
|
+
- spec/test_app/public/images/icons/lock.png
|
287
|
+
- spec/test_app/public/images/icons/magnifier-medium.png
|
288
|
+
- spec/test_app/public/images/icons/magnifier.png
|
289
|
+
- spec/test_app/public/images/icons/mail.png
|
290
|
+
- spec/test_app/public/images/icons/paper-clip-small.png
|
291
|
+
- spec/test_app/public/images/icons/paper-clip.png
|
292
|
+
- spec/test_app/public/images/icons/pencil.png
|
293
|
+
- spec/test_app/public/images/icons/plus-circle.png
|
294
|
+
- spec/test_app/public/images/icons/plus-small.png
|
295
|
+
- spec/test_app/public/images/icons/plus.png
|
296
|
+
- spec/test_app/public/images/icons/printer.png
|
297
|
+
- spec/test_app/public/images/icons/question-balloon.png
|
298
|
+
- spec/test_app/public/images/icons/question-white.png
|
299
|
+
- spec/test_app/public/images/icons/question.png
|
300
|
+
- spec/test_app/public/images/icons/quill.png
|
301
|
+
- spec/test_app/public/images/icons/robot.png
|
302
|
+
- spec/test_app/public/images/icons/ruby_16.png
|
303
|
+
- spec/test_app/public/images/icons/ruby_2_16.png
|
304
|
+
- spec/test_app/public/images/icons/ruby_32.png
|
305
|
+
- spec/test_app/public/images/icons/show.png
|
306
|
+
- spec/test_app/public/images/icons/star.png
|
307
|
+
- spec/test_app/public/images/icons/sticky-note-text.png
|
308
|
+
- spec/test_app/public/images/icons/telephone-fax.png
|
309
|
+
- spec/test_app/public/images/icons/telephone-fax_light.png
|
310
|
+
- spec/test_app/public/images/icons/telephone.png
|
311
|
+
- spec/test_app/public/images/icons/telephone_light.png
|
312
|
+
- spec/test_app/public/images/icons/thumb-up.png
|
313
|
+
- spec/test_app/public/images/icons/thumb.png
|
314
|
+
- spec/test_app/public/images/icons/tick.png
|
315
|
+
- spec/test_app/public/images/icons/trophy-silver.png
|
316
|
+
- spec/test_app/public/images/icons/trophy.png
|
317
|
+
- spec/test_app/public/images/icons/user-gray.png
|
318
|
+
- spec/test_app/public/images/icons/user-gray_gray.png
|
319
|
+
- spec/test_app/public/images/icons/user-medium.png
|
320
|
+
- spec/test_app/public/images/icons/user-red.png
|
321
|
+
- spec/test_app/public/images/icons/users.png
|
322
|
+
- spec/test_app/public/images/icons/users_gray.png
|
323
|
+
- spec/test_app/public/images/icons/xfn.png
|
324
|
+
- spec/test_app/public/images/legend_bg.png
|
325
|
+
- spec/test_app/public/images/poshytip/tip-deepgray.png
|
326
|
+
- spec/test_app/public/images/poshytip/tip-deepgray_arrows.png
|
327
|
+
- spec/test_app/public/images/stripes_bottom_dark.png
|
328
|
+
- spec/test_app/public/images/stripes_top_dark.png
|
329
|
+
- spec/test_app/public/images/ui/ui-bg_diagonals-thick_18_b81900_40x40.png
|
330
|
+
- spec/test_app/public/images/ui/ui-bg_diagonals-thick_20_666666_40x40.png
|
331
|
+
- spec/test_app/public/images/ui/ui-bg_flat_10_000000_40x100.png
|
332
|
+
- spec/test_app/public/images/ui/ui-bg_glass_100_f6f6f6_1x400.png
|
333
|
+
- spec/test_app/public/images/ui/ui-bg_glass_100_fdf5ce_1x400.png
|
334
|
+
- spec/test_app/public/images/ui/ui-bg_glass_65_ffffff_1x400.png
|
335
|
+
- spec/test_app/public/images/ui/ui-bg_gloss-wave_35_f6a828_500x100.png
|
336
|
+
- spec/test_app/public/images/ui/ui-bg_highlight-soft_100_eeeeee_1x100.png
|
337
|
+
- spec/test_app/public/images/ui/ui-bg_highlight-soft_75_ffe45c_1x100.png
|
338
|
+
- spec/test_app/public/images/ui/ui-icons_222222_256x240.png
|
339
|
+
- spec/test_app/public/images/ui/ui-icons_228ef1_256x240.png
|
340
|
+
- spec/test_app/public/images/ui/ui-icons_ef8c08_256x240.png
|
341
|
+
- spec/test_app/public/images/ui/ui-icons_ffd27a_256x240.png
|
342
|
+
- spec/test_app/public/images/ui/ui-icons_ffffff_256x240.png
|
343
|
+
- spec/test_app/public/javascripts/application.js
|
344
|
+
- spec/test_app/public/javascripts/lib/jquery-1.4.2.min.js
|
345
|
+
- spec/test_app/public/javascripts/lib/jquery-ui-1.8.5.custom.min.js
|
346
|
+
- spec/test_app/public/javascripts/lib/jquery-ui-1.8.5.custom.min.txt
|
347
|
+
- spec/test_app/public/javascripts/lib/jquery-ui-timepicker-addon.js
|
348
|
+
- spec/test_app/public/javascripts/lib/jquery-ui-timepicker-addon.min.js
|
349
|
+
- spec/test_app/public/javascripts/lib/jquery.elastic.js
|
350
|
+
- spec/test_app/public/javascripts/lib/jquery.elastic.performance.js
|
351
|
+
- spec/test_app/public/javascripts/lib/jquery.elastic.source.js
|
352
|
+
- spec/test_app/public/javascripts/lib/jquery.poshytip.js
|
353
|
+
- spec/test_app/public/javascripts/lib/jquery.poshytip.min.js
|
354
|
+
- spec/test_app/public/javascripts/lib/jquery.ui.datepicker-de.js
|
355
|
+
- spec/test_app/public/javascripts/lib/jrails.js
|
356
|
+
- spec/test_app/public/javascripts/lib/multiple-autocomplete.js
|
357
|
+
- spec/test_app/public/javascripts/lib/underscore-min.js
|
358
|
+
- spec/test_app/public/javascripts/lib/underscore.js
|
359
|
+
- spec/test_app/public/robots.txt
|
360
|
+
- spec/test_app/public/stylesheets/lib/PIE.htc
|
361
|
+
- spec/test_app/public/stylesheets/lib/PIE_uncompressed.htc
|
362
|
+
- spec/test_app/public/stylesheets/lib/jquery-ui-timepicker-addon.css
|
363
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-darkgray/tip-darkgray.css
|
364
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-darkgray/tip-darkgray.png
|
365
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-darkgray/tip-darkgray_arrows.png
|
366
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-deepgray/tip-deepgray.css
|
367
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-green/tip-green.css
|
368
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-green/tip-green_arrows.gif
|
369
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-skyblue/tip-skyblue.css
|
370
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-skyblue/tip-skyblue.png
|
371
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-skyblue/tip-skyblue_arrows.png
|
372
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-twitter/tip-twitter.css
|
373
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-twitter/tip-twitter_arrows.gif
|
374
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-violet/tip-violet.css
|
375
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-violet/tip-violet.png
|
376
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-violet/tip-violet_arrows.png
|
377
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-yellow/tip-yellow.css
|
378
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-yellow/tip-yellow.png
|
379
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-yellow/tip-yellow_arrows.png
|
380
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-yellowsimple/tip-yellowsimple.css
|
381
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-yellowsimple/tip-yellowsimple_arrows.gif
|
382
|
+
- spec/test_app/public/stylesheets/lib/ui-lightness/jquery-ui-1.8.5.custom.css
|
383
|
+
- spec/test_app/public/stylesheets/sass/_mixins.sass
|
384
|
+
- spec/test_app/public/stylesheets/sass/_reset.sass
|
385
|
+
- spec/test_app/public/stylesheets/sass/print.sass
|
386
|
+
- spec/test_app/public/stylesheets/sass/screen.sass
|
387
|
+
- spec/test_app/script/about
|
388
|
+
- spec/test_app/script/autospec
|
389
|
+
- spec/test_app/script/console
|
390
|
+
- spec/test_app/script/cucumber
|
391
|
+
- spec/test_app/script/dbconsole
|
392
|
+
- spec/test_app/script/destroy
|
393
|
+
- spec/test_app/script/generate
|
394
|
+
- spec/test_app/script/performance/benchmarker
|
395
|
+
- spec/test_app/script/performance/profiler
|
396
|
+
- spec/test_app/script/plugin
|
397
|
+
- spec/test_app/script/runner
|
398
|
+
- spec/test_app/script/server
|
399
|
+
- spec/test_app/script/spec
|
400
|
+
homepage: https://github.com/makandra/serum-rails
|
401
|
+
licenses:
|
402
|
+
- MIT
|
403
|
+
metadata: {}
|
404
|
+
post_install_message:
|
405
|
+
rdoc_options: []
|
406
|
+
require_paths:
|
407
|
+
- lib
|
408
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
409
|
+
requirements:
|
410
|
+
- - ! '>='
|
411
|
+
- !ruby/object:Gem::Version
|
412
|
+
version: '0'
|
413
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
414
|
+
requirements:
|
415
|
+
- - ! '>='
|
416
|
+
- !ruby/object:Gem::Version
|
417
|
+
version: '0'
|
418
|
+
requirements: []
|
419
|
+
rubyforge_project:
|
420
|
+
rubygems_version: 2.0.6
|
421
|
+
signing_key:
|
422
|
+
specification_version: 4
|
423
|
+
summary: Scans a Rails application for metrics relevant to security audits
|
424
|
+
test_files:
|
425
|
+
- spec/serum/rails/metrics_spec.rb
|
426
|
+
- spec/spec_helper.rb
|
427
|
+
- spec/test_app/Capfile
|
428
|
+
- spec/test_app/Gemfile
|
429
|
+
- spec/test_app/Gemfile.lock
|
430
|
+
- spec/test_app/Rakefile
|
431
|
+
- spec/test_app/app/controllers/admin/categories_controller.rb
|
432
|
+
- spec/test_app/app/controllers/admin/users_controller.rb
|
433
|
+
- spec/test_app/app/controllers/application_controller.rb
|
434
|
+
- spec/test_app/app/controllers/application_controller/i18n_trait.rb
|
435
|
+
- spec/test_app/app/controllers/application_controller/navigation_trait.rb
|
436
|
+
- spec/test_app/app/controllers/application_controller/security_trait.rb
|
437
|
+
- spec/test_app/app/controllers/application_controller/security_trait/disabled_clearance_accounts_trait.rb
|
438
|
+
- spec/test_app/app/controllers/conferences_controller.rb
|
439
|
+
- spec/test_app/app/controllers/friendship_requests_controller.rb
|
440
|
+
- spec/test_app/app/controllers/invitations_controller.rb
|
441
|
+
- spec/test_app/app/controllers/members_controller.rb
|
442
|
+
- spec/test_app/app/controllers/passwords_controller.rb
|
443
|
+
- spec/test_app/app/controllers/sessions_controller.rb
|
444
|
+
- spec/test_app/app/controllers/shared/boring_controller_trait.rb
|
445
|
+
- spec/test_app/app/controllers/shared/boring_controller_trait/deletable_trait.rb
|
446
|
+
- spec/test_app/app/controllers/shared/boring_controller_trait/flash_trait.rb
|
447
|
+
- spec/test_app/app/controllers/shared/boring_controller_trait/helpers_trait.rb
|
448
|
+
- spec/test_app/app/controllers/shared/boring_controller_trait/index_trait.rb
|
449
|
+
- spec/test_app/app/controllers/shared/boring_controller_trait/log_changes_trait.rb
|
450
|
+
- spec/test_app/app/controllers/users_controller.rb
|
451
|
+
- spec/test_app/app/controllers/ws/api_controller.rb
|
452
|
+
- spec/test_app/app/controllers/ws/api_controller/formatters_trait.rb
|
453
|
+
- spec/test_app/app/controllers/ws/api_controller/parsers_trait.rb
|
454
|
+
- spec/test_app/app/controllers/ws/attendees_controller.rb
|
455
|
+
- spec/test_app/app/controllers/ws/categories_controller.rb
|
456
|
+
- spec/test_app/app/controllers/ws/conferences_controller.rb
|
457
|
+
- spec/test_app/app/controllers/ws/contacts_controller.rb
|
458
|
+
- spec/test_app/app/controllers/ws/factory_controller.rb
|
459
|
+
- spec/test_app/app/controllers/ws/members_controller.rb
|
460
|
+
- spec/test_app/app/controllers/ws/series_controller.rb
|
461
|
+
- spec/test_app/app/controllers/ws/tests_controller.rb
|
462
|
+
- spec/test_app/app/helpers/application_helper.rb
|
463
|
+
- spec/test_app/app/helpers/mail_helper.rb
|
464
|
+
- spec/test_app/app/helpers/tags_helper.rb
|
465
|
+
- spec/test_app/app/helpers/user_helper.rb
|
466
|
+
- spec/test_app/app/models/attendance.rb
|
467
|
+
- spec/test_app/app/models/category.rb
|
468
|
+
- spec/test_app/app/models/category/ancestry_trait.rb
|
469
|
+
- spec/test_app/app/models/conference.rb
|
470
|
+
- spec/test_app/app/models/conference/attendance_trait.rb
|
471
|
+
- spec/test_app/app/models/conference/categories_trait.rb
|
472
|
+
- spec/test_app/app/models/conference/icalendar_trait.rb
|
473
|
+
- spec/test_app/app/models/conference/search_trait.rb
|
474
|
+
- spec/test_app/app/models/conference_category.rb
|
475
|
+
- spec/test_app/app/models/conference_search.rb
|
476
|
+
- spec/test_app/app/models/error.rb
|
477
|
+
- spec/test_app/app/models/friendship.rb
|
478
|
+
- spec/test_app/app/models/friendship_request.rb
|
479
|
+
- spec/test_app/app/models/invitation.rb
|
480
|
+
- spec/test_app/app/models/member_search.rb
|
481
|
+
- spec/test_app/app/models/navigation.rb
|
482
|
+
- spec/test_app/app/models/patterns.rb
|
483
|
+
- spec/test_app/app/models/permissions.rb
|
484
|
+
- spec/test_app/app/models/shared/afterlife_trait.rb
|
485
|
+
- spec/test_app/app/models/shared/choice_trait.rb
|
486
|
+
- spec/test_app/app/models/shared/deletable_trait.rb
|
487
|
+
- spec/test_app/app/models/shared/flag_trait.rb
|
488
|
+
- spec/test_app/app/models/shared/indestructible_trait.rb
|
489
|
+
- spec/test_app/app/models/shared/list_field_trait.rb
|
490
|
+
- spec/test_app/app/models/shared/person_name_trait.rb
|
491
|
+
- spec/test_app/app/models/shared/searchable_trait.rb
|
492
|
+
- spec/test_app/app/models/shared/sortable_trait.rb
|
493
|
+
- spec/test_app/app/models/user.rb
|
494
|
+
- spec/test_app/app/models/user/authentication_trait.rb
|
495
|
+
- spec/test_app/app/models/user/authorization_trait.rb
|
496
|
+
- spec/test_app/app/models/user/friends_trait.rb
|
497
|
+
- spec/test_app/app/models/user/search_trait.rb
|
498
|
+
- spec/test_app/app/models/util.rb
|
499
|
+
- spec/test_app/app/views/admin/categories/_form.html.haml
|
500
|
+
- spec/test_app/app/views/admin/categories/_list.html.haml
|
501
|
+
- spec/test_app/app/views/admin/categories/edit.html.haml
|
502
|
+
- spec/test_app/app/views/admin/categories/index.html.haml
|
503
|
+
- spec/test_app/app/views/admin/categories/new.html.haml
|
504
|
+
- spec/test_app/app/views/admin/categories/show.html.haml
|
505
|
+
- spec/test_app/app/views/admin/users/_form.html.haml
|
506
|
+
- spec/test_app/app/views/admin/users/_head.html.haml
|
507
|
+
- spec/test_app/app/views/admin/users/_list.html.haml
|
508
|
+
- spec/test_app/app/views/admin/users/_search.html.haml
|
509
|
+
- spec/test_app/app/views/admin/users/deleted.html.haml
|
510
|
+
- spec/test_app/app/views/admin/users/edit.html.haml
|
511
|
+
- spec/test_app/app/views/admin/users/index.html.haml
|
512
|
+
- spec/test_app/app/views/admin/users/new.html.haml
|
513
|
+
- spec/test_app/app/views/clearance_mailer/change_password.erb
|
514
|
+
- spec/test_app/app/views/conferences/_categories_list.html.haml
|
515
|
+
- spec/test_app/app/views/conferences/_form.html.haml
|
516
|
+
- spec/test_app/app/views/conferences/_head.html.haml
|
517
|
+
- spec/test_app/app/views/conferences/_list.html.haml
|
518
|
+
- spec/test_app/app/views/conferences/_search.html.haml
|
519
|
+
- spec/test_app/app/views/conferences/edit.html.haml
|
520
|
+
- spec/test_app/app/views/conferences/index.html.haml
|
521
|
+
- spec/test_app/app/views/conferences/new.html.haml
|
522
|
+
- spec/test_app/app/views/conferences/search.html.haml
|
523
|
+
- spec/test_app/app/views/conferences/show.html.haml
|
524
|
+
- spec/test_app/app/views/invitations/index.html.haml
|
525
|
+
- spec/test_app/app/views/invitations/new.html.haml
|
526
|
+
- spec/test_app/app/views/layouts/_flashes.html.haml
|
527
|
+
- spec/test_app/app/views/layouts/_javascript_requirement.html.haml
|
528
|
+
- spec/test_app/app/views/layouts/_javascripts.html.haml
|
529
|
+
- spec/test_app/app/views/layouts/_notifications.html.haml
|
530
|
+
- spec/test_app/app/views/layouts/_session_navigation.html.haml
|
531
|
+
- spec/test_app/app/views/layouts/_stylesheets.html.haml
|
532
|
+
- spec/test_app/app/views/layouts/screen.html.haml
|
533
|
+
- spec/test_app/app/views/members/index.html.haml
|
534
|
+
- spec/test_app/app/views/passwords/edit.html.haml
|
535
|
+
- spec/test_app/app/views/passwords/new.html.haml
|
536
|
+
- spec/test_app/app/views/sessions/new.html.haml
|
537
|
+
- spec/test_app/app/views/users/_form.html.haml
|
538
|
+
- spec/test_app/app/views/users/_head.html.haml
|
539
|
+
- spec/test_app/app/views/users/edit.html.haml
|
540
|
+
- spec/test_app/app/views/users/new.html.haml
|
541
|
+
- spec/test_app/app/views/users/show.html.haml
|
542
|
+
- spec/test_app/assets/data.json
|
543
|
+
- spec/test_app/config/boot.rb
|
544
|
+
- spec/test_app/config/cucumber.yml
|
545
|
+
- spec/test_app/config/database.sample.yml
|
546
|
+
- spec/test_app/config/deploy.rb
|
547
|
+
- spec/test_app/config/deploy/production.rb
|
548
|
+
- spec/test_app/config/environment.rb
|
549
|
+
- spec/test_app/config/environments/cucumber.rb
|
550
|
+
- spec/test_app/config/environments/development.rb
|
551
|
+
- spec/test_app/config/environments/production.rb
|
552
|
+
- spec/test_app/config/environments/test.rb
|
553
|
+
- spec/test_app/config/initializers/backtrace_silencers.rb
|
554
|
+
- spec/test_app/config/initializers/clearance.rb
|
555
|
+
- spec/test_app/config/initializers/collect_hash.rb
|
556
|
+
- spec/test_app/config/initializers/collection_path_with_params.rb
|
557
|
+
- spec/test_app/config/initializers/cookie_verification_secret.rb
|
558
|
+
- spec/test_app/config/initializers/form_builder.rb
|
559
|
+
- spec/test_app/config/initializers/inflections.rb
|
560
|
+
- spec/test_app/config/initializers/invert_ordered_hash.rb
|
561
|
+
- spec/test_app/config/initializers/localize_textfield_input_for_numbers.rb
|
562
|
+
- spec/test_app/config/initializers/mime_types.rb
|
563
|
+
- spec/test_app/config/initializers/new_rails_defaults.rb
|
564
|
+
- spec/test_app/config/initializers/preload_associations.rb
|
565
|
+
- spec/test_app/config/initializers/query_diet.rb
|
566
|
+
- spec/test_app/config/initializers/saner_field_with_errors.rb
|
567
|
+
- spec/test_app/config/initializers/session_store.rb
|
568
|
+
- spec/test_app/config/locales/en.yml
|
569
|
+
- spec/test_app/config/preinitializer.rb
|
570
|
+
- spec/test_app/config/routes.rb
|
571
|
+
- spec/test_app/db/migrate/20110114164517_initial_tables.rb
|
572
|
+
- spec/test_app/db/migrate/20110118090858_add_profile_fields_to_user.rb
|
573
|
+
- spec/test_app/db/migrate/20110118092741_create_conference.rb
|
574
|
+
- spec/test_app/db/migrate/20110118093503_create_category.rb
|
575
|
+
- spec/test_app/db/migrate/20110118104438_create_conference_category.rb
|
576
|
+
- spec/test_app/db/migrate/20110118105959_create_attendance.rb
|
577
|
+
- spec/test_app/db/migrate/20110118122324_create_friendship_requests.rb
|
578
|
+
- spec/test_app/db/migrate/20110118162436_create_invitation.rb
|
579
|
+
- spec/test_app/db/migrate/20110118170347_create_friendships.rb
|
580
|
+
- spec/test_app/db/migrate/20110118193528_add_timestamps_to_conference.rb
|
581
|
+
- spec/test_app/db/migrate/20110119075012_set_unique_index_on_username_for_user.rb
|
582
|
+
- spec/test_app/db/migrate/20110119093458_remove_first_and_last_name_from_user.rb
|
583
|
+
- spec/test_app/db/migrate/20110119110857_add_missing_indexes.rb
|
584
|
+
- spec/test_app/db/migrate/20110119115751_add_uniqueness_of_name_to_category.rb
|
585
|
+
- spec/test_app/db/seeds.rb
|
586
|
+
- spec/test_app/lib/scripts/create_many_users_sql.rb
|
587
|
+
- spec/test_app/lib/tasks/cucumber.rake
|
588
|
+
- spec/test_app/lib/tasks/pending_migrations.rake
|
589
|
+
- spec/test_app/lib/tasks/rcov.rake
|
590
|
+
- spec/test_app/lib/tasks/rspec.rake
|
591
|
+
- spec/test_app/public/404.html
|
592
|
+
- spec/test_app/public/422.html
|
593
|
+
- spec/test_app/public/500.html
|
594
|
+
- spec/test_app/public/favicon.ico
|
595
|
+
- spec/test_app/public/images/ajax-loader.gif
|
596
|
+
- spec/test_app/public/images/icons/balloon-quotation.png
|
597
|
+
- spec/test_app/public/images/icons/balloon-sound.png
|
598
|
+
- spec/test_app/public/images/icons/balloon.png
|
599
|
+
- spec/test_app/public/images/icons/bell.png
|
600
|
+
- spec/test_app/public/images/icons/bin.png
|
601
|
+
- spec/test_app/public/images/icons/bookmark.png
|
602
|
+
- spec/test_app/public/images/icons/cake.png
|
603
|
+
- spec/test_app/public/images/icons/calendar-blue.png
|
604
|
+
- spec/test_app/public/images/icons/calendar-month.png
|
605
|
+
- spec/test_app/public/images/icons/calendar-month_light.png
|
606
|
+
- spec/test_app/public/images/icons/calendar-select.png
|
607
|
+
- spec/test_app/public/images/icons/card-address.png
|
608
|
+
- spec/test_app/public/images/icons/cards-address.png
|
609
|
+
- spec/test_app/public/images/icons/cross-script.png
|
610
|
+
- spec/test_app/public/images/icons/cross-small.png
|
611
|
+
- spec/test_app/public/images/icons/cross.png
|
612
|
+
- spec/test_app/public/images/icons/crown-silver.png
|
613
|
+
- spec/test_app/public/images/icons/crown.png
|
614
|
+
- spec/test_app/public/images/icons/dashboard.png
|
615
|
+
- spec/test_app/public/images/icons/document-list.png
|
616
|
+
- spec/test_app/public/images/icons/document-node.png
|
617
|
+
- spec/test_app/public/images/icons/document-number.png
|
618
|
+
- spec/test_app/public/images/icons/document-stamp.png
|
619
|
+
- spec/test_app/public/images/icons/document-task.png
|
620
|
+
- spec/test_app/public/images/icons/document-text.png
|
621
|
+
- spec/test_app/public/images/icons/fire.png
|
622
|
+
- spec/test_app/public/images/icons/folder-medium.png
|
623
|
+
- spec/test_app/public/images/icons/folder.png
|
624
|
+
- spec/test_app/public/images/icons/gear.png
|
625
|
+
- spec/test_app/public/images/icons/globe-green.png
|
626
|
+
- spec/test_app/public/images/icons/globe-green_light.png
|
627
|
+
- spec/test_app/public/images/icons/globe-medium-green.png
|
628
|
+
- spec/test_app/public/images/icons/heart-break.png
|
629
|
+
- spec/test_app/public/images/icons/heart.png
|
630
|
+
- spec/test_app/public/images/icons/images-flickr.png
|
631
|
+
- spec/test_app/public/images/icons/information-balloon.png
|
632
|
+
- spec/test_app/public/images/icons/key.png
|
633
|
+
- spec/test_app/public/images/icons/light-bulb.png
|
634
|
+
- spec/test_app/public/images/icons/lock--exclamation.png
|
635
|
+
- spec/test_app/public/images/icons/lock.png
|
636
|
+
- spec/test_app/public/images/icons/magnifier-medium.png
|
637
|
+
- spec/test_app/public/images/icons/magnifier.png
|
638
|
+
- spec/test_app/public/images/icons/mail.png
|
639
|
+
- spec/test_app/public/images/icons/paper-clip-small.png
|
640
|
+
- spec/test_app/public/images/icons/paper-clip.png
|
641
|
+
- spec/test_app/public/images/icons/pencil.png
|
642
|
+
- spec/test_app/public/images/icons/plus-circle.png
|
643
|
+
- spec/test_app/public/images/icons/plus-small.png
|
644
|
+
- spec/test_app/public/images/icons/plus.png
|
645
|
+
- spec/test_app/public/images/icons/printer.png
|
646
|
+
- spec/test_app/public/images/icons/question-balloon.png
|
647
|
+
- spec/test_app/public/images/icons/question-white.png
|
648
|
+
- spec/test_app/public/images/icons/question.png
|
649
|
+
- spec/test_app/public/images/icons/quill.png
|
650
|
+
- spec/test_app/public/images/icons/robot.png
|
651
|
+
- spec/test_app/public/images/icons/ruby_16.png
|
652
|
+
- spec/test_app/public/images/icons/ruby_2_16.png
|
653
|
+
- spec/test_app/public/images/icons/ruby_32.png
|
654
|
+
- spec/test_app/public/images/icons/show.png
|
655
|
+
- spec/test_app/public/images/icons/star.png
|
656
|
+
- spec/test_app/public/images/icons/sticky-note-text.png
|
657
|
+
- spec/test_app/public/images/icons/telephone-fax.png
|
658
|
+
- spec/test_app/public/images/icons/telephone-fax_light.png
|
659
|
+
- spec/test_app/public/images/icons/telephone.png
|
660
|
+
- spec/test_app/public/images/icons/telephone_light.png
|
661
|
+
- spec/test_app/public/images/icons/thumb-up.png
|
662
|
+
- spec/test_app/public/images/icons/thumb.png
|
663
|
+
- spec/test_app/public/images/icons/tick.png
|
664
|
+
- spec/test_app/public/images/icons/trophy-silver.png
|
665
|
+
- spec/test_app/public/images/icons/trophy.png
|
666
|
+
- spec/test_app/public/images/icons/user-gray.png
|
667
|
+
- spec/test_app/public/images/icons/user-gray_gray.png
|
668
|
+
- spec/test_app/public/images/icons/user-medium.png
|
669
|
+
- spec/test_app/public/images/icons/user-red.png
|
670
|
+
- spec/test_app/public/images/icons/users.png
|
671
|
+
- spec/test_app/public/images/icons/users_gray.png
|
672
|
+
- spec/test_app/public/images/icons/xfn.png
|
673
|
+
- spec/test_app/public/images/legend_bg.png
|
674
|
+
- spec/test_app/public/images/poshytip/tip-deepgray.png
|
675
|
+
- spec/test_app/public/images/poshytip/tip-deepgray_arrows.png
|
676
|
+
- spec/test_app/public/images/stripes_bottom_dark.png
|
677
|
+
- spec/test_app/public/images/stripes_top_dark.png
|
678
|
+
- spec/test_app/public/images/ui/ui-bg_diagonals-thick_18_b81900_40x40.png
|
679
|
+
- spec/test_app/public/images/ui/ui-bg_diagonals-thick_20_666666_40x40.png
|
680
|
+
- spec/test_app/public/images/ui/ui-bg_flat_10_000000_40x100.png
|
681
|
+
- spec/test_app/public/images/ui/ui-bg_glass_100_f6f6f6_1x400.png
|
682
|
+
- spec/test_app/public/images/ui/ui-bg_glass_100_fdf5ce_1x400.png
|
683
|
+
- spec/test_app/public/images/ui/ui-bg_glass_65_ffffff_1x400.png
|
684
|
+
- spec/test_app/public/images/ui/ui-bg_gloss-wave_35_f6a828_500x100.png
|
685
|
+
- spec/test_app/public/images/ui/ui-bg_highlight-soft_100_eeeeee_1x100.png
|
686
|
+
- spec/test_app/public/images/ui/ui-bg_highlight-soft_75_ffe45c_1x100.png
|
687
|
+
- spec/test_app/public/images/ui/ui-icons_222222_256x240.png
|
688
|
+
- spec/test_app/public/images/ui/ui-icons_228ef1_256x240.png
|
689
|
+
- spec/test_app/public/images/ui/ui-icons_ef8c08_256x240.png
|
690
|
+
- spec/test_app/public/images/ui/ui-icons_ffd27a_256x240.png
|
691
|
+
- spec/test_app/public/images/ui/ui-icons_ffffff_256x240.png
|
692
|
+
- spec/test_app/public/javascripts/application.js
|
693
|
+
- spec/test_app/public/javascripts/lib/jquery-1.4.2.min.js
|
694
|
+
- spec/test_app/public/javascripts/lib/jquery-ui-1.8.5.custom.min.js
|
695
|
+
- spec/test_app/public/javascripts/lib/jquery-ui-1.8.5.custom.min.txt
|
696
|
+
- spec/test_app/public/javascripts/lib/jquery-ui-timepicker-addon.js
|
697
|
+
- spec/test_app/public/javascripts/lib/jquery-ui-timepicker-addon.min.js
|
698
|
+
- spec/test_app/public/javascripts/lib/jquery.elastic.js
|
699
|
+
- spec/test_app/public/javascripts/lib/jquery.elastic.performance.js
|
700
|
+
- spec/test_app/public/javascripts/lib/jquery.elastic.source.js
|
701
|
+
- spec/test_app/public/javascripts/lib/jquery.poshytip.js
|
702
|
+
- spec/test_app/public/javascripts/lib/jquery.poshytip.min.js
|
703
|
+
- spec/test_app/public/javascripts/lib/jquery.ui.datepicker-de.js
|
704
|
+
- spec/test_app/public/javascripts/lib/jrails.js
|
705
|
+
- spec/test_app/public/javascripts/lib/multiple-autocomplete.js
|
706
|
+
- spec/test_app/public/javascripts/lib/underscore-min.js
|
707
|
+
- spec/test_app/public/javascripts/lib/underscore.js
|
708
|
+
- spec/test_app/public/robots.txt
|
709
|
+
- spec/test_app/public/stylesheets/lib/PIE.htc
|
710
|
+
- spec/test_app/public/stylesheets/lib/PIE_uncompressed.htc
|
711
|
+
- spec/test_app/public/stylesheets/lib/jquery-ui-timepicker-addon.css
|
712
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-darkgray/tip-darkgray.css
|
713
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-darkgray/tip-darkgray.png
|
714
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-darkgray/tip-darkgray_arrows.png
|
715
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-deepgray/tip-deepgray.css
|
716
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-green/tip-green.css
|
717
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-green/tip-green_arrows.gif
|
718
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-skyblue/tip-skyblue.css
|
719
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-skyblue/tip-skyblue.png
|
720
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-skyblue/tip-skyblue_arrows.png
|
721
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-twitter/tip-twitter.css
|
722
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-twitter/tip-twitter_arrows.gif
|
723
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-violet/tip-violet.css
|
724
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-violet/tip-violet.png
|
725
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-violet/tip-violet_arrows.png
|
726
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-yellow/tip-yellow.css
|
727
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-yellow/tip-yellow.png
|
728
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-yellow/tip-yellow_arrows.png
|
729
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-yellowsimple/tip-yellowsimple.css
|
730
|
+
- spec/test_app/public/stylesheets/lib/poshytip/tip-yellowsimple/tip-yellowsimple_arrows.gif
|
731
|
+
- spec/test_app/public/stylesheets/lib/ui-lightness/jquery-ui-1.8.5.custom.css
|
732
|
+
- spec/test_app/public/stylesheets/sass/_mixins.sass
|
733
|
+
- spec/test_app/public/stylesheets/sass/_reset.sass
|
734
|
+
- spec/test_app/public/stylesheets/sass/print.sass
|
735
|
+
- spec/test_app/public/stylesheets/sass/screen.sass
|
736
|
+
- spec/test_app/script/about
|
737
|
+
- spec/test_app/script/autospec
|
738
|
+
- spec/test_app/script/console
|
739
|
+
- spec/test_app/script/cucumber
|
740
|
+
- spec/test_app/script/dbconsole
|
741
|
+
- spec/test_app/script/destroy
|
742
|
+
- spec/test_app/script/generate
|
743
|
+
- spec/test_app/script/performance/benchmarker
|
744
|
+
- spec/test_app/script/performance/profiler
|
745
|
+
- spec/test_app/script/plugin
|
746
|
+
- spec/test_app/script/runner
|
747
|
+
- spec/test_app/script/server
|
748
|
+
- spec/test_app/script/spec
|