serum-rails 0.1.1 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +6 -14
- data/.ruby-version +2 -0
- data/Gemfile.lock +11 -10
- data/lib/serum/rails/app.rb +20 -0
- data/lib/serum/rails/metrics.rb +10 -6
- data/lib/serum/rails/version.rb +2 -2
- data/spec/serum/rails/metrics_spec.rb +28 -17
- data/spec/{test_app → test_apps/rails-2-3}/Capfile +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/Gemfile +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/Gemfile.lock +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/Rakefile +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/admin/categories_controller.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/admin/users_controller.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/application_controller.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/application_controller/i18n_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/application_controller/navigation_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/application_controller/security_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/application_controller/security_trait/disabled_clearance_accounts_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/conferences_controller.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/friendship_requests_controller.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/invitations_controller.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/members_controller.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/passwords_controller.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/sessions_controller.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/shared/boring_controller_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/shared/boring_controller_trait/deletable_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/shared/boring_controller_trait/flash_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/shared/boring_controller_trait/helpers_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/shared/boring_controller_trait/index_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/shared/boring_controller_trait/log_changes_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/users_controller.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/ws/api_controller.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/ws/api_controller/formatters_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/ws/api_controller/parsers_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/ws/attendees_controller.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/ws/categories_controller.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/ws/conferences_controller.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/ws/contacts_controller.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/ws/factory_controller.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/ws/members_controller.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/ws/series_controller.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/controllers/ws/tests_controller.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/helpers/application_helper.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/helpers/mail_helper.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/helpers/tags_helper.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/helpers/user_helper.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/attendance.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/category.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/category/ancestry_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/conference.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/conference/attendance_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/conference/categories_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/conference/icalendar_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/conference/search_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/conference_category.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/conference_search.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/error.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/friendship.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/friendship_request.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/invitation.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/member_search.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/navigation.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/patterns.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/permissions.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/shared/afterlife_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/shared/choice_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/shared/deletable_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/shared/flag_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/shared/indestructible_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/shared/list_field_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/shared/person_name_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/shared/searchable_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/shared/sortable_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/user.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/user/authentication_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/user/authorization_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/user/friends_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/user/search_trait.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/models/util.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/admin/categories/_form.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/admin/categories/_list.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/admin/categories/edit.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/admin/categories/index.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/admin/categories/new.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/admin/categories/show.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/admin/users/_form.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/admin/users/_head.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/admin/users/_list.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/admin/users/_search.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/admin/users/deleted.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/admin/users/edit.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/admin/users/index.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/admin/users/new.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/clearance_mailer/change_password.erb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/conferences/_categories_list.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/conferences/_form.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/conferences/_head.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/conferences/_list.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/conferences/_search.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/conferences/edit.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/conferences/index.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/conferences/new.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/conferences/search.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/conferences/show.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/invitations/index.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/invitations/new.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/layouts/_flashes.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/layouts/_javascript_requirement.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/layouts/_javascripts.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/layouts/_notifications.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/layouts/_session_navigation.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/layouts/_stylesheets.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/layouts/screen.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/members/index.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/passwords/edit.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/passwords/new.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/sessions/new.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/users/_form.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/users/_head.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/users/edit.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/users/new.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/app/views/users/show.html.haml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/assets/data.json +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/boot.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/cucumber.yml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/database.sample.yml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/deploy.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/deploy/production.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/environment.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/environments/cucumber.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/environments/development.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/environments/production.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/environments/test.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/initializers/backtrace_silencers.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/initializers/clearance.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/initializers/collect_hash.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/initializers/collection_path_with_params.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/initializers/cookie_verification_secret.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/initializers/form_builder.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/initializers/inflections.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/initializers/invert_ordered_hash.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/initializers/localize_textfield_input_for_numbers.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/initializers/mime_types.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/initializers/new_rails_defaults.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/initializers/preload_associations.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/initializers/query_diet.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/initializers/saner_field_with_errors.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/initializers/session_store.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/locales/en.yml +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/preinitializer.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/config/routes.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/db/migrate/20110114164517_initial_tables.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/db/migrate/20110118090858_add_profile_fields_to_user.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/db/migrate/20110118092741_create_conference.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/db/migrate/20110118093503_create_category.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/db/migrate/20110118104438_create_conference_category.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/db/migrate/20110118105959_create_attendance.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/db/migrate/20110118122324_create_friendship_requests.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/db/migrate/20110118162436_create_invitation.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/db/migrate/20110118170347_create_friendships.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/db/migrate/20110118193528_add_timestamps_to_conference.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/db/migrate/20110119075012_set_unique_index_on_username_for_user.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/db/migrate/20110119093458_remove_first_and_last_name_from_user.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/db/migrate/20110119110857_add_missing_indexes.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/db/migrate/20110119115751_add_uniqueness_of_name_to_category.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/db/seeds.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/lib/scripts/create_many_users_sql.rb +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/lib/tasks/cucumber.rake +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/lib/tasks/pending_migrations.rake +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/lib/tasks/rcov.rake +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/lib/tasks/rspec.rake +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/404.html +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/422.html +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/500.html +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/favicon.ico +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/ajax-loader.gif +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/balloon-quotation.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/balloon-sound.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/balloon.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/bell.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/bin.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/bookmark.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/cake.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/calendar-blue.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/calendar-month.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/calendar-month_light.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/calendar-select.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/card-address.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/cards-address.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/cross-script.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/cross-small.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/cross.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/crown-silver.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/crown.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/dashboard.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/document-list.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/document-node.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/document-number.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/document-stamp.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/document-task.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/document-text.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/fire.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/folder-medium.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/folder.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/gear.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/globe-green.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/globe-green_light.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/globe-medium-green.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/heart-break.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/heart.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/images-flickr.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/information-balloon.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/key.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/light-bulb.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/lock--exclamation.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/lock.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/magnifier-medium.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/magnifier.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/mail.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/paper-clip-small.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/paper-clip.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/pencil.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/plus-circle.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/plus-small.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/plus.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/printer.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/question-balloon.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/question-white.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/question.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/quill.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/robot.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/ruby_16.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/ruby_2_16.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/ruby_32.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/show.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/star.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/sticky-note-text.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/telephone-fax.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/telephone-fax_light.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/telephone.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/telephone_light.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/thumb-up.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/thumb.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/tick.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/trophy-silver.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/trophy.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/user-gray.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/user-gray_gray.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/user-medium.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/user-red.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/users.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/users_gray.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/icons/xfn.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/legend_bg.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/poshytip/tip-deepgray.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/poshytip/tip-deepgray_arrows.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/stripes_bottom_dark.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/stripes_top_dark.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/ui/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/ui/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/ui/ui-bg_flat_10_000000_40x100.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/ui/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/ui/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/ui/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/ui/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/ui/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/ui/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/ui/ui-icons_222222_256x240.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/ui/ui-icons_228ef1_256x240.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/ui/ui-icons_ef8c08_256x240.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/ui/ui-icons_ffd27a_256x240.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/images/ui/ui-icons_ffffff_256x240.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/javascripts/application.js +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/javascripts/lib/jquery-1.4.2.min.js +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/javascripts/lib/jquery-ui-1.8.5.custom.min.js +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/javascripts/lib/jquery-ui-1.8.5.custom.min.txt +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/javascripts/lib/jquery-ui-timepicker-addon.js +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/javascripts/lib/jquery-ui-timepicker-addon.min.js +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/javascripts/lib/jquery.elastic.js +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/javascripts/lib/jquery.elastic.performance.js +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/javascripts/lib/jquery.elastic.source.js +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/javascripts/lib/jquery.poshytip.js +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/javascripts/lib/jquery.poshytip.min.js +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/javascripts/lib/jquery.ui.datepicker-de.js +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/javascripts/lib/jrails.js +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/javascripts/lib/multiple-autocomplete.js +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/javascripts/lib/underscore-min.js +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/javascripts/lib/underscore.js +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/robots.txt +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/lib/PIE.htc +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/lib/PIE_uncompressed.htc +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/lib/jquery-ui-timepicker-addon.css +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/lib/poshytip/tip-darkgray/tip-darkgray.css +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/lib/poshytip/tip-darkgray/tip-darkgray.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/lib/poshytip/tip-darkgray/tip-darkgray_arrows.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/lib/poshytip/tip-deepgray/tip-deepgray.css +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/lib/poshytip/tip-green/tip-green.css +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/lib/poshytip/tip-green/tip-green_arrows.gif +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/lib/poshytip/tip-skyblue/tip-skyblue.css +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/lib/poshytip/tip-skyblue/tip-skyblue.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/lib/poshytip/tip-skyblue/tip-skyblue_arrows.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/lib/poshytip/tip-twitter/tip-twitter.css +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/lib/poshytip/tip-twitter/tip-twitter_arrows.gif +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/lib/poshytip/tip-violet/tip-violet.css +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/lib/poshytip/tip-violet/tip-violet.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/lib/poshytip/tip-violet/tip-violet_arrows.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/lib/poshytip/tip-yellow/tip-yellow.css +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/lib/poshytip/tip-yellow/tip-yellow.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/lib/poshytip/tip-yellow/tip-yellow_arrows.png +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/lib/poshytip/tip-yellowsimple/tip-yellowsimple.css +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/lib/poshytip/tip-yellowsimple/tip-yellowsimple_arrows.gif +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/lib/ui-lightness/jquery-ui-1.8.5.custom.css +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/sass/_mixins.sass +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/sass/_reset.sass +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/sass/print.sass +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/public/stylesheets/sass/screen.sass +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/script/about +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/script/autospec +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/script/console +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/script/cucumber +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/script/dbconsole +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/script/destroy +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/script/generate +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/script/performance/benchmarker +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/script/performance/profiler +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/script/plugin +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/script/runner +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/script/server +0 -0
- data/spec/{test_app → test_apps/rails-2-3}/script/spec +0 -0
- data/spec/test_apps/rails-4-1/.gitignore +16 -0
- data/spec/test_apps/rails-4-1/Gemfile +40 -0
- data/spec/test_apps/rails-4-1/Gemfile.lock +131 -0
- data/spec/test_apps/rails-4-1/README.rdoc +28 -0
- data/spec/test_apps/rails-4-1/Rakefile +6 -0
- data/spec/test_apps/rails-4-1/app/assets/images/.keep +0 -0
- data/spec/test_apps/rails-4-1/app/assets/javascripts/application.js +16 -0
- data/spec/test_apps/rails-4-1/app/assets/stylesheets/application.css +15 -0
- data/spec/test_apps/rails-4-1/app/controllers/application_controller.rb +5 -0
- data/spec/test_apps/rails-4-1/app/controllers/concerns/.keep +0 -0
- data/spec/test_apps/rails-4-1/app/helpers/application_helper.rb +2 -0
- data/spec/test_apps/rails-4-1/app/mailers/.keep +0 -0
- data/spec/test_apps/rails-4-1/app/models/.keep +0 -0
- data/spec/test_apps/rails-4-1/app/models/concerns/.keep +0 -0
- data/spec/test_apps/rails-4-1/app/views/layouts/application.html.erb +14 -0
- data/spec/test_apps/rails-4-1/bin/bundle +3 -0
- data/spec/test_apps/rails-4-1/bin/rails +8 -0
- data/spec/test_apps/rails-4-1/bin/rake +8 -0
- data/spec/test_apps/rails-4-1/bin/spring +18 -0
- data/spec/test_apps/rails-4-1/config.ru +4 -0
- data/spec/test_apps/rails-4-1/config/application.rb +23 -0
- data/spec/test_apps/rails-4-1/config/boot.rb +4 -0
- data/spec/test_apps/rails-4-1/config/database.yml +25 -0
- data/spec/test_apps/rails-4-1/config/environment.rb +5 -0
- data/spec/test_apps/rails-4-1/config/environments/development.rb +37 -0
- data/spec/test_apps/rails-4-1/config/environments/production.rb +82 -0
- data/spec/test_apps/rails-4-1/config/environments/test.rb +39 -0
- data/spec/test_apps/rails-4-1/config/initializers/assets.rb +8 -0
- data/spec/test_apps/rails-4-1/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/test_apps/rails-4-1/config/initializers/cookies_serializer.rb +3 -0
- data/spec/test_apps/rails-4-1/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/test_apps/rails-4-1/config/initializers/inflections.rb +16 -0
- data/spec/test_apps/rails-4-1/config/initializers/mime_types.rb +4 -0
- data/spec/test_apps/rails-4-1/config/initializers/session_store.rb +3 -0
- data/spec/test_apps/rails-4-1/config/initializers/wrap_parameters.rb +14 -0
- data/spec/test_apps/rails-4-1/config/locales/en.yml +23 -0
- data/spec/test_apps/rails-4-1/config/routes.rb +56 -0
- data/spec/test_apps/rails-4-1/config/secrets.yml +22 -0
- data/spec/test_apps/rails-4-1/db/seeds.rb +7 -0
- data/spec/test_apps/rails-4-1/lib/assets/.keep +0 -0
- data/spec/test_apps/rails-4-1/lib/tasks/.keep +0 -0
- data/spec/test_apps/rails-4-1/log/.keep +0 -0
- data/spec/test_apps/rails-4-1/public/404.html +67 -0
- data/spec/test_apps/rails-4-1/public/422.html +67 -0
- data/spec/test_apps/rails-4-1/public/500.html +66 -0
- data/spec/test_apps/rails-4-1/public/favicon.ico +0 -0
- data/spec/test_apps/rails-4-1/public/robots.txt +5 -0
- data/spec/test_apps/rails-4-1/test/controllers/.keep +0 -0
- data/spec/test_apps/rails-4-1/test/fixtures/.keep +0 -0
- data/spec/test_apps/rails-4-1/test/helpers/.keep +0 -0
- data/spec/test_apps/rails-4-1/test/integration/.keep +0 -0
- data/spec/test_apps/rails-4-1/test/mailers/.keep +0 -0
- data/spec/test_apps/rails-4-1/test/models/.keep +0 -0
- data/spec/test_apps/rails-4-1/test/test_helper.rb +10 -0
- data/spec/test_apps/rails-4-1/vendor/assets/javascripts/.keep +0 -0
- data/spec/test_apps/rails-4-1/vendor/assets/stylesheets/.keep +0 -0
- metadata +769 -656
checksums.yaml
CHANGED
@@ -1,15 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
metadata.gz: !binary |-
|
9
|
-
MTY0MGU0NzM2ZTI5YjhmMjA2YzQ3N2RiZTBhMzEzMmQ3OTJkYmQxZGI2NWNm
|
10
|
-
MWUzMGRkNGJlYWE1NzliMjNkZDc3NDE0OTM2MzYzZGMwNmI2ZjgyZjdjYzVh
|
11
|
-
NjNiZGI1YzJlM2FkZjgyYTRjYmZlM2I5ZmViNWQwMzZjM2NjYjc=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
NmJmMzM3ZTFiNDI4ODM3NzY2NjE0MWYyZDE0N2Q4Y2Y2YTVkODkxMDlmYzgz
|
14
|
-
Njg2ODUzZGM2NmVkMTJlMmMwYzM2M2JlNTE3OTJmYTZiMDEyNjhjNDZkOTNl
|
15
|
-
YzFkNjU4YjgxMmU3Yjg3ZGJmYzIzMDhhMzgxNzdjOGYzNWY2MmE=
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 8618c5eef15c29da8d226c626b0ccdac8ddc952a
|
4
|
+
data.tar.gz: f575327bf6556db01f79fc950cbe98c16211ae12
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a2f95adfded11edc85309746f3c851fe0425fbdc913f2c701164fcce6f28ebf9b61972b05a4acabe958049b7dced8227de7562b4b2b74f084efc372aefab8da6
|
7
|
+
data.tar.gz: a050d3fb43e62e375a6a1196e789149656f9840a25106d1be8cb6641ecc1e0fa4344479f0fddd2a69130c1e4c134576c1a69186b72d7f98e260ab885f230a9bd
|
data/.ruby-version
ADDED
data/Gemfile.lock
CHANGED
@@ -1,22 +1,22 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
serum-rails (0.
|
4
|
+
serum-rails (0.2.0)
|
5
5
|
activesupport (>= 3.2)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
activesupport (4.
|
10
|
+
activesupport (4.1.4)
|
11
11
|
i18n (~> 0.6, >= 0.6.9)
|
12
|
-
|
13
|
-
|
12
|
+
json (~> 1.7, >= 1.7.7)
|
13
|
+
minitest (~> 5.1)
|
14
14
|
thread_safe (~> 0.1)
|
15
|
-
tzinfo (~>
|
15
|
+
tzinfo (~> 1.1)
|
16
16
|
diff-lcs (1.2.5)
|
17
|
-
i18n (0.6.
|
18
|
-
|
19
|
-
|
17
|
+
i18n (0.6.11)
|
18
|
+
json (1.8.1)
|
19
|
+
minitest (5.4.1)
|
20
20
|
rake (10.3.1)
|
21
21
|
rspec (3.0.0)
|
22
22
|
rspec-core (~> 3.0.0)
|
@@ -30,8 +30,9 @@ GEM
|
|
30
30
|
rspec-mocks (3.0.4)
|
31
31
|
rspec-support (~> 3.0.0)
|
32
32
|
rspec-support (3.0.4)
|
33
|
-
thread_safe (0.3.
|
34
|
-
tzinfo (
|
33
|
+
thread_safe (0.3.4)
|
34
|
+
tzinfo (1.2.2)
|
35
|
+
thread_safe (~> 0.1)
|
35
36
|
|
36
37
|
PLATFORMS
|
37
38
|
ruby
|
data/lib/serum/rails/app.rb
CHANGED
@@ -21,8 +21,28 @@ module Serum
|
|
21
21
|
|
22
22
|
delegate :count_lines, :to => :code_scanner
|
23
23
|
|
24
|
+
def count_routes
|
25
|
+
Dir.chdir(@root) do
|
26
|
+
run_command('bundle exec rake routes').split(/\n/).size - 1
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
def count_gems
|
31
|
+
Dir.chdir(@root) do
|
32
|
+
run_command('bundle list').split(/\n/).size - 1
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
24
36
|
private
|
25
37
|
|
38
|
+
def run_command(cmd)
|
39
|
+
Bundler.with_clean_env do
|
40
|
+
result = `#{cmd}`
|
41
|
+
$?.success? or raise "Error while running command: #{cmd}"
|
42
|
+
result
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
26
46
|
def ensure_root_exists
|
27
47
|
File.directory?(@root) or raise "Not a directory: #{@root}"
|
28
48
|
end
|
data/lib/serum/rails/metrics.rb
CHANGED
@@ -2,8 +2,6 @@ module Serum
|
|
2
2
|
module Rails
|
3
3
|
class Metrics
|
4
4
|
|
5
|
-
FRACTION_PRIVATE_CONTROLLER_METHODS = 0.2
|
6
|
-
|
7
5
|
class << self
|
8
6
|
|
9
7
|
attr_reader :metrics
|
@@ -29,14 +27,12 @@ module Serum
|
|
29
27
|
)
|
30
28
|
end
|
31
29
|
|
32
|
-
metric :
|
33
|
-
|
30
|
+
metric :controller_methods do
|
31
|
+
@app.count_lines(
|
34
32
|
:pattern => /\bdef\b/,
|
35
33
|
:types => [:ruby],
|
36
34
|
:folders => 'app/controllers'
|
37
35
|
)
|
38
|
-
count *= (1 - FRACTION_PRIVATE_CONTROLLER_METHODS)
|
39
|
-
count.round
|
40
36
|
end
|
41
37
|
|
42
38
|
#metric :gem_count do
|
@@ -104,6 +100,14 @@ module Serum
|
|
104
100
|
@app.lines_of_code
|
105
101
|
end
|
106
102
|
|
103
|
+
metric :routes do
|
104
|
+
@app.count_routes
|
105
|
+
end
|
106
|
+
|
107
|
+
metric :gems do
|
108
|
+
@app.count_gems
|
109
|
+
end
|
110
|
+
|
107
111
|
def to_hash
|
108
112
|
hash = {}
|
109
113
|
self.class.metrics.sort_by(&:to_s).each do |metric|
|
data/lib/serum/rails/version.rb
CHANGED
@@ -2,86 +2,97 @@
|
|
2
2
|
# through the example application in spec/test_app
|
3
3
|
describe Serum::Rails::Metrics do
|
4
4
|
|
5
|
-
let(:
|
5
|
+
let(:rails_2_3_metrics) { Serum::Rails::Metrics.new('spec/test_apps/rails-2-3') }
|
6
|
+
let(:rails_4_1_metrics) { Serum::Rails::Metrics.new('spec/test_apps/rails-4-1') }
|
6
7
|
|
7
|
-
|
8
|
+
describe '#routes' do
|
9
|
+
it 'should count the occurrences' do
|
10
|
+
expect(rails_4_1_metrics.routes).to eq(11)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
describe '#gems' do
|
15
|
+
it 'should count the occurrences' do
|
16
|
+
expect(rails_4_1_metrics.gems).to eq(47)
|
17
|
+
end
|
18
|
+
end
|
8
19
|
|
9
20
|
describe '#unescaped_strings' do
|
10
21
|
it 'should count the occurrences' do
|
11
|
-
expect(
|
22
|
+
expect(rails_2_3_metrics.unescaped_strings).to eq(17)
|
12
23
|
end
|
13
24
|
end
|
14
25
|
|
15
|
-
describe '#
|
26
|
+
describe '#controller_methods' do
|
16
27
|
it 'should count the occurrences' do
|
17
|
-
expect(
|
28
|
+
expect(rails_2_3_metrics.controller_methods).to eq(94)
|
18
29
|
end
|
19
30
|
end
|
20
31
|
|
21
32
|
describe '#uploaders' do
|
22
33
|
it 'should count the occurrences' do
|
23
|
-
expect(
|
34
|
+
expect(rails_2_3_metrics.uploaders).to eq(2)
|
24
35
|
end
|
25
36
|
end
|
26
37
|
|
27
38
|
describe '#crypto_terms' do
|
28
39
|
it 'should count the occurrences' do
|
29
|
-
expect(
|
40
|
+
expect(rails_2_3_metrics.crypto_terms).to eq(17)
|
30
41
|
end
|
31
42
|
end
|
32
43
|
|
33
44
|
describe '#cookie_accesses' do
|
34
45
|
it 'should count the occurrences' do
|
35
|
-
expect(
|
46
|
+
expect(rails_2_3_metrics.cookie_accesses).to eq(5)
|
36
47
|
end
|
37
48
|
end
|
38
49
|
|
39
50
|
describe '#file_accesses' do
|
40
51
|
it 'should count the occurrences' do
|
41
|
-
expect(
|
52
|
+
expect(rails_2_3_metrics.file_accesses).to eq(33)
|
42
53
|
end
|
43
54
|
end
|
44
55
|
|
45
56
|
describe '#mailer_invocations' do
|
46
57
|
it 'should count the occurrences' do
|
47
|
-
expect(
|
58
|
+
expect(rails_2_3_metrics.mailer_invocations).to eq(4)
|
48
59
|
end
|
49
60
|
end
|
50
61
|
|
51
62
|
describe '#redirects' do
|
52
63
|
it 'should count the occurrences' do
|
53
|
-
expect(
|
64
|
+
expect(rails_2_3_metrics.redirects).to eq(15)
|
54
65
|
end
|
55
66
|
end
|
56
67
|
|
57
68
|
describe '#json_outputs' do
|
58
69
|
it 'should count the occurrences' do
|
59
|
-
expect(
|
70
|
+
expect(rails_2_3_metrics.json_outputs).to eq(2)
|
60
71
|
end
|
61
72
|
end
|
62
73
|
|
63
74
|
describe '#yaml_inputs' do
|
64
75
|
it 'should count the occurrences' do
|
65
|
-
expect(
|
76
|
+
expect(rails_2_3_metrics.yaml_inputs).to eq(3)
|
66
77
|
end
|
67
78
|
end
|
68
79
|
|
69
80
|
describe '#lines_of_code' do
|
70
81
|
it 'should count the occurrences' do
|
71
|
-
expect(
|
82
|
+
expect(rails_2_3_metrics.lines_of_code).to eq(12627)
|
72
83
|
end
|
73
84
|
end
|
74
85
|
|
75
86
|
#describe '#lines_of_ruby_code' do
|
76
|
-
# expect(
|
87
|
+
# expect(rails_2_3_metrics.lines_of_ruby_code).to eq(123)
|
77
88
|
#end
|
78
89
|
#
|
79
90
|
#describe '#lines_of_view_code' do
|
80
|
-
# expect(
|
91
|
+
# expect(rails_2_3_metrics.lines_of_view_code).to eq(123)
|
81
92
|
#end
|
82
93
|
#
|
83
94
|
#describe '#lines_of_javascript_code' do
|
84
|
-
# expect(
|
95
|
+
# expect(rails_2_3_metrics.lines_of_javascript_code).to eq(123)
|
85
96
|
#end
|
86
97
|
|
87
98
|
end
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/spec/{test_app → test_apps/rails-2-3}/app/controllers/application_controller/i18n_trait.rb
RENAMED
File without changes
|
File without changes
|
data/spec/{test_app → test_apps/rails-2-3}/app/controllers/application_controller/security_trait.rb
RENAMED
File without changes
|
File without changes
|
File without changes
|
data/spec/{test_app → test_apps/rails-2-3}/app/controllers/friendship_requests_controller.rb
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/spec/{test_app → test_apps/rails-2-3}/app/controllers/shared/boring_controller_trait.rb
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/spec/{test_app → test_apps/rails-2-3}/app/controllers/ws/api_controller/formatters_trait.rb
RENAMED
File without changes
|
data/spec/{test_app → test_apps/rails-2-3}/app/controllers/ws/api_controller/parsers_trait.rb
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|