gitextract_i_av7aco/ ├── .gitignore ├── .gitmodules ├── .rspec ├── .rvmrc ├── Gemfile ├── Guardfile ├── README.md ├── Rakefile ├── app/ │ ├── controllers/ │ │ ├── account_controller.rb │ │ ├── activity_stream_preferences_controller.rb │ │ ├── activity_stream_preferences_module.rb │ │ ├── activity_streams_controller.rb │ │ ├── activity_streams_module.rb │ │ ├── admin_controller.rb │ │ ├── application_controller.rb │ │ ├── attachments_controller.rb │ │ ├── auth_sources_controller.rb │ │ ├── boards_controller.rb │ │ ├── comments_controller.rb │ │ ├── credit_distributions_controller.rb │ │ ├── credit_transfers_controller.rb │ │ ├── credits_controller.rb │ │ ├── documents_controller.rb │ │ ├── email_updates_controller.rb │ │ ├── enterprises_controller.rb │ │ ├── enumerations_controller.rb │ │ ├── help_controller.rb │ │ ├── help_sections_controller.rb │ │ ├── home_controller.rb │ │ ├── hourly_types_controller.rb │ │ ├── invitations_controller.rb │ │ ├── issue_invitations_controller.rb │ │ ├── issue_relations_controller.rb │ │ ├── issue_statuses_controller.rb │ │ ├── issue_votes_controller.rb │ │ ├── issues_controller.rb │ │ ├── journals_controller.rb │ │ ├── mail_handler_controller.rb │ │ ├── mails_controller.rb │ │ ├── members_controller.rb │ │ ├── messages_controller.rb │ │ ├── motion_votes_controller.rb │ │ ├── motions_controller.rb │ │ ├── my_controller.rb │ │ ├── news_controller.rb │ │ ├── notifications_controller.rb │ │ ├── projects_controller.rb │ │ ├── queries_controller.rb │ │ ├── quotes_controller.rb │ │ ├── recurly_notifications_controller.rb │ │ ├── reports_controller.rb │ │ ├── reputations_controller.rb │ │ ├── retro_ratings_controller.rb │ │ ├── retros_controller.rb │ │ ├── roles_controller.rb │ │ ├── search_controller.rb │ │ ├── settings_controller.rb │ │ ├── shares_controller.rb │ │ ├── todos_controller.rb │ │ ├── trackers_controller.rb │ │ ├── users_controller.rb │ │ ├── votes_controller.rb │ │ ├── watchers_controller.rb │ │ ├── welcome_controller.rb │ │ ├── wiki_controller.rb │ │ ├── wikis_controller.rb │ │ └── workflows_controller.rb │ ├── helpers/ │ │ ├── admin_helper.rb │ │ ├── application_helper.rb │ │ ├── attachments_helper.rb │ │ ├── groups_helper.rb │ │ ├── issue_relations_helper.rb │ │ ├── issues_helper.rb │ │ ├── journals_helper.rb │ │ ├── messages_helper.rb │ │ ├── motions_helper.rb │ │ ├── my_helper.rb │ │ ├── news_helper.rb │ │ ├── projects_helper.rb │ │ ├── queries_helper.rb │ │ ├── reports_helper.rb │ │ ├── retros_helper.rb │ │ ├── search_helper.rb │ │ ├── settings_helper.rb │ │ ├── sort_helper.rb │ │ ├── users_helper.rb │ │ ├── watchers_helper.rb │ │ └── wiki_helper.rb │ ├── models/ │ │ ├── activity_stream.rb │ │ ├── activity_stream_preference.rb │ │ ├── activity_stream_total.rb │ │ ├── attachment.rb │ │ ├── auth_source.rb │ │ ├── auth_source_ldap.rb │ │ ├── board.rb │ │ ├── comment.rb │ │ ├── credit.rb │ │ ├── credit_distribution.rb │ │ ├── credit_transfer.rb │ │ ├── daily_digest.rb │ │ ├── document.rb │ │ ├── document_observer.rb │ │ ├── email_update.rb │ │ ├── enabled_module.rb │ │ ├── enterprise.rb │ │ ├── enumeration.rb │ │ ├── help_section.rb │ │ ├── hourly_type.rb │ │ ├── invitation.rb │ │ ├── issue.rb │ │ ├── issue_observer.rb │ │ ├── issue_relation.rb │ │ ├── issue_status.rb │ │ ├── issue_vote.rb │ │ ├── journal.rb │ │ ├── journal_detail.rb │ │ ├── journal_observer.rb │ │ ├── mail.rb │ │ ├── mail_handler.rb │ │ ├── mailer.rb │ │ ├── member.rb │ │ ├── member_role.rb │ │ ├── message.rb │ │ ├── message_observer.rb │ │ ├── motion.rb │ │ ├── motion_vote.rb │ │ ├── news.rb │ │ ├── news_observer.rb │ │ ├── notification.rb │ │ ├── open_id_authentication_association.rb │ │ ├── open_id_authentication_nonces.rb │ │ ├── personal_welcome.rb │ │ ├── plan.rb │ │ ├── plugin_schema_info.rb │ │ ├── project.rb │ │ ├── query.rb │ │ ├── quote.rb │ │ ├── reputation.rb │ │ ├── retro.rb │ │ ├── retro_rating.rb │ │ ├── role.rb │ │ ├── setting.rb │ │ ├── share.rb │ │ ├── todo.rb │ │ ├── token.rb │ │ ├── track.rb │ │ ├── tracker.rb │ │ ├── user.rb │ │ ├── user_preference.rb │ │ ├── watcher.rb │ │ ├── wiki.rb │ │ ├── wiki_content.rb │ │ ├── wiki_content_observer.rb │ │ ├── wiki_page.rb │ │ ├── wiki_redirect.rb │ │ └── workflow.rb │ └── views/ │ ├── account/ │ │ ├── login.html.erb │ │ ├── lost_password.html.erb │ │ ├── password_recovery.html.erb │ │ └── register.html.erb │ ├── activity_stream_preferences/ │ │ └── index.html.erb │ ├── activity_streams/ │ │ ├── _activity_comment.html.erb │ │ ├── _activity_stream.html.erb │ │ ├── _activity_stream_feed.atom.builder │ │ ├── _activity_stream_group.erb │ │ ├── _activity_stream_list.html.erb │ │ ├── _activity_stream_sub.html.erb │ │ ├── _indirect_object.html.erb │ │ ├── _table_header.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── admin/ │ │ ├── _menu.html.erb │ │ ├── _no_data.html.erb │ │ ├── index.html.erb │ │ ├── info.html.erb │ │ ├── plugins.html.erb │ │ ├── projects.html.erb │ │ └── user_stats.html.erb │ ├── attachments/ │ │ ├── _form.html.erb │ │ ├── _links.html.erb │ │ ├── _table.erb │ │ ├── diff.html.erb │ │ └── file.html.erb │ ├── auth_sources/ │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── list.html.erb │ │ └── new.html.erb │ ├── boards/ │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── common/ │ │ ├── 403.html.erb │ │ ├── 404.html.erb │ │ ├── _calendar.html.erb │ │ ├── _diff.html.erb │ │ ├── _file.html.erb │ │ ├── _main_menu_home.html.erb │ │ ├── _preview.html.erb │ │ ├── _tabs.html.erb │ │ └── feed.atom.rxml │ ├── credit_distributions/ │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── credit_transfers/ │ │ ├── _credit_transfer_history.html.erb │ │ ├── _eligible_recipients.erb │ │ ├── _new_credit_transfer.html.erb │ │ └── index.html.erb │ ├── credits/ │ │ ├── _credit_breakdown.html.erb │ │ ├── _credit_history.html.erb │ │ ├── _credit_queue.html.erb │ │ ├── _my_credits.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── documents/ │ │ ├── _document.html.erb │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── email_updates/ │ │ └── new.html.erb │ ├── enterprises/ │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── enumerations/ │ │ ├── _form.html.erb │ │ ├── destroy.html.erb │ │ ├── edit.html.erb │ │ ├── list.html.erb │ │ └── new.html.erb │ ├── help/ │ │ └── show.html.erb │ ├── help_sections/ │ │ ├── _show.html.erb │ │ ├── _show_popup.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── home/ │ │ ├── _footer.html.erb │ │ ├── _header.html.erb │ │ ├── about.html.erb │ │ ├── apps.html.erb │ │ ├── contact.html.erb │ │ ├── elements.html.erb │ │ ├── features_original.html.erb │ │ ├── how.html.erb │ │ ├── hq.html.erb │ │ ├── index.html.erb │ │ ├── library.html.erb │ │ ├── old_index.html.erb │ │ ├── old_index2.html.erb │ │ ├── old_inviteonline.html.erb │ │ ├── open_enterprise_governance_model.html.erb │ │ ├── pricing.html.erb │ │ ├── privacy.html.erb │ │ ├── services.html.erb │ │ ├── signup.html.erb │ │ ├── tour.html.erb │ │ ├── user_agreement.html.erb │ │ ├── webdesign.html.erb │ │ ├── what.html.erb │ │ └── why.html.erb │ ├── hourly_types/ │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── invitations/ │ │ ├── _generic_invitation.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── issue_relations/ │ │ └── _form.html.erb │ ├── issue_statuses/ │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── list.html.erb │ │ └── new.html.erb │ ├── issue_votes/ │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── issues/ │ │ ├── _action_menu.html.erb │ │ ├── _attributes.html.erb │ │ ├── _edit.html.erb │ │ ├── _form.html.erb │ │ ├── _form_add_team_member.html.erb │ │ ├── _form_update.html.erb │ │ ├── _history.html.erb │ │ ├── _joined_by.html.erb │ │ ├── _list.html.erb │ │ ├── _list_simple.html.erb │ │ ├── _list_very_simple.html.erb │ │ ├── _relations.html.erb │ │ ├── _sidebar.html.erb │ │ ├── calendar.html.erb │ │ ├── changes.rxml │ │ ├── context_menu.html.erb │ │ ├── edit.html.erb │ │ ├── gantt.html.erb │ │ ├── index.html.erb │ │ ├── move.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── journals/ │ │ ├── _notes_form.html.erb │ │ ├── edit.rjs │ │ └── update.rjs │ ├── layouts/ │ │ ├── _account_menu.html.erb │ │ ├── activescaffold.html.erb │ │ ├── admin.html.erb │ │ ├── base.html.erb │ │ ├── blank.html.erb │ │ ├── gooey.html.erb │ │ ├── help_sections.html.erb │ │ ├── issue_blank.html.erb │ │ ├── mailer.text.html.erb │ │ ├── mailer.text.plain.erb │ │ └── static.html.erb │ ├── mailer/ │ │ ├── _issue_text_html.html.erb │ │ ├── _issue_text_plain.html.erb │ │ ├── account_activated.text.html.html.erb │ │ ├── account_activated.text.plain.html.erb │ │ ├── account_activation_request.text.html.html.erb │ │ ├── account_activation_request.text.plain.html.erb │ │ ├── account_information.text.html.html.erb │ │ ├── account_information.text.plain.html.erb │ │ ├── attachments_added.text.html.html.erb │ │ ├── attachments_added.text.plain.html.erb │ │ ├── daily_digest.text.html.html.erb │ │ ├── daily_digest.text.plain.html.erb │ │ ├── document_added.text.html.html.erb │ │ ├── document_added.text.plain.html.erb │ │ ├── email_update_activation.text.html.html.erb │ │ ├── email_update_activation.text.plain.html.erb │ │ ├── invitation_add.text.html.html.erb │ │ ├── invitation_add.text.plain.html.erb │ │ ├── invitation_remind.text.html.html.erb │ │ ├── invitation_remind.text.plain.html.erb │ │ ├── issue_add.text.html.html.erb │ │ ├── issue_add.text.plain.html.erb │ │ ├── issue_edit.text.html.html.erb │ │ ├── issue_edit.text.plain.html.erb │ │ ├── lost_password.text.html.html.erb │ │ ├── lost_password.text.plain.html.erb │ │ ├── message_posted.text.html.html.erb │ │ ├── message_posted.text.plain.html.erb │ │ ├── news_added.text.html.html.erb │ │ ├── news_added.text.plain.html.erb │ │ ├── personal_welcome.text.html.html.erb │ │ ├── personal_welcome.text.plain.html.erb │ │ ├── register.text.html.html.erb │ │ ├── register.text.plain.html.erb │ │ ├── reminder.text.html.html.erb │ │ ├── reminder.text.plain.html.erb │ │ ├── test.text.html.html.erb │ │ ├── test.text.plain.html.erb │ │ ├── wiki_content_added.text.html.html.erb │ │ ├── wiki_content_added.text.plain.html.erb │ │ ├── wiki_content_updated.text.html.html.erb │ │ └── wiki_content_updated.text.plain.html.erb │ ├── mails/ │ │ ├── _inbox.html.erb │ │ ├── _sent.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── members/ │ │ └── autocomplete_for_member.html.erb │ ├── messages/ │ │ ├── _form.html.erb │ │ ├── _motion_topic.html.erb │ │ ├── edit.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── motion_votes/ │ │ ├── _vote.html.erb │ │ ├── cast_vote.js.rjs │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── motions/ │ │ ├── _motions.html.erb │ │ ├── edit.html.erb │ │ ├── eligible_users.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── my/ │ │ ├── _belong_to_projects.html.erb │ │ ├── _billing_form.html.erb │ │ ├── _block.html.erb │ │ ├── _my_projects.html.erb │ │ ├── _plan_description.html.erb │ │ ├── _plan_descriptions.html.erb │ │ ├── _project_list.html.erb │ │ ├── _sidebar.html.erb │ │ ├── _usage_stats.html.erb │ │ ├── account.html.erb │ │ ├── blocks/ │ │ │ ├── _calendar.html.erb │ │ │ ├── _documents.html.erb │ │ │ ├── _issuesassignedtome.html.erb │ │ │ ├── _issuesreportedbyme.html.erb │ │ │ ├── _issueswatched.html.erb │ │ │ └── _news.html.erb │ │ ├── issues.html.erb │ │ ├── page.html.erb │ │ ├── page_layout.html.erb │ │ ├── password.html.erb │ │ ├── projects.html.erb │ │ └── upgrade.html.erb │ ├── news/ │ │ ├── _form.html.erb │ │ ├── _news.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── notifications/ │ │ ├── _credits_distributed.erb │ │ ├── _credits_transferred.html.erb │ │ ├── _invitation.erb │ │ ├── _issue_joined.html.erb │ │ ├── _issue_left.html.erb │ │ ├── _issue_team_member_added.html.erb │ │ ├── _issue_team_member_removed.html.erb │ │ ├── _mention.html.erb │ │ ├── _message.html.erb │ │ ├── _motion_started.erb │ │ ├── _new_role.erb │ │ ├── _retro_ended.erb │ │ ├── _retro_started.erb │ │ ├── _trial_expired.html.erb │ │ ├── _unresponded.html.erb │ │ ├── _usage_over.html.erb │ │ ├── edit.html.erb │ │ ├── error.js.rjs │ │ ├── hide.js.rjs │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── projects/ │ │ ├── _active_member_box.html.erb │ │ ├── _active_member_box_simple.html.erb │ │ ├── _clearance_member_box.html.erb │ │ ├── _dashboard_javascript_variables.html.erb │ │ ├── _edit.html.erb │ │ ├── _form.html.erb │ │ ├── _member_box.html.erb │ │ ├── _point_scale.html.erb │ │ ├── _project_list.html.erb │ │ ├── _project_summary.html.erb │ │ ├── _projects_list_simple.html.erb │ │ ├── _subprojects.html.erb │ │ ├── _team_link.html.erb │ │ ├── _team_list.html.erb │ │ ├── _team_list_member.html.erb │ │ ├── activity.html.erb │ │ ├── add.html.erb │ │ ├── add_file.html.erb │ │ ├── copy.html.erb │ │ ├── core_vote.js.rjs │ │ ├── credits.html.erb │ │ ├── dashboard.html.erb │ │ ├── index.html.erb │ │ ├── list_files.html.erb │ │ ├── list_members.html.erb │ │ ├── map.html.erb │ │ ├── move.html.erb │ │ ├── overview.html.erb │ │ ├── settings/ │ │ │ ├── _boards.html.erb │ │ │ ├── _hourly_types.html.erb │ │ │ ├── _members.html.erb │ │ │ ├── _modules.html.erb │ │ │ ├── _select_new_member.html.erb │ │ │ └── _wiki.html.erb │ │ ├── settings.html.erb │ │ ├── show.png.flexi │ │ ├── team.html.erb │ │ └── team_update.js.rjs │ ├── queries/ │ │ ├── _columns.html.erb │ │ ├── _filters.html.erb │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ └── new.html.erb │ ├── quotes/ │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── reports/ │ │ ├── _details.html.erb │ │ ├── _simple.html.erb │ │ ├── issue_report.html.erb │ │ └── issue_report_details.html.erb │ ├── reputations/ │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── retro_ratings/ │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── retros/ │ │ ├── _issue_details.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ └── show_multiple.html.erb │ ├── roles/ │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── list.html.erb │ │ ├── new.html.erb │ │ └── report.html.erb │ ├── search/ │ │ └── index.html.erb │ ├── settings/ │ │ ├── _authentication.html.erb │ │ ├── _display.html.erb │ │ ├── _general.html.erb │ │ ├── _issues.html.erb │ │ ├── _mail_handler.html.erb │ │ ├── _notifications.html.erb │ │ ├── _projects.html.erb │ │ ├── edit.html.erb │ │ └── plugin.html.erb │ ├── shares/ │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── todos/ │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── trackers/ │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── list.html.erb │ │ └── new.html.erb │ ├── users/ │ │ ├── _activity.html.erb │ │ ├── _form.html.erb │ │ ├── _general.html.erb │ │ ├── _general_info.html.erb │ │ ├── _membership.html.erb │ │ ├── _memberships.html.erb │ │ ├── _reputation.html.erb │ │ ├── add.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ └── show.html.erb │ ├── watchers/ │ │ └── _watchers.html.erb │ ├── welcome/ │ │ ├── _list_workstreams.html.erb │ │ ├── index.html.erb │ │ └── robots.html.erb │ ├── wiki/ │ │ ├── _content.html.erb │ │ ├── _sidebar.html.erb │ │ ├── annotate.html.erb │ │ ├── destroy.html.erb │ │ ├── diff.html.erb │ │ ├── edit.html.erb │ │ ├── export.html.erb │ │ ├── export_multiple.html.erb │ │ ├── history.html.erb │ │ ├── rename.html.erb │ │ ├── show.html.erb │ │ ├── special_date_index.html.erb │ │ └── special_page_index.html.erb │ ├── wikis/ │ │ └── destroy.html.erb │ └── workflows/ │ ├── _action_menu.html.erb │ ├── copy.html.erb │ ├── edit.html.erb │ └── index.html.erb ├── config/ │ ├── additional_environment.rb.example │ ├── boot.rb │ ├── database.yml.example │ ├── email.yml.example │ ├── environment.rb │ ├── environments/ │ │ ├── cucumber.rb │ │ ├── demo.rb │ │ ├── development.rb │ │ ├── production.rb │ │ ├── selenium.rb │ │ ├── test.rb │ │ ├── test_pgsql.rb │ │ └── test_sqlite3.rb │ ├── exceptional.yml │ ├── initializers/ │ │ ├── 10-patches.rb │ │ ├── 20-mime_types.rb │ │ ├── 30-redmine.rb │ │ ├── 40-email.rb │ │ ├── activity_streams.rb │ │ ├── admin_data.rb │ │ ├── aws_s3.rb │ │ ├── backtrace_silencers.rb │ │ ├── bigdecimal-segfault-fix.rb │ │ ├── hash.rb │ │ ├── inflections.rb │ │ ├── recurly_config.rb │ │ └── timeout.rb │ ├── locales/ │ │ └── en.yml │ ├── preinitializer.rb │ ├── rails_best_practices.yml │ ├── routes.rb │ ├── s3.yml │ ├── selenium.yml │ └── settings.yml ├── cucumber.yml ├── db/ │ ├── migrate/ │ │ ├── 20110320055526_acts_as_taggable_on_migration.rb │ │ ├── 20110329230314_add_projectid_to_taggable.rb │ │ └── 20110330041648_add_tags_to_issue.rb │ ├── schema.rb │ └── seeds.rb ├── deploy ├── doc/ │ ├── COPYING │ ├── INSTALL │ ├── README_FOR_APP │ └── RUNNING_TESTS ├── extra/ │ ├── mail_handler/ │ │ └── rdm-mailhandler.rb │ └── sample_plugin/ │ ├── README │ ├── app/ │ │ ├── controllers/ │ │ │ └── example_controller.rb │ │ ├── models/ │ │ │ └── meeting.rb │ │ └── views/ │ │ ├── example/ │ │ │ ├── say_goodbye.html.erb │ │ │ └── say_hello.html.erb │ │ ├── my/ │ │ │ └── blocks/ │ │ │ └── _sample_block.html.erb │ │ └── settings/ │ │ └── _sample_plugin_settings.html.erb │ ├── assets/ │ │ └── stylesheets/ │ │ └── example.css │ ├── config/ │ │ └── locales/ │ │ ├── en.yml │ │ └── fr.yml │ ├── db/ │ │ └── migrate/ │ │ └── 001_create_meetings.rb │ └── init.rb ├── lib/ │ ├── activity_streams/ │ │ ├── log_activity_streams.rb │ │ └── routes.rb │ ├── activity_streams.rb │ ├── ar_condition.rb │ ├── diff.rb │ ├── faster_csv.rb │ ├── float.rb │ ├── generators/ │ │ ├── redmine_plugin/ │ │ │ ├── USAGE │ │ │ ├── redmine_plugin_generator.rb │ │ │ └── templates/ │ │ │ ├── README.rdoc │ │ │ ├── en.yml │ │ │ ├── en_rails_i18n.yml │ │ │ ├── init.rb.erb │ │ │ └── test_helper.rb.erb │ │ ├── redmine_plugin_controller/ │ │ │ ├── USAGE │ │ │ ├── redmine_plugin_controller_generator.rb │ │ │ └── templates/ │ │ │ ├── controller.rb.erb │ │ │ ├── functional_test.rb.erb │ │ │ ├── helper.rb.erb │ │ │ └── view.html.erb │ │ └── redmine_plugin_model/ │ │ ├── USAGE │ │ ├── redmine_plugin_model_generator.rb │ │ └── templates/ │ │ ├── fixtures.yml │ │ ├── migration.rb.erb │ │ ├── model.rb.erb │ │ └── unit_test.rb.erb │ ├── mention.rb │ ├── redcloth3.rb │ ├── redmine/ │ │ ├── about.rb │ │ ├── access_control.rb │ │ ├── access_keys.rb │ │ ├── activity/ │ │ │ └── fetcher.rb │ │ ├── activity.rb │ │ ├── core_ext/ │ │ │ ├── string/ │ │ │ │ ├── conversions.rb │ │ │ │ └── inflections.rb │ │ │ └── string.rb │ │ ├── core_ext.rb │ │ ├── default_data/ │ │ │ └── loader.rb │ │ ├── export/ │ │ │ └── pdf.rb │ │ ├── helpers/ │ │ │ ├── calendar.rb │ │ │ └── gantt.rb │ │ ├── i18n.rb │ │ ├── imap.rb │ │ ├── info.rb │ │ ├── menu_manager.rb │ │ ├── mime_type.rb │ │ ├── platform.rb │ │ ├── plugin.rb │ │ ├── search.rb │ │ ├── themes.rb │ │ ├── unified_diff.rb │ │ ├── utils.rb │ │ ├── version.rb │ │ ├── views/ │ │ │ ├── my_page/ │ │ │ │ └── block.rb │ │ │ └── other_formats_builder.rb │ │ ├── wiki_formatting/ │ │ │ ├── macros.rb │ │ │ └── textile/ │ │ │ ├── formatter.rb │ │ │ └── helper.rb │ │ └── wiki_formatting.rb │ ├── redmine.rb │ ├── string.rb │ ├── tabular_form_builder.rb │ └── tasks/ │ ├── autoaccept_commitrequests.rake │ ├── backup.rake │ ├── bootstrap.rake │ ├── cleanup.rake │ ├── close_retros.rake │ ├── cron.rake │ ├── cucumber.rake │ ├── custom.rake │ ├── deprecated.rake │ ├── email.rake │ ├── extract_fixtures.rake │ ├── fetch_changesets.rake │ ├── initializers.rake │ ├── load_default_data.rake │ ├── locales.rake │ ├── metrics.rake │ ├── migrate_from_mantis.rake │ ├── migrate_from_trac.rake │ ├── migrate_plugins.rake │ ├── plugins.rake │ ├── reek.rake │ ├── reminder.rake │ ├── remove_problem_type.rake │ ├── reset_all_passwords.rake │ ├── rspec.rake │ ├── steak.rake │ ├── testing.rake │ ├── update_item_statuses.rake │ └── watchers.rake ├── public/ │ ├── .htaccess │ ├── 404.html │ ├── 500.html │ ├── help/ │ │ ├── wiki_syntax.html │ │ └── wiki_syntax_detailed.html │ ├── images/ │ │ ├── gallery/ │ │ │ └── index.sof │ │ ├── inner-background.psd │ │ └── static/ │ │ ├── HomePageMain.psd │ │ ├── Untitled-1.psd │ │ ├── Untitled-2.psd │ │ ├── call-us.psd │ │ ├── col-img3.psd │ │ ├── index.sof │ │ ├── landingmockup.psd │ │ ├── pricings-buttom.psd │ │ ├── thanks.psd │ │ └── videotemplate.psd │ ├── javascripts/ │ │ ├── application.js │ │ ├── calendar/ │ │ │ ├── calendar-setup.js │ │ │ ├── calendar.js │ │ │ └── lang/ │ │ │ ├── calendar-bg.js │ │ │ ├── calendar-bs.js │ │ │ ├── calendar-ca.js │ │ │ ├── calendar-cs.js │ │ │ ├── calendar-da.js │ │ │ ├── calendar-de.js │ │ │ ├── calendar-en.js │ │ │ ├── calendar-es.js │ │ │ ├── calendar-fi.js │ │ │ ├── calendar-fr.js │ │ │ ├── calendar-gl.js │ │ │ ├── calendar-he.js │ │ │ ├── calendar-hu.js │ │ │ ├── calendar-id.js │ │ │ ├── calendar-it.js │ │ │ ├── calendar-ja.js │ │ │ ├── calendar-ko.js │ │ │ ├── calendar-lt.js │ │ │ ├── calendar-mk.js │ │ │ ├── calendar-nl.js │ │ │ ├── calendar-no.js │ │ │ ├── calendar-pl.js │ │ │ ├── calendar-pt-br.js │ │ │ ├── calendar-pt.js │ │ │ ├── calendar-ro.js │ │ │ ├── calendar-ru.js │ │ │ ├── calendar-sk.js │ │ │ ├── calendar-sl.js │ │ │ ├── calendar-sr.js │ │ │ ├── calendar-sv.js │ │ │ ├── calendar-th.js │ │ │ ├── calendar-tr.js │ │ │ ├── calendar-uk.js │ │ │ ├── calendar-vi.js │ │ │ ├── calendar-zh-tw.js │ │ │ └── calendar-zh.js │ │ ├── context_menu.js │ │ ├── controls.js │ │ ├── dashboard.js │ │ ├── dragdrop.js │ │ ├── effects.js │ │ ├── enterprise_map.js │ │ ├── fancybox/ │ │ │ ├── index.sof │ │ │ ├── jquery.fancybox-1.3.0.css │ │ │ ├── jquery.fancybox-1.3.0.pack.js │ │ │ └── jquery.mousewheel-3.0.2.pack.js │ │ ├── fileuploader.js │ │ ├── hoverIntent.js │ │ ├── issue.js │ │ ├── jQuery.bubbletip-1.0.4.js │ │ ├── jScrollPane │ │ ├── jScrollPane.js │ │ ├── jit-yc.js │ │ ├── jit.js │ │ ├── jquery-ui.js │ │ ├── jquery.autocomplete.js │ │ ├── jquery.autocomplete.pack.js │ │ ├── jquery.easing-1.3.pack.js │ │ ├── jquery.em.js │ │ ├── jquery.fancybox-1.3.0.js │ │ ├── jquery.fancybox-1.3.0.pack.js │ │ ├── jquery.fancybox-1.3.4.js │ │ ├── jquery.fancybox-1.3.4.pack.js │ │ ├── jquery.fileupload-ui.js │ │ ├── jquery.fileupload.js │ │ ├── jquery.jgrowl_minimized.js │ │ ├── jquery.js │ │ ├── jquery.mousewheel-3.0.2.pack.js │ │ ├── jquery.mousewheel-3.0.4.pack.js │ │ ├── jquery.mousewheel.js │ │ ├── jquery.scrollTo-min.js │ │ ├── jquery.tagsinput.js │ │ ├── jquery.ui.autocomplete.ext.js │ │ ├── jquery.ui.autocomplete.js │ │ ├── jquery.ui.position.js │ │ ├── jrails.js │ │ ├── json2.js │ │ ├── jstoolbar/ │ │ │ ├── jstoolbar.js │ │ │ ├── lang/ │ │ │ │ ├── jstoolbar-bg.js │ │ │ │ ├── jstoolbar-bs.js │ │ │ │ ├── jstoolbar-ca.js │ │ │ │ ├── jstoolbar-cs.js │ │ │ │ ├── jstoolbar-da.js │ │ │ │ ├── jstoolbar-de.js │ │ │ │ ├── jstoolbar-en.js │ │ │ │ ├── jstoolbar-es.js │ │ │ │ ├── jstoolbar-fi.js │ │ │ │ ├── jstoolbar-fr.js │ │ │ │ ├── jstoolbar-gl.js │ │ │ │ ├── jstoolbar-he.js │ │ │ │ ├── jstoolbar-hu.js │ │ │ │ ├── jstoolbar-id.js │ │ │ │ ├── jstoolbar-it.js │ │ │ │ ├── jstoolbar-ja.js │ │ │ │ ├── jstoolbar-ko.js │ │ │ │ ├── jstoolbar-lt.js │ │ │ │ ├── jstoolbar-mk.js │ │ │ │ ├── jstoolbar-nl.js │ │ │ │ ├── jstoolbar-no.js │ │ │ │ ├── jstoolbar-pl.js │ │ │ │ ├── jstoolbar-pt-br.js │ │ │ │ ├── jstoolbar-pt.js │ │ │ │ ├── jstoolbar-ro.js │ │ │ │ ├── jstoolbar-ru.js │ │ │ │ ├── jstoolbar-sk.js │ │ │ │ ├── jstoolbar-sl.js │ │ │ │ ├── jstoolbar-sr.js │ │ │ │ ├── jstoolbar-sv.js │ │ │ │ ├── jstoolbar-th.js │ │ │ │ ├── jstoolbar-tr.js │ │ │ │ ├── jstoolbar-uk.js │ │ │ │ ├── jstoolbar-vi.js │ │ │ │ ├── jstoolbar-zh-tw.js │ │ │ │ └── jstoolbar-zh.js │ │ │ └── textile.js │ │ ├── lightbox.js │ │ ├── prototype.js │ │ ├── repository_navigation.js │ │ ├── retro.js │ │ ├── select_list_move.js │ │ ├── static/ │ │ │ ├── Quicksand_Book_400.font.js │ │ │ ├── css_browser_selector.js │ │ │ ├── cufon-yui.js │ │ │ ├── execute.js │ │ │ ├── hoverIntent.js │ │ │ ├── index.sof │ │ │ ├── jquery-galleryview-1.1/ │ │ │ │ ├── index.sof │ │ │ │ ├── jquery.galleryview-1.1.js │ │ │ │ └── jquery.timers-1.1.2.js │ │ │ ├── jquery.easing.1.3.js │ │ │ ├── jquery.scroll.pack.js │ │ │ ├── jquery.send.js │ │ │ └── superfish.js │ │ ├── store.js │ │ ├── superfish.js │ │ ├── supersubs.js │ │ ├── textile-editor-config.js │ │ └── textile-editor.js │ ├── maintenance/ │ │ └── index.html │ ├── stylesheets/ │ │ ├── bubbletip-IE.css │ │ ├── bubbletip.css │ │ ├── calendar.css │ │ ├── context_menu.css │ │ ├── csshover.htc │ │ ├── custom.css │ │ ├── dashboard.css │ │ ├── enterprise_map.css │ │ ├── fileuploader.css │ │ ├── gt-fixed.css │ │ ├── gt-rounded-corners.css │ │ ├── gt-styles.css │ │ ├── headerandfooter.css │ │ ├── issue.css │ │ ├── jScrollPane.css │ │ ├── jquery-ui-1.7.2.custom.css │ │ ├── jquery-ui-1.8.8.custom.css │ │ ├── jquery.autocomplete.css │ │ ├── jquery.fancybox-1.3.0.css │ │ ├── jquery.fancybox-1.3.4.css │ │ ├── jquery.fileupload-ui.css │ │ ├── jquery.tagsinput.css │ │ ├── jquery.ui.autocomplete.css │ │ ├── jstoolbar.css │ │ ├── lightbox.css │ │ ├── oldapplication.css │ │ ├── override.css │ │ ├── reset-fonts.css │ │ ├── scaffold.css │ │ ├── scm.css │ │ ├── static/ │ │ │ ├── index.sof │ │ │ ├── print.css │ │ │ ├── screen.css │ │ │ ├── style.css │ │ │ └── superfish.css │ │ └── textile-editor.css │ └── themes/ │ ├── README │ └── bettermeans/ │ └── stylesheets/ │ └── application.css ├── script/ │ ├── about │ ├── autospec │ ├── breakpointer │ ├── console │ ├── cucumber │ ├── dbconsole │ ├── delayed_job │ ├── destroy │ ├── generate │ ├── performance/ │ │ ├── benchmarker │ │ ├── profiler │ │ └── request │ ├── plugin │ ├── process/ │ │ ├── inspector │ │ ├── reaper │ │ ├── spawner │ │ └── spinner │ ├── runner │ ├── server │ └── spec ├── spec/ │ ├── acceptance/ │ │ ├── acceptance_helper.rb │ │ ├── support/ │ │ │ ├── helpers.rb │ │ │ └── paths.rb │ │ └── user_login_spec.rb │ ├── controllers/ │ │ ├── account_controller_spec.rb │ │ └── projects/ │ │ ├── index_active_spec.rb │ │ ├── index_latest_spec.rb │ │ ├── index_spec.rb │ │ ├── move_spec.rb │ │ └── new_dash_data_spec.rb │ ├── factories.rb │ ├── lib/ │ │ └── hash_spec.rb │ ├── models/ │ │ └── project_spec.rb │ ├── rcov.opts │ ├── routing/ │ │ ├── accounts_routing_spec.rb │ │ ├── activity_stream_preferences_routing_spec.rb │ │ ├── activity_streams_routing_spec.rb │ │ ├── admin_routing_spec.rb │ │ ├── attachments_routing_spec.rb │ │ ├── auth_sources_routing_spec.rb │ │ ├── boards_routing_spec.rb │ │ ├── comments_routing_spec.rb │ │ ├── credit_distributions_routing_spec.rb │ │ ├── credit_transfers_routing_spec.rb │ │ ├── credits_routing_spec.rb │ │ ├── documents_routing_spec.rb │ │ ├── email_updates_routing_spec.rb │ │ ├── enterprises_routing_spec.rb │ │ ├── enumerations_routing_spec.rb │ │ ├── help_routing_spec.rb │ │ ├── help_sections_routing_spec.rb │ │ ├── home_routing_spec.rb │ │ ├── hourly_types_routing_spec.rb │ │ ├── invitations_routing_spec.rb │ │ ├── issue_invitations_routing_spec.rb │ │ ├── issue_relations_routing_spec.rb │ │ ├── issue_statuses_routing_spec.rb │ │ ├── issue_votes_routing_spec.rb │ │ ├── issues_routing_spec.rb │ │ ├── journals_routing_spec.rb │ │ ├── mail_handler_routing_spec.rb │ │ ├── mails_routing_spec.rb │ │ ├── members_routing_spec.rb │ │ ├── messages_routing_spec.rb │ │ ├── motion_votes_routing_spec.rb │ │ ├── motions_routing_spec.rb │ │ ├── my_routing_spec.rb │ │ ├── news_routing_spec.rb │ │ ├── notifications_routing_spec.rb │ │ ├── projects_routing_spec.rb │ │ ├── queries_routing_spec.rb │ │ ├── quotes_routing_spec.rb │ │ ├── recurly_notifications_routing_spec.rb │ │ ├── reports_routing_spec.rb │ │ ├── reputations_routing_spec.rb │ │ ├── retro_ratings_routing_spec.rb │ │ ├── retros_routing_spec.rb │ │ ├── roles_routing_spec.rb │ │ ├── search_routing_spec.rb │ │ ├── settings_routing_spec.rb │ │ ├── shares_routing_spec.rb │ │ ├── todos_routing_spec.rb │ │ ├── trackers_routing_spec.rb │ │ ├── users_routing_spec.rb │ │ ├── votes_routing_spec.rb │ │ ├── watchers_routing_spec.rb │ │ ├── welcome_routing_spec.rb │ │ ├── wiki_routing_spec.rb │ │ ├── wikis_routing_spec.rb │ │ └── workflows_routing_spec.rb │ ├── spec.opts │ └── spec_helper.rb └── vendor/ └── plugins/ ├── acts-as-taggable-on/ │ ├── .rspec │ ├── CHANGELOG │ ├── Gemfile │ ├── MIT-LICENSE │ ├── README.rdoc │ ├── Rakefile │ ├── VERSION │ ├── acts-as-taggable-on.gemspec │ ├── generators/ │ │ └── acts_as_taggable_on_migration/ │ │ ├── acts_as_taggable_on_migration_generator.rb │ │ └── templates/ │ │ └── migration.rb │ ├── lib/ │ │ ├── acts-as-taggable-on.rb │ │ ├── acts_as_taggable_on/ │ │ │ ├── acts_as_tagger.rb │ │ │ ├── compatibility/ │ │ │ │ ├── Gemfile │ │ │ │ └── active_record_backports.rb │ │ │ ├── tag.rb │ │ │ ├── tag_list.rb │ │ │ ├── taggable/ │ │ │ │ ├── cache.rb │ │ │ │ ├── collection.rb │ │ │ │ ├── core.rb │ │ │ │ ├── ownership.rb │ │ │ │ └── related.rb │ │ │ ├── taggable.rb │ │ │ ├── tagging.rb │ │ │ └── tags_helper.rb │ │ └── generators/ │ │ └── acts_as_taggable_on/ │ │ └── migration/ │ │ ├── migration_generator.rb │ │ └── templates/ │ │ └── active_record/ │ │ └── migration.rb │ ├── rails/ │ │ └── init.rb │ ├── spec/ │ │ ├── acts_as_taggable_on/ │ │ │ ├── acts_as_taggable_on_spec.rb │ │ │ ├── acts_as_tagger_spec.rb │ │ │ ├── tag_list_spec.rb │ │ │ ├── tag_spec.rb │ │ │ ├── taggable_spec.rb │ │ │ ├── tagger_spec.rb │ │ │ ├── tagging_spec.rb │ │ │ └── tags_helper_spec.rb │ │ ├── bm.rb │ │ ├── database.yml.sample │ │ ├── models.rb │ │ ├── schema.rb │ │ └── spec_helper.rb │ └── uninstall.rb ├── acts_as_attachable/ │ ├── init.rb │ └── lib/ │ └── acts_as_attachable.rb ├── acts_as_event/ │ ├── init.rb │ └── lib/ │ └── acts_as_event.rb ├── acts_as_list/ │ ├── README │ ├── init.rb │ ├── lib/ │ │ └── active_record/ │ │ └── acts/ │ │ └── list.rb │ └── test/ │ └── list_test.rb ├── acts_as_searchable/ │ ├── init.rb │ └── lib/ │ └── acts_as_searchable.rb ├── acts_as_tree/ │ ├── README │ ├── Rakefile │ ├── init.rb │ ├── lib/ │ │ └── active_record/ │ │ └── acts/ │ │ └── tree.rb │ └── test/ │ ├── abstract_unit.rb │ ├── acts_as_tree_test.rb │ ├── database.yml │ ├── fixtures/ │ │ ├── mixin.rb │ │ └── mixins.yml │ └── schema.rb ├── acts_as_versioned/ │ ├── CHANGELOG │ ├── MIT-LICENSE │ ├── README │ ├── RUNNING_UNIT_TESTS │ ├── Rakefile │ ├── init.rb │ ├── lib/ │ │ └── acts_as_versioned.rb │ └── test/ │ ├── abstract_unit.rb │ ├── database.yml │ ├── fixtures/ │ │ ├── authors.yml │ │ ├── landmark.rb │ │ ├── landmark_versions.yml │ │ ├── landmarks.yml │ │ ├── locked_pages.yml │ │ ├── locked_pages_revisions.yml │ │ ├── migrations/ │ │ │ └── 1_add_versioned_tables.rb │ │ ├── page.rb │ │ ├── page_versions.yml │ │ ├── pages.yml │ │ └── widget.rb │ ├── migration_test.rb │ ├── schema.rb │ └── versioned_test.rb ├── acts_as_watchable/ │ ├── init.rb │ └── lib/ │ └── acts_as_watchable.rb ├── admin_data/ │ ├── History.txt │ ├── README.md │ ├── Rakefile │ ├── app/ │ │ ├── controllers/ │ │ │ └── admin_data/ │ │ │ ├── base_controller.rb │ │ │ ├── diagnostic_controller.rb │ │ │ ├── feed_controller.rb │ │ │ ├── main_controller.rb │ │ │ ├── migration_controller.rb │ │ │ ├── search_controller.rb │ │ │ └── validate_model_controller.rb │ │ └── views/ │ │ ├── admin_data/ │ │ │ ├── diagnostic/ │ │ │ │ ├── index.html.erb │ │ │ │ └── missing_index.html.erb │ │ │ ├── feed/ │ │ │ │ └── index.rss.builder │ │ │ ├── main/ │ │ │ │ ├── all_models.html.erb │ │ │ │ ├── association/ │ │ │ │ │ ├── _association_info.html.erb │ │ │ │ │ ├── _belongs_to_info.html.erb │ │ │ │ │ ├── _has_many_info.html.erb │ │ │ │ │ └── _has_one_info.html.erb │ │ │ │ ├── edit.html.erb │ │ │ │ ├── misc/ │ │ │ │ │ ├── _form.html.erb │ │ │ │ │ └── _modify_record.html.erb │ │ │ │ ├── new.html.erb │ │ │ │ ├── show.html.erb │ │ │ │ └── table_structure.html.erb │ │ │ ├── migration/ │ │ │ │ ├── index.html.erb │ │ │ │ └── jstest.html.erb │ │ │ ├── search/ │ │ │ │ ├── _search_base.html.erb │ │ │ │ ├── advance_search.html.erb │ │ │ │ ├── quick_search.html.erb │ │ │ │ └── search/ │ │ │ │ ├── _advance_search_form.html.erb │ │ │ │ ├── _errors.html.erb │ │ │ │ ├── _listing.html.erb │ │ │ │ ├── _search_form.html.erb │ │ │ │ ├── _sortby.html.erb │ │ │ │ └── _title.html.erb │ │ │ ├── shared/ │ │ │ │ ├── _breadcrum.html.erb │ │ │ │ ├── _drop_down_klasses.html.erb │ │ │ │ ├── _flash_message.html.erb │ │ │ │ ├── _header.html.erb │ │ │ │ ├── _powered_by.html.erb │ │ │ │ └── _secondary_navigation.html.erb │ │ │ └── validate_model/ │ │ │ ├── _bad.html.erb │ │ │ ├── tid.html.erb │ │ │ └── validate.html.erb │ │ └── layouts/ │ │ └── admin_data.html.erb │ ├── config/ │ │ └── routes.rb │ ├── doc/ │ │ └── git.txt │ ├── init.rb │ ├── lib/ │ │ ├── admin_data/ │ │ │ ├── chelper.rb │ │ │ ├── compatibility.rb │ │ │ ├── helpers.rb │ │ │ ├── rake_util.rb │ │ │ ├── search.rb │ │ │ ├── settings.rb │ │ │ └── util.rb │ │ ├── admin_data_date_validation.rb │ │ ├── css/ │ │ │ ├── app.css │ │ │ ├── base.css │ │ │ ├── header.css │ │ │ ├── rounded.css │ │ │ ├── themes/ │ │ │ │ └── drastic-dark/ │ │ │ │ └── style.css │ │ │ ├── umbrella.css │ │ │ └── vendor/ │ │ │ ├── jquery-ui-1.7.2.custom.css │ │ │ └── qunit.css │ │ └── js/ │ │ ├── advance_search/ │ │ │ ├── act_on_result.js │ │ │ ├── adv_search.js │ │ │ ├── advance_search.js │ │ │ ├── advance_search_structure.js │ │ │ ├── ajaxify_advance_search.js │ │ │ ├── build_first_row.js │ │ │ ├── event_bindings.js │ │ │ ├── global_ajax_setting.js │ │ │ └── trigger_submit_on_domready.js │ │ ├── misc/ │ │ │ ├── drop_down_change.js │ │ │ ├── js_util.js │ │ │ └── quick_search_input_focus.js │ │ ├── test/ │ │ │ ├── act_on_result.js │ │ │ ├── advance_search.js │ │ │ ├── ajaxify_advance_search.js │ │ │ ├── build_first_row.js │ │ │ └── event_bindings.js │ │ ├── validate_model/ │ │ │ ├── ajaxify_form.js │ │ │ └── select_all.js │ │ └── vendor/ │ │ ├── jack.js │ │ ├── jquery-1.4.1.js │ │ ├── jquery.ba-isjquery.js │ │ ├── jquery.form.js │ │ ├── jquery.lint.js │ │ ├── log.js │ │ └── qunit.js │ ├── tasks/ │ │ ├── admin_data_tasks.rake │ │ └── validate_models_bg.rake │ └── test/ │ ├── factories/ │ │ ├── article.rb │ │ ├── car.rb │ │ ├── city.rb │ │ ├── comment.rb │ │ ├── door.rb │ │ └── engine.rb │ ├── functional/ │ │ ├── base_controller_test.rb │ │ ├── feed_controller_test.rb │ │ ├── main_controller_test.rb │ │ ├── migration_controller_test.rb │ │ └── search_controller_test.rb │ ├── helper/ │ │ └── view_helper_test.rb │ ├── misc_tests/ │ │ ├── date_validation_test.rb │ │ ├── settings_test.rb │ │ └── util_test.rb │ ├── rails_root/ │ │ ├── Rakefile │ │ ├── app/ │ │ │ ├── controllers/ │ │ │ │ ├── application_controller.rb │ │ │ │ └── articles_controller.rb │ │ │ └── models/ │ │ │ ├── article.rb │ │ │ ├── city.rb │ │ │ ├── comment.rb │ │ │ ├── tech_magazine.rb │ │ │ └── vehicle/ │ │ │ ├── car.rb │ │ │ ├── door.rb │ │ │ └── engine.rb │ │ ├── config/ │ │ │ ├── boot.rb │ │ │ ├── database.yml │ │ │ ├── environment.rb │ │ │ ├── environments/ │ │ │ │ ├── development.rb │ │ │ │ └── test.rb │ │ │ ├── initializers/ │ │ │ │ └── new_rails_defaults.rb │ │ │ └── routes.rb │ │ ├── db/ │ │ │ ├── migrate/ │ │ │ │ └── 20090809061114_create_tables.rb │ │ │ └── schema.rb │ │ ├── public/ │ │ │ └── tmp/ │ │ │ └── response.txt │ │ └── script/ │ │ ├── about │ │ ├── console │ │ ├── dbconsole │ │ ├── destroy │ │ ├── generate │ │ ├── performance/ │ │ │ ├── benchmarker │ │ │ └── profiler │ │ ├── plugin │ │ ├── runner │ │ └── server │ └── test_helper.rb ├── annotate_models/ │ ├── History.txt │ ├── README.rdoc │ ├── Rakefile │ ├── VERSION.yml │ ├── annotate.gemspec │ ├── bin/ │ │ └── annotate │ ├── lib/ │ │ ├── annotate/ │ │ │ ├── annotate_models.rb │ │ │ ├── annotate_routes.rb │ │ │ └── tasks/ │ │ │ ├── migrate.rake │ │ │ └── migrate.rake~HEAD │ │ └── annotate.rb │ ├── spec/ │ │ ├── annotate/ │ │ │ ├── annotate_models_spec.rb │ │ │ └── annotate_routes_spec.rb │ │ ├── annotate_spec.rb │ │ ├── spec.opts │ │ └── spec_helper.rb │ └── todo.txt ├── auto_complete/ │ ├── README │ ├── Rakefile │ ├── init.rb │ ├── lib/ │ │ ├── auto_complete.rb │ │ └── auto_complete_macros_helper.rb │ └── test/ │ └── auto_complete_test.rb ├── awesome_nested_set/ │ ├── MIT-LICENSE │ ├── README.rdoc │ ├── Rakefile │ ├── awesome_nested_set.gemspec │ ├── init.rb │ ├── lib/ │ │ ├── awesome_nested_set/ │ │ │ ├── compatability.rb │ │ │ ├── helper.rb │ │ │ └── named_scope.rb │ │ └── awesome_nested_set.rb │ ├── rails/ │ │ └── init.rb │ └── test/ │ ├── awesome_nested_set/ │ │ └── helper_test.rb │ ├── awesome_nested_set_test.rb │ ├── db/ │ │ ├── database.yml │ │ └── schema.rb │ ├── fixtures/ │ │ ├── categories.yml │ │ ├── category.rb │ │ ├── departments.yml │ │ └── notes.yml │ └── test_helper.rb ├── classic_pagination/ │ ├── CHANGELOG │ ├── README │ ├── Rakefile │ ├── init.rb │ ├── install.rb │ ├── lib/ │ │ ├── pagination.rb │ │ └── pagination_helper.rb │ └── test/ │ ├── fixtures/ │ │ ├── companies.yml │ │ ├── company.rb │ │ ├── developer.rb │ │ ├── developers.yml │ │ ├── developers_projects.yml │ │ ├── project.rb │ │ ├── projects.yml │ │ ├── replies.yml │ │ ├── reply.rb │ │ ├── schema.sql │ │ ├── topic.rb │ │ └── topics.yml │ ├── helper.rb │ ├── pagination_helper_test.rb │ └── pagination_test.rb ├── coderay-0.7.6.227/ │ ├── FOLDERS │ ├── LICENSE │ ├── README │ ├── bin/ │ │ ├── coderay │ │ └── coderay_stylesheet │ └── lib/ │ ├── coderay/ │ │ ├── duo.rb │ │ ├── encoder.rb │ │ ├── encoders/ │ │ │ ├── _map.rb │ │ │ ├── count.rb │ │ │ ├── debug.rb │ │ │ ├── div.rb │ │ │ ├── html/ │ │ │ │ ├── css.rb │ │ │ │ ├── numerization.rb │ │ │ │ └── output.rb │ │ │ ├── html.rb │ │ │ ├── null.rb │ │ │ ├── page.rb │ │ │ ├── span.rb │ │ │ ├── statistic.rb │ │ │ ├── text.rb │ │ │ ├── tokens.rb │ │ │ ├── xml.rb │ │ │ └── yaml.rb │ │ ├── helpers/ │ │ │ ├── file_type.rb │ │ │ ├── gzip_simple.rb │ │ │ ├── plugin.rb │ │ │ └── word_list.rb │ │ ├── scanner.rb │ │ ├── scanners/ │ │ │ ├── _map.rb │ │ │ ├── c.rb │ │ │ ├── debug.rb │ │ │ ├── delphi.rb │ │ │ ├── html.rb │ │ │ ├── java.rb │ │ │ ├── javascript.rb │ │ │ ├── nitro_xhtml.rb │ │ │ ├── php.rb │ │ │ ├── plaintext.rb │ │ │ ├── rhtml.rb │ │ │ ├── ruby/ │ │ │ │ └── patterns.rb │ │ │ ├── ruby.rb │ │ │ ├── scheme.rb │ │ │ └── xml.rb │ │ ├── style.rb │ │ ├── styles/ │ │ │ ├── _map.rb │ │ │ ├── cycnus.rb │ │ │ └── murphy.rb │ │ ├── token_classes.rb │ │ └── tokens.rb │ └── coderay.rb ├── default_value_for/ │ ├── LICENSE.TXT │ ├── README.rdoc │ ├── Rakefile │ ├── init.rb │ └── test.rb ├── delayed_job/ │ ├── MIT-LICENSE │ ├── README.textile │ ├── Rakefile │ ├── VERSION │ ├── contrib/ │ │ └── delayed_job.monitrc │ ├── delayed_job.gemspec │ ├── generators/ │ │ └── delayed_job/ │ │ ├── delayed_job_generator.rb │ │ └── templates/ │ │ ├── migration.rb │ │ └── script │ ├── init.rb │ ├── lib/ │ │ ├── delayed/ │ │ │ ├── command.rb │ │ │ ├── job.rb │ │ │ ├── message_sending.rb │ │ │ ├── performable_method.rb │ │ │ ├── recipes.rb │ │ │ ├── tasks.rb │ │ │ └── worker.rb │ │ └── delayed_job.rb │ ├── recipes/ │ │ └── delayed_job.rb │ ├── spec/ │ │ ├── delayed_method_spec.rb │ │ ├── job_spec.rb │ │ ├── sample_jobs.rb │ │ ├── spec_helper.rb │ │ ├── story_spec.rb │ │ └── worker_spec.rb │ └── tasks/ │ └── jobs.rake ├── engines/ │ ├── .gitignore │ ├── CHANGELOG │ ├── MIT-LICENSE │ ├── README │ ├── Rakefile │ ├── about.yml │ ├── boot.rb │ ├── generators/ │ │ └── plugin_migration/ │ │ ├── USAGE │ │ ├── plugin_migration_generator.rb │ │ └── templates/ │ │ └── plugin_migration.erb │ ├── init.rb │ ├── lib/ │ │ ├── engines/ │ │ │ ├── assets.rb │ │ │ ├── plugin/ │ │ │ │ ├── list.rb │ │ │ │ ├── loader.rb │ │ │ │ ├── locator.rb │ │ │ │ └── migrator.rb │ │ │ ├── plugin.rb │ │ │ ├── rails_extensions/ │ │ │ │ ├── asset_helpers.rb │ │ │ │ ├── dependencies.rb │ │ │ │ ├── form_tag_helpers.rb │ │ │ │ ├── migrations.rb │ │ │ │ └── rails.rb │ │ │ ├── tasks/ │ │ │ │ ├── engines.rake │ │ │ │ └── engines.rake~HEAD │ │ │ └── testing.rb │ │ └── engines.rb │ └── test/ │ ├── app/ │ │ ├── controllers/ │ │ │ ├── app_and_plugin_controller.rb │ │ │ └── namespace/ │ │ │ └── app_and_plugin_controller.rb │ │ ├── helpers/ │ │ │ └── mail_helper.rb │ │ ├── models/ │ │ │ ├── app_and_plugin_model.rb │ │ │ └── notify_mail.rb │ │ ├── things/ │ │ │ └── thing.rb │ │ └── views/ │ │ ├── app_and_plugin/ │ │ │ └── a_view.html.erb │ │ ├── namespace/ │ │ │ └── app_and_plugin/ │ │ │ └── a_view.html.erb │ │ ├── notify_mail/ │ │ │ ├── implicit_multipart.text.html.erb │ │ │ ├── implicit_multipart.text.plain.erb │ │ │ ├── multipart_html.html.erb │ │ │ ├── multipart_plain.html.erb │ │ │ └── signup.text.plain.erb │ │ └── plugin_mail/ │ │ ├── mail_from_plugin_with_application_template.text.plain.erb │ │ └── multipart_from_plugin_with_application_template_plain.html.erb │ ├── functional/ │ │ ├── controller_loading_test.rb │ │ ├── exception_notification_compatibility_test.rb │ │ ├── locale_loading_test.rb │ │ ├── routes_test.rb │ │ ├── view_helpers_test.rb │ │ └── view_loading_test.rb │ ├── lib/ │ │ ├── app_and_plugin_lib_model.rb │ │ ├── engines_test_helper.rb │ │ └── render_information.rb │ ├── plugins/ │ │ ├── alpha_plugin/ │ │ │ ├── app/ │ │ │ │ ├── controllers/ │ │ │ │ │ ├── alpha_plugin_controller.rb │ │ │ │ │ ├── app_and_plugin_controller.rb │ │ │ │ │ ├── namespace/ │ │ │ │ │ │ ├── alpha_plugin_controller.rb │ │ │ │ │ │ ├── app_and_plugin_controller.rb │ │ │ │ │ │ └── shared_plugin_controller.rb │ │ │ │ │ └── shared_plugin_controller.rb │ │ │ │ ├── models/ │ │ │ │ │ ├── alpha_plugin_model.rb │ │ │ │ │ ├── app_and_plugin_model.rb │ │ │ │ │ └── shared_plugin_model.rb │ │ │ │ └── views/ │ │ │ │ ├── alpha_plugin/ │ │ │ │ │ └── a_view.html.erb │ │ │ │ ├── app_and_plugin/ │ │ │ │ │ └── a_view.html.erb │ │ │ │ ├── layouts/ │ │ │ │ │ └── plugin_layout.erb │ │ │ │ ├── namespace/ │ │ │ │ │ ├── alpha_plugin/ │ │ │ │ │ │ └── a_view.html.erb │ │ │ │ │ ├── app_and_plugin/ │ │ │ │ │ │ └── a_view.html.erb │ │ │ │ │ └── shared_plugin/ │ │ │ │ │ └── a_view.html.erb │ │ │ │ └── shared_plugin/ │ │ │ │ └── a_view.html.erb │ │ │ ├── lib/ │ │ │ │ ├── alpha_plugin_lib_model.rb │ │ │ │ └── app_and_plugin_lib_model.rb │ │ │ └── locales/ │ │ │ └── en.yml │ │ ├── beta_plugin/ │ │ │ ├── app/ │ │ │ │ ├── controllers/ │ │ │ │ │ ├── app_and_plugin_controller.rb │ │ │ │ │ ├── namespace/ │ │ │ │ │ │ └── shared_plugin_controller.rb │ │ │ │ │ └── shared_plugin_controller.rb │ │ │ │ ├── models/ │ │ │ │ │ └── shared_plugin_model.rb │ │ │ │ └── views/ │ │ │ │ ├── namespace/ │ │ │ │ │ └── shared_plugin/ │ │ │ │ │ └── a_view.html.erb │ │ │ │ └── shared_plugin/ │ │ │ │ └── a_view.html.erb │ │ │ ├── init.rb │ │ │ └── locales/ │ │ │ └── en.yml │ │ ├── not_a_plugin/ │ │ │ └── public/ │ │ │ └── should_not_be_copied.txt │ │ ├── test_assets/ │ │ │ ├── app/ │ │ │ │ ├── controllers/ │ │ │ │ │ └── assets_controller.rb │ │ │ │ └── views/ │ │ │ │ ├── assets/ │ │ │ │ │ └── index.html.erb │ │ │ │ └── layouts/ │ │ │ │ └── assets.html.erb │ │ │ ├── init.rb │ │ │ └── public/ │ │ │ ├── file.txt │ │ │ └── subfolder/ │ │ │ └── file_in_subfolder.txt │ │ ├── test_assets_with_assets_directory/ │ │ │ ├── assets/ │ │ │ │ ├── file.txt │ │ │ │ └── subfolder/ │ │ │ │ └── file_in_subfolder.txt │ │ │ └── init.rb │ │ ├── test_assets_with_no_subdirectory/ │ │ │ ├── assets/ │ │ │ │ └── file.txt │ │ │ └── init.rb │ │ ├── test_code_mixing/ │ │ │ ├── app/ │ │ │ │ └── things/ │ │ │ │ └── thing.rb │ │ │ └── init.rb │ │ ├── test_load_path/ │ │ │ └── init.rb │ │ ├── test_migration/ │ │ │ ├── db/ │ │ │ │ └── migrate/ │ │ │ │ ├── 001_create_tests.rb │ │ │ │ ├── 002_create_others.rb │ │ │ │ └── 003_create_extras.rb │ │ │ └── init.rb │ │ ├── test_plugin_mailing/ │ │ │ ├── app/ │ │ │ │ ├── models/ │ │ │ │ │ └── plugin_mail.rb │ │ │ │ └── views/ │ │ │ │ └── plugin_mail/ │ │ │ │ ├── mail_from_plugin.erb │ │ │ │ ├── multipart_from_plugin_html.html.erb │ │ │ │ ├── multipart_from_plugin_plain.html.erb │ │ │ │ ├── multipart_from_plugin_with_application_template_html.html.erb │ │ │ │ └── multipart_from_plugin_with_application_template_plain.html.erb │ │ │ └── init.rb │ │ ├── test_routing/ │ │ │ ├── app/ │ │ │ │ └── controllers/ │ │ │ │ ├── namespace/ │ │ │ │ │ └── test_routing_controller.rb │ │ │ │ └── test_routing_controller.rb │ │ │ ├── config/ │ │ │ │ └── routes.rb │ │ │ └── init.rb │ │ └── test_testing/ │ │ ├── app/ │ │ │ └── README.txt │ │ ├── init.rb │ │ └── test/ │ │ ├── fixtures/ │ │ │ └── testing_fixtures.yml │ │ └── unit/ │ │ └── override_test.rb │ └── unit/ │ ├── action_mailer_test.rb │ ├── arbitrary_code_mixing_test.rb │ ├── assets_test.rb │ ├── backwards_compat_test.rb │ ├── load_path_test.rb │ ├── migration_test.rb │ ├── model_and_lib_test.rb │ ├── plugins_test.rb │ ├── test_testing/ │ │ └── override_test.rb │ └── testing_test.rb ├── exceptional/ │ ├── History.txt │ ├── Manifest │ ├── README │ ├── Rakefile │ ├── bin/ │ │ └── ginger │ ├── exceptional.gemspec │ ├── exceptional.yml │ ├── ginger_scenarios.rb │ ├── init.rb │ ├── install.rb │ ├── lib/ │ │ ├── exceptional/ │ │ │ ├── api.rb │ │ │ ├── bootstrap.rb │ │ │ ├── config.rb │ │ │ ├── exception_data.rb │ │ │ ├── integration/ │ │ │ │ └── rails.rb │ │ │ ├── log.rb │ │ │ ├── remote.rb │ │ │ └── version.rb │ │ └── exceptional.rb │ └── spec/ │ ├── api_spec.rb │ ├── bootstrap_spec.rb │ ├── config_spec.rb │ ├── exception_data_spec.rb │ ├── exceptional_rescue_from_spec.rb │ ├── exceptional_spec.rb │ ├── log_spec.rb │ ├── remote_spec.rb │ └── spec_helper.rb ├── googlecharts/ │ ├── History.txt │ ├── License.txt │ ├── Manifest.txt │ ├── README │ ├── README.markdown │ ├── README.txt │ ├── Rakefile │ ├── VERSION │ ├── config/ │ │ ├── hoe.rb │ │ └── requirements.rb │ ├── lib/ │ │ ├── gchart/ │ │ │ ├── aliases.rb │ │ │ ├── tasks/ │ │ │ │ ├── deployment.rake │ │ │ │ ├── environment.rake │ │ │ │ ├── rspec.rake │ │ │ │ └── website.rake │ │ │ ├── theme.rb │ │ │ └── version.rb │ │ ├── gchart.rb │ │ ├── googlecharts.rb │ │ └── themes.yml │ ├── script/ │ │ ├── destroy │ │ ├── generate │ │ └── txt2html │ ├── setup.rb │ ├── spec/ │ │ ├── fixtures/ │ │ │ ├── another_test_theme.yml │ │ │ └── test_theme.yml │ │ ├── gchart_spec.rb │ │ ├── spec_helper.rb │ │ └── theme_spec.rb │ └── website/ │ ├── index.html │ ├── index.txt │ ├── javascripts/ │ │ └── rounded_corners_lite.inc.js │ ├── stylesheets/ │ │ └── screen.css │ └── template.rhtml ├── gravatar/ │ ├── .gitignore │ ├── MIT-LICENSE │ ├── README.rdoc │ ├── Rakefile │ ├── about.yml │ ├── init.rb │ ├── lib/ │ │ └── gravatar.rb │ └── spec/ │ └── gravatar_spec.rb ├── jrails/ │ ├── CHANGELOG │ ├── LICENSE │ ├── README.rdoc │ ├── Rakefile │ ├── VERSION.yml │ ├── bin/ │ │ └── jrails │ ├── init.rb │ ├── install.rb │ ├── javascripts/ │ │ ├── jquery-ui.js │ │ ├── jquery.js │ │ ├── jrails.js │ │ └── sources/ │ │ └── jrails.js │ ├── jrails.gemspec │ ├── lib/ │ │ ├── jquery_selector_assertions.rb │ │ ├── jrails.rb │ │ └── tasks/ │ │ └── jrails.rake │ └── rails/ │ └── init.rb ├── open_id_authentication/ │ ├── CHANGELOG │ ├── README │ ├── Rakefile │ ├── generators/ │ │ ├── open_id_authentication_tables/ │ │ │ ├── open_id_authentication_tables_generator.rb │ │ │ └── templates/ │ │ │ └── migration.rb │ │ └── upgrade_open_id_authentication_tables/ │ │ ├── templates/ │ │ │ └── migration.rb │ │ └── upgrade_open_id_authentication_tables_generator.rb │ ├── init.rb │ ├── lib/ │ │ ├── open_id_authentication/ │ │ │ ├── association.rb │ │ │ ├── db_store.rb │ │ │ ├── mem_cache_store.rb │ │ │ ├── nonce.rb │ │ │ ├── request.rb │ │ │ ├── tasks/ │ │ │ │ └── open_id_authentication_tasks.rake │ │ │ └── timeout_fixes.rb │ │ └── open_id_authentication.rb │ └── test/ │ ├── mem_cache_store_test.rb │ ├── normalize_test.rb │ ├── open_id_authentication_test.rb │ ├── status_test.rb │ └── test_helper.rb ├── pickle/ │ ├── History.txt │ ├── License.txt │ ├── README.rdoc │ ├── Rakefile │ ├── Todo.txt │ ├── VERSION │ ├── features/ │ │ ├── app/ │ │ │ ├── app.rb │ │ │ ├── blueprints.rb │ │ │ ├── factories.rb │ │ │ └── views/ │ │ │ └── notifier/ │ │ │ ├── email.erb │ │ │ └── user_email.erb │ │ ├── email/ │ │ │ └── email.feature │ │ ├── generator/ │ │ │ └── generators.feature │ │ ├── path/ │ │ │ ├── models_page.feature │ │ │ └── named_route_page.feature │ │ ├── pickle/ │ │ │ ├── create_from_active_record.feature │ │ │ ├── create_from_factory_girl.feature │ │ │ └── create_from_machinist.feature │ │ ├── step_definitions/ │ │ │ ├── email_steps.rb │ │ │ ├── extra_email_steps.rb │ │ │ ├── fork_steps.rb │ │ │ ├── generator_steps.rb │ │ │ ├── path_steps.rb │ │ │ └── pickle_steps.rb │ │ └── support/ │ │ ├── env.rb │ │ └── paths.rb │ ├── garlic.rb │ ├── init.rb │ ├── lib/ │ │ ├── pickle/ │ │ │ ├── adapter.rb │ │ │ ├── config.rb │ │ │ ├── email/ │ │ │ │ ├── parser.rb │ │ │ │ └── world.rb │ │ │ ├── email.rb │ │ │ ├── parser/ │ │ │ │ └── matchers.rb │ │ │ ├── parser.rb │ │ │ ├── path/ │ │ │ │ └── world.rb │ │ │ ├── path.rb │ │ │ ├── session/ │ │ │ │ └── parser.rb │ │ │ ├── session.rb │ │ │ ├── version.rb │ │ │ └── world.rb │ │ └── pickle.rb │ ├── pickle.gemspec │ ├── rails_generators/ │ │ └── pickle/ │ │ ├── pickle_generator.rb │ │ └── templates/ │ │ ├── email_steps.rb │ │ ├── env.rb │ │ ├── paths.rb │ │ └── pickle_steps.rb │ └── spec/ │ ├── lib/ │ │ ├── pickle_adapter_spec.rb │ │ ├── pickle_config_spec.rb │ │ ├── pickle_email_parser_spec.rb │ │ ├── pickle_email_spec.rb │ │ ├── pickle_parser_matchers_spec.rb │ │ ├── pickle_parser_spec.rb │ │ ├── pickle_path_spec.rb │ │ ├── pickle_session_spec.rb │ │ └── pickle_spec.rb │ └── spec_helper.rb ├── prepend_engine_views/ │ └── init.rb ├── redmine_s3/ │ ├── README.rdoc │ ├── config/ │ │ ├── locales/ │ │ │ └── en.yml │ │ └── s3.yml.example │ ├── init.rb │ ├── lang/ │ │ └── en.yml │ ├── lib/ │ │ ├── S3.rb │ │ ├── redmine_s3/ │ │ │ └── connection.rb │ │ └── s3_helper.rb │ └── test/ │ └── test_helper.rb ├── rfpdf/ │ ├── CHANGELOG │ ├── MIT-LICENSE │ ├── README │ ├── init.rb │ ├── lib/ │ │ ├── rfpdf/ │ │ │ ├── bookmark.rb │ │ │ ├── chinese.rb │ │ │ ├── errors.rb │ │ │ ├── fpdf.rb │ │ │ ├── fpdf_eps.rb │ │ │ ├── japanese.rb │ │ │ ├── korean.rb │ │ │ ├── makefont.rb │ │ │ ├── rfpdf.rb │ │ │ └── view.rb │ │ └── rfpdf.rb │ └── test/ │ └── test_helper.rb ├── ruby-net-ldap-0.0.4/ │ ├── COPYING │ ├── ChangeLog │ ├── LICENCE │ ├── README │ ├── lib/ │ │ └── net/ │ │ ├── ber.rb │ │ ├── ldap/ │ │ │ ├── dataset.rb │ │ │ ├── entry.rb │ │ │ ├── filter.rb │ │ │ ├── pdu.rb │ │ │ └── psw.rb │ │ ├── ldap.rb │ │ └── ldif.rb │ └── tests/ │ ├── testber.rb │ ├── testdata.ldif │ ├── testem.rb │ ├── testfilter.rb │ ├── testldap.rb │ ├── testldif.rb │ └── testpsw.rb ├── seed_dump/ │ ├── CHANGELOG.rdoc │ ├── MIT-LICENSE │ ├── README.rdoc │ ├── Rakefile │ ├── VERSION │ ├── lib/ │ │ ├── seed_dump/ │ │ │ └── railtie.rb │ │ ├── seed_dump.rb │ │ └── tasks/ │ │ └── seed_dump.rake │ ├── seed_dump.gemspec │ └── test/ │ ├── seed_dump_test.rb │ └── test_helper.rb ├── selenium-on-rails/ │ ├── CHANGELOG │ ├── LICENSE-2.0.txt │ ├── README.md │ ├── Rakefile │ ├── doc/ │ │ ├── classes/ │ │ │ ├── SeleniumController.html │ │ │ ├── SeleniumHelper.html │ │ │ ├── SeleniumOnRails/ │ │ │ │ ├── FixtureLoader.html │ │ │ │ ├── PartialsSupport.html │ │ │ │ ├── Paths.html │ │ │ │ ├── RSelenese.html │ │ │ │ ├── Renderer.html │ │ │ │ ├── Selenese.html │ │ │ │ ├── SuiteRenderer.html │ │ │ │ ├── TestBuilder.html │ │ │ │ ├── TestBuilderAccessors.html │ │ │ │ ├── TestBuilderActions.html │ │ │ │ ├── TestBuilderUserAccessors.html │ │ │ │ └── TestBuilderUserActions.html │ │ │ ├── SeleniumOnRails.html │ │ │ └── SeleniumOnRailsConfig.html │ │ ├── files/ │ │ │ ├── CHANGELOG.html │ │ │ ├── README.html │ │ │ └── lib/ │ │ │ ├── controllers/ │ │ │ │ └── selenium_controller_rb.html │ │ │ ├── selenium_helper_rb.html │ │ │ ├── selenium_on_rails/ │ │ │ │ ├── acceptance_test_runner_rb.html │ │ │ │ ├── fixture_loader_rb.html │ │ │ │ ├── partials_support_rb.html │ │ │ │ ├── paths_rb.html │ │ │ │ ├── renderer_rb.html │ │ │ │ ├── rselenese_rb.html │ │ │ │ ├── selenese_rb.html │ │ │ │ ├── suite_renderer_rb.html │ │ │ │ ├── test_builder_accessors_rb.html │ │ │ │ ├── test_builder_actions_rb.html │ │ │ │ └── test_builder_rb.html │ │ │ ├── selenium_on_rails_config_rb.html │ │ │ └── selenium_on_rails_rb.html │ │ ├── fr_class_index.html │ │ ├── fr_file_index.html │ │ ├── fr_method_index.html │ │ ├── index.html │ │ └── rdoc-style.css │ ├── generators/ │ │ └── selenium/ │ │ ├── USAGE │ │ ├── selenium_generator.rb │ │ └── templates/ │ │ ├── rhtml.html.erb │ │ ├── rselenese.html.erb │ │ └── selenese.html.erb │ ├── init.rb │ ├── lib/ │ │ ├── controllers/ │ │ │ ├── selenium_controller.rb │ │ │ └── switch_environment_controller.rb │ │ ├── selenium_helper.rb │ │ ├── selenium_on_rails/ │ │ │ ├── acceptance_test_runner.rb │ │ │ ├── fixture_loader.rb │ │ │ ├── partials_support.rb │ │ │ ├── paths.rb │ │ │ ├── renderer.rb │ │ │ ├── rselenese.rb │ │ │ ├── selenese.rb │ │ │ ├── suite_renderer.rb │ │ │ ├── tasks/ │ │ │ │ └── test_acceptance.rake │ │ │ ├── test_builder.rb │ │ │ ├── test_builder_accessors.rb │ │ │ ├── test_builder_actions.rb │ │ │ ├── test_builder_user_accessors.rb.example │ │ │ └── test_builder_user_actions.rb.example │ │ ├── selenium_on_rails.rb │ │ ├── selenium_on_rails_config.rb │ │ └── views/ │ │ ├── layouts/ │ │ │ └── layout.html.erb │ │ ├── record.html.erb │ │ ├── selenium_helper.rb │ │ ├── setup.html.erb │ │ └── test_suite.html.erb │ ├── log/ │ │ └── default.yml │ ├── routes.rb │ ├── selenium-core/ │ │ ├── Blank.html │ │ ├── InjectedRemoteRunner.html │ │ ├── RemoteRunner.html │ │ ├── SeleniumLog.html │ │ ├── TestPrompt.html │ │ ├── TestRunner-splash.html │ │ ├── TestRunner.hta │ │ ├── TestRunner.html │ │ ├── domviewer/ │ │ │ ├── domviewer.css │ │ │ ├── domviewer.html │ │ │ └── selenium-domviewer.js │ │ ├── iedoc-core.xml │ │ ├── iedoc.xml │ │ ├── lib/ │ │ │ ├── cssQuery/ │ │ │ │ ├── cssQuery-p.js │ │ │ │ └── src/ │ │ │ │ ├── cssQuery-level2.js │ │ │ │ ├── cssQuery-level3.js │ │ │ │ ├── cssQuery-standard.js │ │ │ │ └── cssQuery.js │ │ │ ├── prototype.js │ │ │ ├── scriptaculous/ │ │ │ │ ├── builder.js │ │ │ │ ├── controls.js │ │ │ │ ├── dragdrop.js │ │ │ │ ├── effects.js │ │ │ │ ├── scriptaculous.js │ │ │ │ ├── slider.js │ │ │ │ └── unittest.js │ │ │ └── snapsie.js │ │ ├── scripts/ │ │ │ ├── find_matching_child.js │ │ │ ├── htmlutils.js │ │ │ ├── injection.html │ │ │ ├── selenium-api.js │ │ │ ├── selenium-browserbot.js │ │ │ ├── selenium-browserdetect.js │ │ │ ├── selenium-commandhandlers.js │ │ │ ├── selenium-executionloop.js │ │ │ ├── selenium-logging.js │ │ │ ├── selenium-remoterunner.js │ │ │ ├── selenium-testrunner.js │ │ │ ├── selenium-version.js │ │ │ ├── ui-doc.html │ │ │ ├── ui-element.js │ │ │ ├── ui-map-sample.js │ │ │ ├── user-extensions.js │ │ │ ├── user-extensions.js.sample │ │ │ └── xmlextras.js │ │ ├── selenium-test.css │ │ ├── selenium.css │ │ └── xpath/ │ │ ├── dom.js │ │ ├── javascript-xpath-0.1.11.js │ │ ├── util.js │ │ ├── xmltoken.js │ │ └── xpath.js │ ├── selenium.yml │ ├── test/ │ │ ├── fixtures/ │ │ │ ├── config.yml │ │ │ └── selenium.yml │ │ ├── paths_test.rb │ │ ├── renderer_test.rb │ │ ├── rselenese_test.rb │ │ ├── selenese_test.rb │ │ ├── selenium_controller_test.rb │ │ ├── selenium_on_rails_config_test.rb │ │ ├── selenium_support_test.rb │ │ ├── setup_test.rb │ │ ├── suite_renderer_test.rb │ │ ├── switch_environment_controller_test.rb │ │ ├── test_builder_functions_authortest.rb │ │ └── test_helper.rb │ └── test_data/ │ ├── _partial.rsel │ ├── backup.html~ │ ├── own_layout.html │ ├── partials/ │ │ ├── _html.html │ │ ├── _nesting.rsel │ │ ├── _rhtml.html.erb │ │ ├── _rsel.rsel │ │ ├── _sel.sel │ │ └── all_partials.rsel │ ├── rhtml.html.erb │ ├── rselenese.rsel │ ├── selenese.sel │ ├── suite_one/ │ │ ├── subsuite/ │ │ │ └── suite_one_subsuite_testcase.sel │ │ ├── suite_one_testcase1.sel │ │ └── suite_one_testcase2.sel │ └── suite_two/ │ └── suite_two_testcase.sel ├── simple-private-messages/ │ ├── MIT-LICENSE │ ├── README.rdoc │ ├── Rakefile │ ├── generators/ │ │ ├── private_message_model/ │ │ │ ├── USAGE │ │ │ ├── private_message_model_generator.rb │ │ │ └── templates/ │ │ │ ├── migration.rb │ │ │ └── model.rb │ │ └── private_message_scaffold/ │ │ ├── USAGE │ │ ├── private_message_scaffold_generator.rb │ │ └── templates/ │ │ ├── controller.rb │ │ ├── view_index.html.erb │ │ ├── view_index_inbox.html.erb │ │ ├── view_index_sent.html.erb │ │ ├── view_new.html.erb │ │ └── view_show.html.erb │ ├── init.rb │ ├── lib/ │ │ └── professionalnerd/ │ │ └── simple_private_messages/ │ │ ├── has_private_messages_extensions.rb │ │ ├── private_message_extensions.rb │ │ └── tasks/ │ │ └── simple_private_messages_tasks.rake │ └── test/ │ ├── database.yml │ ├── fixtures/ │ │ ├── message.rb │ │ └── user.rb │ ├── schema.rb │ ├── test_helper.rb │ └── unit/ │ ├── message_model.rb │ └── user_model.rb ├── textile-editor-helper/ │ ├── CHANGELOG │ ├── MIT-LICENSE │ ├── README │ ├── Rakefile │ ├── assets/ │ │ ├── javascripts/ │ │ │ ├── textile-editor-config.js │ │ │ └── textile-editor.js │ │ └── stylesheets/ │ │ └── textile-editor.css │ ├── init.rb │ ├── install.rb │ ├── lib/ │ │ ├── tasks/ │ │ │ └── textile_editor_helper_tasks.rake │ │ └── textile_editor_helper.rb │ └── test/ │ ├── abstract_unit.rb │ └── textile_editor_helper_test.rb └── yaml_db/ ├── README ├── Rakefile ├── about.yml ├── init.rb ├── lib/ │ ├── tasks/ │ │ └── yaml_db_tasks.rake │ └── yaml_db.rb └── spec/ ├── base.rb ├── yaml_dump_spec.rb ├── yaml_load_spec.rb └── yaml_utils_spec.rb