Changeset [16254497901da4c7ef9f5516a726e7d40eb63b8b] by Johnny Shields

January 5th, 2018 @ 10:40 PM

Committed by Johnny Shields

  • A Vagrantfile
  • A db/migrate/20180102075234_add_account_counter_caches.rb
  • M ".gitignore"
  • M ".rubocop.yml"
  • M ".rubocop_todo.yml"
  • M ".travis.yml"
  • M CHANGELOG.md
  • M Capfile
  • M Gemfile
  • M Gemfile.lock
  • M Guardfile
  • M Rakefile
  • M app/controllers/admin/application_controller.rb
  • M app/controllers/admin/field_groups_controller.rb
  • M app/controllers/admin/fields_controller.rb
  • M app/controllers/admin/groups_controller.rb
  • M app/controllers/admin/plugins_controller.rb
  • M app/controllers/admin/settings_controller.rb
  • M app/controllers/admin/tags_controller.rb
  • M app/controllers/admin/users_controller.rb
  • M app/controllers/application_controller.rb
  • M app/controllers/authentications_controller.rb
  • M app/controllers/comments_controller.rb
  • M app/controllers/emails_controller.rb
  • M app/controllers/entities/accounts_controller.rb
  • M app/controllers/entities/campaigns_controller.rb
  • M app/controllers/entities/contacts_controller.rb
  • M app/controllers/entities/leads_controller.rb
  • M app/controllers/entities/opportunities_controller.rb
  • M app/controllers/entities_controller.rb
  • M app/controllers/home_controller.rb
  • M app/controllers/lists_controller.rb
  • M app/controllers/passwords_controller.rb
  • M app/controllers/tasks_controller.rb
  • M app/controllers/users_controller.rb
  • M app/helpers/accounts_helper.rb
  • M app/helpers/addresses_helper.rb
  • M app/helpers/admin/application_helper.rb
  • M app/helpers/admin/field_groups_helper.rb
  • M app/helpers/admin/fields_helper.rb
  • M app/helpers/admin/plugins_helper.rb
  • M app/helpers/admin/settings_helper.rb
  • M app/helpers/admin/tags_helper.rb
  • M app/helpers/admin/users_helper.rb
  • M app/helpers/application_helper.rb
  • M app/helpers/authentications_helper.rb
  • M app/helpers/campaigns_helper.rb
  • M app/helpers/comments_helper.rb
  • M app/helpers/contacts_helper.rb
  • M app/helpers/emails_helper.rb
  • M app/helpers/fields_helper.rb
  • M app/helpers/groups_helper.rb
  • M app/helpers/home_helper.rb
  • M app/helpers/javascript_helper.rb
  • M app/helpers/leads_helper.rb
  • M app/helpers/lists_helper.rb
  • M app/helpers/opportunities_helper.rb
  • M app/helpers/passwords_helper.rb
  • M app/helpers/remote_link_pagination_helper.rb
  • M app/helpers/tags_helper.rb
  • M app/helpers/tasks_helper.rb
  • M app/helpers/users_helper.rb
  • M app/helpers/versions_helper.rb
  • M app/inputs/date_pair_input.rb
  • M app/inputs/date_time_input.rb
  • M app/inputs/datetime_pair_input.rb
  • M app/inputs/text_input.rb
  • M app/mailers/dropbox_mailer.rb
  • M app/mailers/subscription_mailer.rb
  • M app/mailers/user_mailer.rb
  • M app/models/entities/account.rb
  • M app/models/entities/account_contact.rb
  • M app/models/entities/account_opportunity.rb
  • M app/models/entities/campaign.rb
  • M app/models/entities/contact.rb
  • M app/models/entities/contact_opportunity.rb
  • M app/models/entities/lead.rb
  • M app/models/entities/opportunity.rb
  • M app/models/fields/core_field.rb
  • M app/models/fields/custom_field.rb
  • M app/models/fields/custom_field_date_pair.rb
  • M app/models/fields/custom_field_datetime_pair.rb
  • M app/models/fields/custom_field_pair.rb
  • M app/models/fields/field.rb
  • M app/models/fields/field_group.rb
  • M app/models/list.rb
  • M app/models/observers/entity_observer.rb
  • M app/models/observers/lead_observer.rb
  • M app/models/observers/opportunity_observer.rb
  • M app/models/observers/task_observer.rb
  • M app/models/polymorphic/address.rb
  • M app/models/polymorphic/avatar.rb
  • M app/models/polymorphic/comment.rb
  • M app/models/polymorphic/email.rb
  • M app/models/polymorphic/tag.rb
  • M app/models/polymorphic/tagging.rb
  • M app/models/polymorphic/task.rb
  • M app/models/polymorphic/version.rb
  • M app/models/setting.rb
  • M app/models/users/ability.rb
  • M app/models/users/authentication.rb
  • M app/models/users/group.rb
  • M app/models/users/permission.rb
  • M app/models/users/preference.rb
  • M app/models/users/user.rb
  • M app/views/accounts/_index_brief.html.haml
  • M app/views/accounts/_index_long.html.haml
  • M app/views/accounts/_sidebar_show.html.haml
  • M app/views/accounts/_top_section.html.haml
  • M app/views/accounts/index.xls.builder
  • M app/views/admin/field_groups/_confirm.html.haml
  • M app/views/admin/tags/_confirm.html.haml
  • M app/views/admin/tags/_tag.html.haml
  • M app/views/admin/users/_confirm.html.haml
  • M app/views/admin/users/_user.html.haml
  • M app/views/application/_auto_complete.html.haml
  • M app/views/application/index.atom.builder
  • M app/views/application/index.rss.builder
  • M app/views/application/show.atom.builder
  • M app/views/application/show.rss.builder
  • M app/views/campaigns/_index_long.html.haml
  • M app/views/campaigns/_metrics.html.haml
  • M app/views/campaigns/_sidebar_show.html.haml
  • M app/views/campaigns/_top_section.html.haml
  • M app/views/campaigns/index.xls.builder
  • M app/views/contacts/_index_full.html.haml
  • M app/views/contacts/_index_long.html.haml
  • M app/views/contacts/_sidebar_show.html.haml
  • M app/views/contacts/_top_section.html.haml
  • M app/views/contacts/index.xls.builder
  • M app/views/emails/_email.html.haml
  • M app/views/home/_account.html.haml
  • M app/views/home/_task.html.haml
  • M app/views/home/index.atom.builder
  • M app/views/home/index.rss.builder
  • M app/views/layouts/header.xls.builder
  • M app/views/leads/_index_long.html.haml
  • M app/views/leads/_sidebar_show.html.haml
  • M app/views/leads/_top_section.html.haml
  • M app/views/leads/index.xls.builder
  • M app/views/opportunities/_index_long.html.haml
  • M app/views/opportunities/_sidebar_show.html.haml
  • M app/views/opportunities/_top_section.html.haml
  • M app/views/opportunities/index.xls.builder
  • M app/views/shared/_tasks.html.haml
  • M app/views/tasks/_assigned.html.haml
  • M app/views/tasks/_pending.html.haml
  • M app/views/tasks/_sidebar_index.html.haml
  • M app/views/tasks/_top_section.html.haml
  • M app/views/tasks/index.xls.builder
  • M bin/bundle
  • M bin/rails
  • M bin/rake
  • M config.ru
  • M config/application.rb
  • M config/boot.rb
  • M config/deploy.example.rb
  • M config/environment.rb
  • M config/environments/development.rb
  • M config/environments/production.rb
  • M config/environments/staging.rb
  • M config/environments/test.rb
  • M config/initializers/action_mailer.rb
  • M config/initializers/assets.rb
  • M config/initializers/authlogic.rb
  • M config/initializers/backtrace_silencers.rb
  • M config/initializers/constants.rb
  • M config/initializers/cookies_serializer.rb
  • M config/initializers/custom_field_ransack_translations.rb
  • M config/initializers/filter_parameter_logging.rb
  • M config/initializers/gravatar.rb
  • M config/initializers/inflections.rb
  • M config/initializers/locale.rb
  • M config/initializers/mime_types.rb
  • M config/initializers/paginate_arrays.rb
  • M config/initializers/paper_trail.rb
  • M config/initializers/ransack.rb
  • M config/initializers/relative_url_root.rb
  • M config/initializers/secret_token.rb
  • M config/initializers/session_store.rb
  • M config/initializers/simple_form.rb
  • M config/initializers/views.rb
  • M config/initializers/wrap_parameters.rb
  • M config/puma.rb
  • M config/routes.rb
  • M custom_plan.rb
  • M db/demo/accounts.yml
  • M db/demo/emails.yml
  • M db/migrate/20100928030598_create_sessions.rb
  • M db/migrate/20100928030599_create_users.rb
  • M db/migrate/20100928030600_create_openid_tables.rb
  • M db/migrate/20100928030601_create_accounts.rb
  • M db/migrate/20100928030602_create_permissions.rb
  • M db/migrate/20100928030603_create_settings.rb
  • M db/migrate/20100928030604_create_preferences.rb
  • M db/migrate/20100928030605_create_campaigns.rb
  • M db/migrate/20100928030606_create_leads.rb
  • M db/migrate/20100928030607_create_contacts.rb
  • M db/migrate/20100928030608_create_opportunities.rb
  • M db/migrate/20100928030609_create_account_contacts.rb
  • M db/migrate/20100928030610_create_account_opportunities.rb
  • M db/migrate/20100928030611_create_contact_opportunities.rb
  • M db/migrate/20100928030612_create_tasks.rb
  • M db/migrate/20100928030613_create_comments.rb
  • M db/migrate/20100928030614_create_activities.rb
  • M db/migrate/20100928030615_create_avatars.rb
  • M db/migrate/20100928030616_rename_remember_token.rb
  • M db/migrate/20100928030617_drop_openid_tables.rb
  • M db/migrate/20100928030618_add_admin_to_users.rb
  • M db/migrate/20100928030619_add_suspended_to_users.rb
  • M db/migrate/20100928030620_remove_uuid.rb
  • M db/migrate/20100928030621_add_email_to_accounts.rb
  • M db/migrate/20100928030622_add_background_info_to_models.rb
  • M db/migrate/20100928030623_create_addresses.rb
  • M db/migrate/20100928030624_add_index_on_permissions.rb
  • M db/migrate/20100928030625_create_emails.rb
  • M db/migrate/20100928030626_add_state_to_timeline_objects.rb
  • M db/migrate/20100928030627_acts_as_taggable_on_migration.rb
  • M db/migrate/20101221123456_add_single_access_token_to_users.rb
  • M db/migrate/20101221345678_add_rating_and_category_to_accounts.rb
  • M db/migrate/20110719082054_add_skype_to_contacts_and_leads.rb
  • M db/migrate/20111101083437_create_fields.rb
  • M db/migrate/20111101090312_create_field_groups.rb
  • M db/migrate/20111116091952_add_field_groups_tag_id.rb
  • M db/migrate/20111117041311_change_fields_collection_to_text.rb
  • M db/migrate/20111201030535_add_field_groups_klass_name.rb
  • M db/migrate/20120121054235_create_lists.rb
  • M db/migrate/20120216031616_create_versions.rb
  • M db/migrate/20120216042541_is_paranoid_to_paper_trail.rb
  • M db/migrate/20120220233724_add_versions_object_changes.rb
  • M db/migrate/20120224073107_remove_default_value_and_clear_settings.rb
  • M db/migrate/20120309070209_add_versions_related.rb
  • M db/migrate/20120314080441_add_subscribed_users_to_entities.rb
  • M db/migrate/20120316045804_activities_to_versions.rb
  • M db/migrate/20120405080727_change_subscribed_users_to_set.rb
  • M db/migrate/20120405080742_change_further_subscribed_users_to_set.rb
  • M db/migrate/20120406082136_create_groups.rb
  • M db/migrate/20120413034923_add_index_on_versions_item_type.rb
  • M db/migrate/20120510025219_add_not_null_constraints_for_timestamp_columns.rb
  • M db/migrate/20120528102124_increase_length_of_version_events.rb
  • M db/migrate/20120801032706_add_pair_id_to_fields.rb
  • M db/migrate/20121003063155_add_settings_to_custom_fields.rb
  • M db/migrate/20121221033947_fix_country_mapping.rb
  • M db/migrate/20131207033244_add_user_id_to_lists.rb
  • M db/migrate/20140916011927_add_created_at_index_on_versions.rb
  • M db/migrate/20140916012922_add_indexes_to_model_associations.rb
  • M db/migrate/20141126031837_increase_email_to254_chars.rb
  • M db/migrate/20141230021159_add_transaction_id_column_to_versions.rb
  • M db/migrate/20141230205453_add_missing_unique_indices.acts_as_taggable_on_engine.rb
  • M db/migrate/20141230205454_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb
  • M db/migrate/20141230205455_add_missing_taggable_index.acts_as_taggable_on_engine.rb
  • M db/migrate/20150123060900_convert_radio_to_radio_buttons.rb
  • M db/migrate/20150227123054_remove_last_request_at_from_users.rb
  • M db/migrate/20150427131956_create_index_related_type.rb
  • M db/migrate/20160511053730_add_account_contacts_index.rb
  • M db/schema.rb
  • M db/seeds.rb
  • M db/seeds/fields.rb
  • M fat_free_crm.gemspec
  • M lib/development_tasks/gem.rake
  • M lib/development_tasks/license.rake
  • M lib/development_tasks/rdoc.rake
  • M lib/development_tasks/rspec.rake
  • M lib/fat_free_crm.rb
  • M lib/fat_free_crm/callback.rb
  • M lib/fat_free_crm/comment_extensions.rb
  • M lib/fat_free_crm/core_ext.rb
  • M lib/fat_free_crm/core_ext/alias_method_chain.rb
  • M lib/fat_free_crm/core_ext/nil.rb
  • M lib/fat_free_crm/core_ext/string.rb
  • M lib/fat_free_crm/custom_fields.rb
  • M lib/fat_free_crm/engine.rb
  • M lib/fat_free_crm/errors.rb
  • M lib/fat_free_crm/exceptions.rb
  • M lib/fat_free_crm/export_csv.rb
  • M lib/fat_free_crm/exportable.rb
  • M lib/fat_free_crm/fields.rb
  • M lib/fat_free_crm/gem_dependencies.rb
  • M lib/fat_free_crm/gem_ext.rb
  • M lib/fat_free_crm/gem_ext/action_controller/base.rb
  • M lib/fat_free_crm/gem_ext/active_support/buffered_logger.rb
  • M lib/fat_free_crm/gem_ext/rails/engine.rb
  • M lib/fat_free_crm/gem_ext/rake/task.rb
  • M lib/fat_free_crm/gem_ext/simple_form/action_view_extensions/form_helper.rb
  • M lib/fat_free_crm/i18n.rb
  • M lib/fat_free_crm/load_settings.rb
  • M lib/fat_free_crm/mail_processor/base.rb
  • M lib/fat_free_crm/mail_processor/comment_replies.rb
  • M lib/fat_free_crm/mail_processor/dropbox.rb
  • M lib/fat_free_crm/permissions.rb
  • M lib/fat_free_crm/renderers.rb
  • M lib/fat_free_crm/secret_token_generator.rb
  • M lib/fat_free_crm/sortable.rb
  • M lib/fat_free_crm/tabs.rb
  • M lib/fat_free_crm/version.rb
  • M lib/fat_free_crm/view_factory.rb
  • M lib/gravatar_image_tag.rb
  • M lib/missing_translation_detector.rb
  • M lib/tasks/ffcrm/comment_replies.rake
  • M lib/tasks/ffcrm/config.rake
  • M lib/tasks/ffcrm/demo.rake
  • M lib/tasks/ffcrm/dropbox.rake
  • M lib/tasks/ffcrm/missing_translations.rake
  • M lib/tasks/ffcrm/secret.rake
  • M lib/tasks/ffcrm/settings.rake
  • M lib/tasks/ffcrm/setup.rake
  • M lib/tasks/ffcrm/update_data.rake
  • M script/rails
  • M spec/controllers/admin/groups_controller_spec.rb
  • M spec/controllers/admin/users_controller_spec.rb
  • M spec/controllers/applications_controller_spec.rb
  • M spec/controllers/authentications_controller_spec.rb
  • M spec/controllers/comments_controller_spec.rb
  • M spec/controllers/emails_controller_spec.rb
  • M spec/controllers/entities/accounts_controller_spec.rb
  • M spec/controllers/entities/campaigns_controller_spec.rb
  • M spec/controllers/entities/contacts_controller_spec.rb
  • M spec/controllers/entities/leads_controller_spec.rb
  • M spec/controllers/entities/opportunities_controller_spec.rb
  • M spec/controllers/entities_controller_spec.rb
  • M spec/controllers/home_controller_spec.rb
  • M spec/controllers/lists_controller_spec.rb
  • M spec/controllers/passwords_controller_spec.rb
  • M spec/controllers/tasks_controller_spec.rb
  • M spec/controllers/users_controller_spec.rb
  • M spec/factories/account_factories.rb
  • M spec/factories/campaign_factories.rb
  • M spec/factories/contact_factories.rb
  • M spec/factories/field_factories.rb
  • M spec/factories/lead_factories.rb
  • M spec/factories/list_factories.rb
  • M spec/factories/opportunity_factories.rb
  • M spec/factories/sequences.rb
  • M spec/factories/setting_factories.rb
  • M spec/factories/shared_factories.rb
  • M spec/factories/subscription_factories.rb
  • M spec/factories/tag_factories.rb
  • M spec/factories/task_factories.rb
  • M spec/factories/user_factories.rb
  • M spec/features/acceptance_helper.rb
  • M spec/features/accounts_spec.rb
  • M spec/features/admin/groups_spec.rb
  • M spec/features/admin/users_spec.rb
  • M spec/features/campaigns_spec.rb
  • M spec/features/contacts_spec.rb
  • M spec/features/dashboard_spec.rb
  • M spec/features/leads_spec.rb
  • M spec/features/opportunities_overview_spec.rb
  • M spec/features/opportunities_spec.rb
  • M spec/features/support/browser.rb
  • M spec/features/support/headless.rb
  • M spec/features/support/helpers.rb
  • M spec/features/support/maintain_sessions.rb
  • M spec/features/support/paths.rb
  • M spec/features/support/selector_helpers.rb
  • M spec/features/tasks_spec.rb
  • M spec/helpers/accounts_helper_spec.rb
  • M spec/helpers/admin/field_groups_helper_spec.rb
  • M spec/helpers/admin/plugins_helper_spec.rb
  • M spec/helpers/admin/settings_helper_spec.rb
  • M spec/helpers/admin/users_helper_spec.rb
  • M spec/helpers/application_helper_spec.rb
  • M spec/helpers/authentications_helper_spec.rb
  • M spec/helpers/campaigns_helper_spec.rb
  • M spec/helpers/comments_helper_spec.rb
  • M spec/helpers/contacts_helper_spec.rb
  • M spec/helpers/emails_helper_spec.rb
  • M spec/helpers/fields_helper_spec.rb
  • M spec/helpers/groups_helper_spec.rb
  • M spec/helpers/home_helper_spec.rb
  • M spec/helpers/leads_helper_spec.rb
  • M spec/helpers/lists_helper_spec.rb
  • M spec/helpers/opportunities_helper_spec.rb
  • M spec/helpers/passwords_helper_spec.rb
  • M spec/helpers/tasks_helper_spec.rb
  • M spec/helpers/users_helper_spec.rb
  • M spec/lib/comment_extensions_spec.rb
  • M spec/lib/core_ext/string_spec.rb
  • M spec/lib/errors_spec.rb
  • M spec/lib/fields_spec.rb
  • M spec/lib/mail_processor/base_spec.rb
  • M spec/lib/mail_processor/comment_replies_spec.rb
  • M spec/lib/mail_processor/dropbox_spec.rb
  • M spec/lib/mail_processor/sample_emails/dropbox.rb
  • M spec/lib/permissions_spec.rb
  • M spec/lib/secret_token_generator_spec.rb
  • M spec/lib/view_factory_spec.rb
  • M spec/mailers/subscription_mailer_spec.rb
  • M spec/mailers/user_mailer_spec.rb
  • M spec/models/entities/account_contact_spec.rb
  • M spec/models/entities/account_opportunity_spec.rb
  • M spec/models/entities/account_spec.rb
  • M spec/models/entities/campaign_spec.rb
  • M spec/models/entities/contact_opportunity_spec.rb
  • M spec/models/entities/contact_spec.rb
  • M spec/models/entities/lead_spec.rb
  • M spec/models/entities/opportunity_spec.rb
  • M spec/models/fields/custom_field_date_pair_spec.rb
  • M spec/models/fields/custom_field_pair_spec.rb
  • M spec/models/fields/custom_field_spec.rb
  • M spec/models/fields/field_group_spec.rb
  • M spec/models/fields/field_spec.rb
  • M spec/models/list_spec.rb
  • M spec/models/observers/entity_observer_spec.rb
  • M spec/models/polymorphic/address_spec.rb
  • M spec/models/polymorphic/avatar_spec.rb
  • M spec/models/polymorphic/comment_spec.rb
  • M spec/models/polymorphic/email_spec.rb
  • M spec/models/polymorphic/task_spec.rb
  • M spec/models/polymorphic/version_spec.rb
  • M spec/models/setting_spec.rb
  • M spec/models/users/abilities/user_ability_spec.rb
  • M spec/models/users/authentication_spec.rb
  • M spec/models/users/group_spec.rb
  • M spec/models/users/permission_spec.rb
  • M spec/models/users/preference_spec.rb
  • M spec/models/users/user_spec.rb
  • M spec/routing/accounts_routing_spec.rb
  • M spec/routing/admin/users_routing_spec.rb
  • M spec/routing/campaigns_routing_spec.rb
  • M spec/routing/comments_routing_spec.rb
  • M spec/routing/contacts_routing_spec.rb
  • M spec/routing/emails_routing_spec.rb
  • M spec/routing/leads_routing_spec.rb
  • M spec/routing/opportunities_routing_spec.rb
  • M spec/routing/tasks_routing_spec.rb
  • M spec/routing/users_routing_spec.rb
  • M spec/shared/controllers.rb
  • M spec/shared/models.rb
  • M spec/spec_helper.rb
  • M spec/support/assert_select.rb
  • M spec/support/auth_macros.rb
  • M spec/support/macros.rb
  • M spec/support/mail_processor_mocks.rb
  • M spec/support/uploaded_file.rb
  • M spec/views/accounts/_edit.haml_spec.rb
  • M spec/views/accounts/_new.haml_spec.rb
  • M spec/views/accounts/create.js.haml_spec.rb
  • M spec/views/accounts/destroy.js.haml_spec.rb
  • M spec/views/accounts/edit.js.haml_spec.rb
  • M spec/views/accounts/index.haml_spec.rb
  • M spec/views/accounts/index.js.haml_spec.rb
  • M spec/views/accounts/new.js.haml_spec.rb
  • M spec/views/accounts/show.haml_spec.rb
  • M spec/views/accounts/update.js.haml_spec.rb
  • M spec/views/admin/field_groups/create.js.haml_spec.rb
  • M spec/views/admin/field_groups/destroy.js.haml_spec.rb
  • M spec/views/admin/field_groups/edit.js.haml_spec.rb
  • M spec/views/admin/field_groups/new.js.haml_spec.rb
  • M spec/views/admin/field_groups/update.js.haml_spec.rb
  • M spec/views/admin/users/_create.haml_spec.rb
  • M spec/views/admin/users/create.js.haml_spec.rb
  • M spec/views/admin/users/destroy.js.haml_spec.rb
  • M spec/views/admin/users/edit.js.haml_spec.rb
  • M spec/views/admin/users/index.haml_spec.rb
  • M spec/views/admin/users/index.js.haml_spec.rb
  • M spec/views/admin/users/new.js.haml_spec.rb
  • M spec/views/admin/users/reactivate.js.haml_spec.rb
  • M spec/views/admin/users/show.haml_spec.rb
  • M spec/views/admin/users/suspend.js.haml_spec.rb
  • M spec/views/admin/users/update.js.haml_spec.rb
  • M spec/views/application/auto_complete.haml_spec.rb
  • M spec/views/authentications/new.haml_spec.rb
  • M spec/views/campaigns/_edit.haml_spec.rb
  • M spec/views/campaigns/_new.haml_spec.rb
  • M spec/views/campaigns/create.js.haml_spec.rb
  • M spec/views/campaigns/destroy.js.haml_spec.rb
  • M spec/views/campaigns/edit.js.haml_spec.rb
  • M spec/views/campaigns/index.haml_spec.rb
  • M spec/views/campaigns/index.js.haml_spec.rb
  • M spec/views/campaigns/new.js.haml_spec.rb
  • M spec/views/campaigns/show.haml_spec.rb
  • M spec/views/campaigns/update.js.haml_spec.rb
  • M spec/views/comments/edit.js.haml_spec.rb
  • M spec/views/contacts/_edit.haml_spec.rb
  • M spec/views/contacts/_new.haml_spec.rb
  • M spec/views/contacts/create.js.haml_spec.rb
  • M spec/views/contacts/destroy.js.haml_spec.rb
  • M spec/views/contacts/edit.js.haml_spec.rb
  • M spec/views/contacts/index.haml_spec.rb
  • M spec/views/contacts/index.js.html_spec.rb
  • M spec/views/contacts/new.js.haml_spec.rb
  • M spec/views/contacts/show.haml_spec.rb
  • M spec/views/contacts/update.js.haml_spec.rb
  • M spec/views/home/index.haml_spec.rb
  • M spec/views/home/index.js.haml_spec.rb
  • M spec/views/home/options.js.haml_spec.rb
  • M spec/views/leads/_convert.haml_spec.rb
  • M spec/views/leads/_edit.haml_spec.rb
  • M spec/views/leads/_new.haml_spec.rb
  • M spec/views/leads/_sidebar_show.haml_spec.rb
  • M spec/views/leads/convert.js.haml_spec.rb
  • M spec/views/leads/create.js.haml_spec.rb
  • M spec/views/leads/destroy.js.haml_spec.rb
  • M spec/views/leads/edit.js.haml_spec.rb
  • M spec/views/leads/index.haml_spec.rb
  • M spec/views/leads/index.js.haml_spec.rb
  • M spec/views/leads/new.js.haml_spec.rb
  • M spec/views/leads/promote.js.haml_spec.rb
  • M spec/views/leads/reject.js.haml_spec.rb
  • M spec/views/leads/show.haml_spec.rb
  • M spec/views/leads/update.js.haml_spec.rb
  • M spec/views/opportunities/_edit.haml_spec.rb
  • M spec/views/opportunities/_new.haml_spec.rb
  • M spec/views/opportunities/create.js.haml_spec.rb
  • M spec/views/opportunities/destroy.js.haml_spec.rb
  • M spec/views/opportunities/edit.js.haml_spec.rb
  • M spec/views/opportunities/index.haml_spec.rb
  • M spec/views/opportunities/index.js.haml_spec.rb
  • M spec/views/opportunities/new.js.haml_spec.rb
  • M spec/views/opportunities/show.haml_spec.rb
  • M spec/views/opportunities/update.js.haml_spec.rb
  • M spec/views/tasks/_edit.haml_spec.rb
  • M spec/views/tasks/complete.js.haml_spec.rb
  • M spec/views/tasks/create.js.haml_spec.rb
  • M spec/views/tasks/destroy.js.haml_spec.rb
  • M spec/views/tasks/edit.js.haml_spec.rb
  • M spec/views/tasks/index.haml_spec.rb
  • M spec/views/tasks/new.js.haml_spec.rb
  • M spec/views/tasks/uncomplete.js.haml_spec.rb
  • M spec/views/tasks/update.js.haml_spec.rb
  • M spec/views/users/avatar.js.haml_spec.rb
  • M spec/views/users/change_password.js.haml_spec.rb
  • M spec/views/users/edit.js.haml_spec.rb
  • M spec/views/users/password.js.haml_spec.rb
  • M spec/views/users/update.js.haml_spec.rb
  • M spec/views/users/upload_avatar.js.haml_spec.rb
  • M vendor/gems/globby-0.1.2/lib/globby/glob.rb
New-ticket Create new ticket

Create your profile

Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป

Ruby on Rails CRM platform for Web 2.0 and beyond