fat_free_crm 0.13.6 → 0.14.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of fat_free_crm might be problematic. Click here for more details.

Files changed (534) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +5 -0
  3. data/.travis.yml +8 -5
  4. data/CHANGELOG +26 -0
  5. data/Gemfile +26 -26
  6. data/Gemfile.lock +280 -250
  7. data/Guardfile +0 -1
  8. data/README.md +7 -9
  9. data/Rakefile +1 -1
  10. data/app/assets/javascripts/application.js.erb +1 -0
  11. data/app/assets/javascripts/crm.js.coffee +6 -7
  12. data/app/assets/javascripts/search.js.coffee +7 -1
  13. data/app/assets/stylesheets/about.css.scss +10 -0
  14. data/app/assets/stylesheets/application.css.erb +2 -0
  15. data/app/assets/stylesheets/common.scss +1 -1
  16. data/app/controllers/admin/application_controller.rb +3 -3
  17. data/app/controllers/admin/field_groups_controller.rb +12 -7
  18. data/app/controllers/admin/fields_controller.rb +21 -17
  19. data/app/controllers/admin/groups_controller.rb +10 -4
  20. data/app/controllers/admin/plugins_controller.rb +1 -2
  21. data/app/controllers/admin/settings_controller.rb +1 -2
  22. data/app/controllers/admin/tags_controller.rb +10 -4
  23. data/app/controllers/admin/users_controller.rb +32 -12
  24. data/app/controllers/application_controller.rb +58 -38
  25. data/app/controllers/authentications_controller.rb +5 -8
  26. data/app/controllers/comments_controller.rb +15 -11
  27. data/app/controllers/emails_controller.rb +1 -2
  28. data/app/controllers/entities/accounts_controller.rb +20 -20
  29. data/app/controllers/entities/campaigns_controller.rb +25 -22
  30. data/app/controllers/entities/contacts_controller.rb +25 -24
  31. data/app/controllers/entities/leads_controller.rb +33 -31
  32. data/app/controllers/entities/opportunities_controller.rb +31 -28
  33. data/app/controllers/entities_controller.rb +26 -22
  34. data/app/controllers/home_controller.rb +18 -18
  35. data/app/controllers/lists_controller.rb +11 -7
  36. data/app/controllers/passwords_controller.rb +5 -6
  37. data/app/controllers/tasks_controller.rb +23 -18
  38. data/app/controllers/users_controller.rb +31 -7
  39. data/app/helpers/accounts_helper.rb +40 -42
  40. data/app/helpers/addresses_helper.rb +1 -3
  41. data/app/helpers/admin/application_helper.rb +4 -4
  42. data/app/helpers/admin/field_groups_helper.rb +5 -7
  43. data/app/helpers/admin/fields_helper.rb +2 -3
  44. data/app/helpers/admin/plugins_helper.rb +0 -1
  45. data/app/helpers/admin/settings_helper.rb +0 -1
  46. data/app/helpers/admin/tags_helper.rb +1 -1
  47. data/app/helpers/admin/users_helper.rb +16 -18
  48. data/app/helpers/application_helper.rb +127 -119
  49. data/app/helpers/authentications_helper.rb +0 -1
  50. data/app/helpers/campaigns_helper.rb +5 -7
  51. data/app/helpers/comments_helper.rb +0 -1
  52. data/app/helpers/contacts_helper.rb +0 -1
  53. data/app/helpers/home_helper.rb +14 -14
  54. data/app/helpers/javascript_helper.rb +30 -0
  55. data/app/helpers/leads_helper.rb +7 -7
  56. data/app/helpers/opportunities_helper.rb +8 -10
  57. data/app/helpers/passwords_helper.rb +0 -1
  58. data/app/helpers/tags_helper.rb +1 -3
  59. data/app/helpers/tasks_helper.rb +24 -26
  60. data/app/helpers/users_helper.rb +6 -7
  61. data/app/helpers/versions_helper.rb +3 -5
  62. data/app/inputs/date_pair_input.rb +6 -7
  63. data/app/inputs/date_time_input.rb +3 -4
  64. data/app/inputs/datetime_pair_input.rb +0 -1
  65. data/app/inputs/text_input.rb +2 -2
  66. data/app/mailers/dropbox_mailer.rb +4 -7
  67. data/app/mailers/subscription_mailer.rb +4 -5
  68. data/app/mailers/user_mailer.rb +7 -9
  69. data/app/models/entities/account.rb +31 -28
  70. data/app/models/entities/account_contact.rb +2 -1
  71. data/app/models/entities/account_opportunity.rb +1 -1
  72. data/app/models/entities/campaign.rb +22 -19
  73. data/app/models/entities/contact.rb +55 -53
  74. data/app/models/entities/contact_opportunity.rb +1 -1
  75. data/app/models/entities/lead.rb +49 -41
  76. data/app/models/entities/opportunity.rb +38 -38
  77. data/app/models/fields/custom_field.rb +21 -27
  78. data/app/models/fields/custom_field_date_pair.rb +7 -8
  79. data/app/models/fields/custom_field_datetime_pair.rb +0 -2
  80. data/app/models/fields/custom_field_pair.rb +8 -10
  81. data/app/models/fields/field.rb +29 -30
  82. data/app/models/fields/field_group.rb +4 -4
  83. data/app/models/list.rb +1 -1
  84. data/app/models/observers/entity_observer.rb +1 -1
  85. data/app/models/observers/lead_observer.rb +1 -1
  86. data/app/models/observers/opportunity_observer.rb +1 -1
  87. data/app/models/observers/task_observer.rb +1 -1
  88. data/app/models/polymorphic/address.rb +7 -7
  89. data/app/models/polymorphic/avatar.rb +8 -9
  90. data/app/models/polymorphic/comment.rb +16 -10
  91. data/app/models/polymorphic/email.rb +13 -6
  92. data/app/models/polymorphic/tag.rb +2 -2
  93. data/app/models/polymorphic/task.rb +45 -45
  94. data/{config/initializers/paper_trail.rb → app/models/polymorphic/version.rb} +26 -31
  95. data/app/models/setting.rb +12 -17
  96. data/app/models/users/ability.rb +5 -6
  97. data/app/models/users/authentication.rb +6 -5
  98. data/app/models/users/group.rb +1 -3
  99. data/app/models/users/permission.rb +3 -3
  100. data/app/models/users/preference.rb +7 -7
  101. data/app/models/users/user.rb +36 -43
  102. data/app/views/accounts/_top_section.html.haml +2 -2
  103. data/app/views/accounts/edit.js.haml +0 -1
  104. data/app/views/admin/fields/_field.html.haml +1 -1
  105. data/app/views/admin/tags/_tag.html.haml +1 -1
  106. data/app/views/admin/users/_user.html.haml +4 -4
  107. data/app/views/campaigns/_top_section.html.haml +1 -1
  108. data/app/views/campaigns/edit.js.haml +0 -2
  109. data/app/views/contacts/_top_section.html.haml +1 -1
  110. data/app/views/contacts/edit.js.haml +0 -1
  111. data/app/views/entities/_basic_search.html.haml +1 -1
  112. data/app/views/home/_account.html.haml +2 -2
  113. data/app/views/home/_opportunity.html.haml +2 -2
  114. data/app/views/layouts/_about.html.haml +1 -1
  115. data/app/views/leads/_top_section.html.haml +1 -1
  116. data/app/views/leads/edit.js.haml +0 -2
  117. data/app/views/lists/_sidebar.html.haml +1 -1
  118. data/app/views/opportunities/_top_section.html.haml +2 -2
  119. data/app/views/opportunities/edit.js.haml +0 -1
  120. data/app/views/shared/_tags.html.haml +2 -1
  121. data/app/views/tasks/_edit.html.haml +2 -3
  122. data/app/views/tasks/_top_section.html.haml +1 -1
  123. data/app/views/users/_user.html.haml +2 -1
  124. data/app/views/users/opportunities_overview.html.haml +2 -2
  125. data/bin/bundle +3 -0
  126. data/bin/rails +4 -0
  127. data/bin/rake +4 -0
  128. data/config/application.rb +16 -33
  129. data/config/boot.rb +1 -1
  130. data/config/database.mysql.mac.yml +1 -0
  131. data/config/database.mysql.yml +1 -0
  132. data/config/database.postgres.docker.yml +1 -1
  133. data/config/database.postgres.yml +1 -0
  134. data/config/database.sqlite.yml +1 -0
  135. data/config/deploy.example.rb +3 -5
  136. data/config/environments/development.rb +13 -14
  137. data/config/environments/production.rb +8 -7
  138. data/config/environments/staging.rb +43 -41
  139. data/config/environments/test.rb +12 -14
  140. data/config/initializers/assets.rb +14 -0
  141. data/config/initializers/backtrace_silencers.rb +7 -0
  142. data/config/initializers/cookies_serializer.rb +3 -0
  143. data/config/initializers/custom_field_ransack_translations.rb +1 -1
  144. data/config/initializers/filter_parameter_logging.rb +4 -0
  145. data/config/initializers/inflections.rb +16 -0
  146. data/config/initializers/mime_types.rb +0 -1
  147. data/config/initializers/paginate_arrays.rb +0 -1
  148. data/config/initializers/ransack.rb +5 -5
  149. data/config/initializers/session_store.rb +5 -0
  150. data/config/initializers/simple_form.rb +1 -1
  151. data/config/initializers/views.rb +33 -33
  152. data/config/initializers/wrap_parameters.rb +14 -0
  153. data/config/locales/cz_fat_free_crm.yml +1 -1
  154. data/config/locales/de_fat_free_crm.yml +2 -2
  155. data/config/locales/en-GB_fat_free_crm.yml +2 -3
  156. data/config/locales/en-US_fat_free_crm.yml +2 -3
  157. data/config/locales/en.yml +23 -0
  158. data/config/locales/es-CL.yml +227 -0
  159. data/config/locales/es-CL_fat_free_crm.yml +929 -0
  160. data/config/locales/es-CL_ransack.yml +91 -0
  161. data/config/locales/es.yml +53 -59
  162. data/config/locales/es_fat_free_crm.yml +708 -370
  163. data/config/locales/es_ransack.yml +91 -0
  164. data/config/locales/fr-CA_fat_free_crm.yml +7 -7
  165. data/config/locales/fr_fat_free_crm.yml +285 -81
  166. data/config/locales/it_fat_free_crm.yml +1 -1
  167. data/config/locales/ja_fat_free_crm.yml +1 -1
  168. data/config/locales/nl.yml +210 -0
  169. data/config/locales/nl_fat_free_crm.yml +920 -0
  170. data/config/locales/nl_ransack.yml +91 -0
  171. data/config/locales/pl_fat_free_crm.yml +1 -1
  172. data/config/locales/pt-BR_fat_free_crm.yml +111 -38
  173. data/config/locales/ru_fat_free_crm.yml +3 -4
  174. data/config/locales/sv-SE_fat_free_crm.yml +1 -1
  175. data/config/locales/th.rb +157 -158
  176. data/config/locales/th_fat_free_crm.yml +1 -1
  177. data/config/locales/zh-CN_fat_free_crm.yml +3 -4
  178. data/config/routes.rb +93 -94
  179. data/config/unicorn.rb +25 -2
  180. data/custom_plan.rb +0 -2
  181. data/db/demo/accounts.yml +4 -5
  182. data/db/demo/addresses.yml +5 -5
  183. data/db/demo/campaigns.yml +2 -2
  184. data/db/demo/comments.yml +1 -1
  185. data/db/demo/contacts.yml +8 -8
  186. data/db/demo/emails.yml +5 -5
  187. data/db/demo/leads.yml +10 -10
  188. data/db/demo/opportunities.yml +2 -2
  189. data/db/demo/tasks.yml +2 -2
  190. data/db/demo/users.yml +12 -16
  191. data/db/migrate/20100928030598_create_sessions.rb +1 -2
  192. data/db/migrate/20100928030599_create_users.rb +24 -25
  193. data/db/migrate/20100928030600_create_openid_tables.rb +11 -12
  194. data/db/migrate/20100928030601_create_accounts.rb +14 -15
  195. data/db/migrate/20100928030602_create_permissions.rb +2 -3
  196. data/db/migrate/20100928030603_create_settings.rb +4 -5
  197. data/db/migrate/20100928030604_create_preferences.rb +3 -4
  198. data/db/migrate/20100928030605_create_campaigns.rb +19 -20
  199. data/db/migrate/20100928030606_create_leads.rb +26 -27
  200. data/db/migrate/20100928030607_create_contacts.rb +26 -27
  201. data/db/migrate/20100928030608_create_opportunities.rb +15 -16
  202. data/db/migrate/20100928030609_create_account_contacts.rb +2 -3
  203. data/db/migrate/20100928030610_create_account_opportunities.rb +2 -3
  204. data/db/migrate/20100928030611_create_contact_opportunities.rb +3 -4
  205. data/db/migrate/20100928030612_create_tasks.rb +14 -15
  206. data/db/migrate/20100928030613_create_comments.rb +6 -7
  207. data/db/migrate/20100928030614_create_activities.rb +6 -7
  208. data/db/migrate/20100928030615_create_avatars.rb +5 -6
  209. data/db/migrate/20100928030616_rename_remember_token.rb +0 -1
  210. data/db/migrate/20100928030617_drop_openid_tables.rb +11 -11
  211. data/db/migrate/20100928030618_add_admin_to_users.rb +1 -2
  212. data/db/migrate/20100928030619_add_suspended_to_users.rb +0 -1
  213. data/db/migrate/20100928030620_remove_uuid.rb +3 -3
  214. data/db/migrate/20100928030621_add_email_to_accounts.rb +1 -2
  215. data/db/migrate/20100928030622_add_background_info_to_models.rb +0 -1
  216. data/db/migrate/20100928030623_create_addresses.rb +14 -16
  217. data/db/migrate/20100928030624_add_index_on_permissions.rb +2 -3
  218. data/db/migrate/20100928030625_create_emails.rb +15 -16
  219. data/db/migrate/20100928030626_add_state_to_timeline_objects.rb +2 -3
  220. data/db/migrate/20100928030627_acts_as_taggable_on_migration.rb +2 -3
  221. data/db/migrate/20101221123456_add_single_access_token_to_users.rb +0 -1
  222. data/db/migrate/20101221345678_add_rating_and_category_to_accounts.rb +2 -3
  223. data/db/migrate/20110719082054_add_skype_to_contacts_and_leads.rb +2 -3
  224. data/db/migrate/20111101083437_create_fields.rb +14 -15
  225. data/db/migrate/20111101090312_create_field_groups.rb +4 -5
  226. data/db/migrate/20111116091952_add_field_groups_tag_id.rb +0 -1
  227. data/db/migrate/20111117041311_change_fields_collection_to_text.rb +0 -1
  228. data/db/migrate/20111201030535_add_field_groups_klass_name.rb +4 -4
  229. data/db/migrate/20120121054235_create_lists.rb +1 -1
  230. data/db/migrate/20120216031616_create_versions.rb +5 -5
  231. data/db/migrate/20120216042541_is_paranoid_to_paper_trail.rb +1 -3
  232. data/db/migrate/20120224073107_remove_default_value_and_clear_settings.rb +1 -1
  233. data/db/migrate/20120316045804_activities_to_versions.rb +6 -6
  234. data/db/migrate/20120405080727_change_subscribed_users_to_set.rb +5 -5
  235. data/db/migrate/20120405080742_change_further_subscribed_users_to_set.rb +5 -5
  236. data/db/migrate/20120406082136_create_groups.rb +1 -1
  237. data/db/migrate/20120510025219_add_not_null_constraints_for_timestamp_columns.rb +2 -1
  238. data/db/migrate/20120528102124_increase_length_of_version_events.rb +2 -2
  239. data/db/migrate/20121003063155_add_settings_to_custom_fields.rb +1 -1
  240. data/db/migrate/20121221033947_fix_country_mapping.rb +0 -1
  241. data/db/migrate/20131207033244_add_user_id_to_lists.rb +1 -1
  242. data/db/migrate/20141126031837_increase_email_to254_chars.rb +14 -14
  243. data/db/migrate/20141230021159_add_transaction_id_column_to_versions.rb +11 -0
  244. data/db/migrate/20141230205453_add_missing_unique_indices.acts_as_taggable_on_engine.rb +20 -0
  245. data/db/migrate/20141230205454_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb +15 -0
  246. data/db/migrate/20141230205455_add_missing_taggable_index.acts_as_taggable_on_engine.rb +10 -0
  247. data/db/migrate/20150123060900_convert_radio_to_radio_buttons.rb +10 -0
  248. data/db/migrate/20150227123054_remove_last_request_at_from_users.rb +5 -0
  249. data/db/migrate/20150427131956_create_index_related_type.rb +9 -0
  250. data/db/migrate/20160511053730_add_account_contacts_index.rb +5 -0
  251. data/db/schema.rb +236 -228
  252. data/db/seeds.rb +1 -2
  253. data/db/seeds/fields.rb +36 -37
  254. data/{fig.yml → docker-compose.yml} +0 -0
  255. data/fat_free_crm.gemspec +31 -18
  256. data/lib/development_tasks/license.rake +29 -29
  257. data/lib/fat_free_crm.rb +1 -5
  258. data/lib/fat_free_crm/callback.rb +28 -20
  259. data/lib/fat_free_crm/comment_extensions.rb +1 -1
  260. data/lib/fat_free_crm/core_ext.rb +1 -1
  261. data/lib/fat_free_crm/core_ext/nil.rb +0 -3
  262. data/lib/fat_free_crm/core_ext/string.rb +7 -21
  263. data/lib/fat_free_crm/custom_fields.rb +2 -2
  264. data/lib/fat_free_crm/engine.rb +14 -0
  265. data/lib/fat_free_crm/errors.rb +0 -2
  266. data/lib/fat_free_crm/exceptions.rb +3 -4
  267. data/lib/fat_free_crm/export_csv.rb +0 -2
  268. data/lib/fat_free_crm/exportable.rb +5 -7
  269. data/lib/fat_free_crm/fields.rb +7 -8
  270. data/lib/fat_free_crm/gem_dependencies.rb +4 -1
  271. data/lib/fat_free_crm/gem_ext/active_record/schema_dumper.rb +2 -2
  272. data/lib/fat_free_crm/gem_ext/active_support/buffered_logger.rb +0 -3
  273. data/lib/fat_free_crm/gem_ext/rails/engine.rb +5 -12
  274. data/lib/fat_free_crm/gem_ext/rake/task.rb +1 -1
  275. data/lib/fat_free_crm/gem_ext/simple_form/action_view_extensions/form_helper.rb +1 -2
  276. data/lib/fat_free_crm/i18n.rb +2 -3
  277. data/lib/fat_free_crm/load_settings.rb +0 -2
  278. data/lib/fat_free_crm/mail_processor/base.rb +15 -16
  279. data/lib/fat_free_crm/mail_processor/comment_replies.rb +5 -10
  280. data/lib/fat_free_crm/mail_processor/dropbox.rb +56 -59
  281. data/lib/fat_free_crm/permissions.rb +18 -15
  282. data/lib/fat_free_crm/renderers.rb +2 -2
  283. data/lib/fat_free_crm/secret_token_generator.rb +3 -9
  284. data/lib/fat_free_crm/sortable.rb +4 -8
  285. data/lib/fat_free_crm/version.rb +2 -2
  286. data/lib/fat_free_crm/view_factory.rb +3 -8
  287. data/lib/gravatar_image_tag.rb +19 -24
  288. data/lib/missing_translation_detector.rb +10 -10
  289. data/lib/tasks/ffcrm/comment_replies.rake +3 -5
  290. data/lib/tasks/ffcrm/config.rake +3 -5
  291. data/lib/tasks/ffcrm/demo.rake +14 -16
  292. data/lib/tasks/ffcrm/dropbox.rake +3 -5
  293. data/lib/tasks/ffcrm/missing_translations.rake +1 -1
  294. data/lib/tasks/ffcrm/secret.rake +1 -3
  295. data/lib/tasks/ffcrm/settings.rake +2 -4
  296. data/lib/tasks/ffcrm/setup.rake +3 -6
  297. data/lib/tasks/ffcrm/update_data.rake +110 -116
  298. data/spec/controllers/admin/groups_controller_spec.rb +0 -1
  299. data/spec/controllers/admin/users_controller_spec.rb +98 -102
  300. data/spec/controllers/applications_controller_spec.rb +17 -21
  301. data/spec/controllers/authentications_controller_spec.rb +57 -61
  302. data/spec/controllers/comments_controller_spec.rb +32 -39
  303. data/spec/controllers/emails_controller_spec.rb +6 -7
  304. data/spec/controllers/entities/accounts_controller_spec.rb +204 -214
  305. data/spec/controllers/entities/campaigns_controller_spec.rb +210 -224
  306. data/spec/controllers/entities/contacts_controller_spec.rb +250 -270
  307. data/spec/controllers/entities/leads_controller_spec.rb +415 -438
  308. data/spec/controllers/entities/opportunities_controller_spec.rb +344 -359
  309. data/spec/controllers/entities_controller_spec.rb +10 -14
  310. data/spec/controllers/home_controller_spec.rb +85 -92
  311. data/spec/controllers/lists_controller_spec.rb +0 -1
  312. data/spec/controllers/passwords_controller_spec.rb +5 -9
  313. data/spec/controllers/tasks_controller_spec.rb +193 -210
  314. data/spec/controllers/users_controller_spec.rb +137 -146
  315. data/spec/factories/account_factories.rb +11 -13
  316. data/spec/factories/campaign_factories.rb +6 -6
  317. data/spec/factories/contact_factories.rb +21 -22
  318. data/spec/factories/field_factories.rb +8 -10
  319. data/spec/factories/lead_factories.rb +16 -16
  320. data/spec/factories/list_factories.rb +2 -2
  321. data/spec/factories/opportunity_factories.rb +8 -10
  322. data/spec/factories/sequences.rb +8 -9
  323. data/spec/factories/setting_factories.rb +2 -2
  324. data/spec/factories/shared_factories.rb +26 -30
  325. data/spec/factories/tag_factories.rb +1 -1
  326. data/spec/factories/task_factories.rb +11 -11
  327. data/spec/factories/user_factories.rb +22 -27
  328. data/spec/features/acceptance_helper.rb +1 -1
  329. data/spec/features/accounts_spec.rb +65 -61
  330. data/spec/features/admin/groups_spec.rb +11 -12
  331. data/spec/features/admin/users_spec.rb +17 -19
  332. data/spec/features/campaigns_spec.rb +61 -57
  333. data/spec/features/contacts_spec.rb +90 -59
  334. data/spec/features/dashboard_spec.rb +20 -21
  335. data/spec/features/leads_spec.rb +88 -67
  336. data/spec/features/opportunities_overview_spec.rb +31 -31
  337. data/spec/features/opportunities_spec.rb +64 -60
  338. data/spec/features/support/browser.rb +2 -2
  339. data/spec/features/support/headless.rb +1 -1
  340. data/spec/features/support/helpers.rb +5 -6
  341. data/spec/features/support/paths.rb +1 -2
  342. data/spec/features/support/selector_helpers.rb +2 -2
  343. data/spec/features/tasks_spec.rb +60 -54
  344. data/spec/helpers/accounts_helper_spec.rb +2 -5
  345. data/spec/helpers/admin/field_groups_helper_spec.rb +4 -4
  346. data/spec/helpers/admin/plugins_helper_spec.rb +0 -1
  347. data/spec/helpers/admin/settings_helper_spec.rb +0 -1
  348. data/spec/helpers/admin/users_helper_spec.rb +0 -1
  349. data/spec/helpers/application_helper_spec.rb +30 -33
  350. data/spec/helpers/authentications_helper_spec.rb +2 -5
  351. data/spec/helpers/campaigns_helper_spec.rb +2 -5
  352. data/spec/helpers/comments_helper_spec.rb +2 -5
  353. data/spec/helpers/contacts_helper_spec.rb +2 -5
  354. data/spec/helpers/emails_helper_spec.rb +0 -1
  355. data/spec/helpers/fields_helper_spec.rb +0 -1
  356. data/spec/helpers/groups_helper_spec.rb +0 -1
  357. data/spec/helpers/home_helper_spec.rb +2 -5
  358. data/spec/helpers/leads_helper_spec.rb +2 -5
  359. data/spec/helpers/lists_helper_spec.rb +0 -1
  360. data/spec/helpers/opportunities_helper_spec.rb +2 -5
  361. data/spec/helpers/passwords_helper_spec.rb +2 -5
  362. data/spec/helpers/tasks_helper_spec.rb +1 -5
  363. data/spec/helpers/users_helper_spec.rb +9 -11
  364. data/spec/lib/comment_extensions_spec.rb +3 -3
  365. data/spec/lib/core_ext/string_spec.rb +1 -1
  366. data/spec/lib/errors_spec.rb +10 -10
  367. data/spec/lib/fields_spec.rb +23 -33
  368. data/spec/lib/mail_processor/base_spec.rb +41 -43
  369. data/spec/lib/mail_processor/comment_replies_spec.rb +17 -17
  370. data/spec/lib/mail_processor/dropbox_spec.rb +91 -95
  371. data/spec/lib/mail_processor/sample_emails/dropbox.rb +13 -14
  372. data/spec/lib/permissions_spec.rb +44 -47
  373. data/spec/lib/secret_token_generator_spec.rb +16 -28
  374. data/spec/lib/view_factory_spec.rb +18 -24
  375. data/spec/mailers/subscription_mailer_spec.rb +14 -16
  376. data/spec/mailers/user_mailer_spec.rb +33 -34
  377. data/spec/models/entities/account_contact_spec.rb +2 -3
  378. data/spec/models/entities/account_opportunity_spec.rb +2 -3
  379. data/spec/models/entities/account_spec.rb +52 -59
  380. data/spec/models/entities/campaign_spec.rb +32 -39
  381. data/spec/models/entities/contact_opportunity_spec.rb +2 -3
  382. data/spec/models/entities/contact_spec.rb +71 -72
  383. data/spec/models/entities/lead_spec.rb +15 -22
  384. data/spec/models/entities/opportunity_spec.rb +104 -103
  385. data/spec/models/fields/custom_field_date_pair_spec.rb +38 -44
  386. data/spec/models/fields/custom_field_pair_spec.rb +28 -36
  387. data/spec/models/fields/custom_field_spec.rb +50 -56
  388. data/spec/models/fields/field_group_spec.rb +1 -2
  389. data/spec/models/fields/field_spec.rb +13 -15
  390. data/spec/models/list_spec.rb +4 -4
  391. data/spec/models/observers/entity_observer_spec.rb +18 -21
  392. data/spec/models/polymorphic/address_spec.rb +1 -3
  393. data/spec/models/polymorphic/avatar_spec.rb +6 -8
  394. data/spec/models/polymorphic/comment_spec.rb +7 -9
  395. data/spec/models/polymorphic/email_spec.rb +1 -2
  396. data/spec/models/polymorphic/task_spec.rb +130 -142
  397. data/spec/models/polymorphic/version_spec.rb +84 -91
  398. data/spec/models/setting_spec.rb +17 -19
  399. data/spec/models/users/abilities/user_ability_spec.rb +25 -20
  400. data/spec/models/users/authentication_spec.rb +0 -1
  401. data/spec/models/users/group_spec.rb +0 -1
  402. data/spec/models/users/permission_spec.rb +12 -13
  403. data/spec/models/users/preference_spec.rb +15 -15
  404. data/spec/models/users/user_spec.rb +53 -55
  405. data/spec/routing/accounts_routing_spec.rb +12 -14
  406. data/spec/routing/admin/users_routing_spec.rb +7 -9
  407. data/spec/routing/campaigns_routing_spec.rb +13 -14
  408. data/spec/routing/comments_routing_spec.rb +5 -6
  409. data/spec/routing/contacts_routing_spec.rb +12 -14
  410. data/spec/routing/emails_routing_spec.rb +7 -8
  411. data/spec/routing/leads_routing_spec.rb +19 -21
  412. data/spec/routing/opportunities_routing_spec.rb +13 -15
  413. data/spec/routing/tasks_routing_spec.rb +14 -15
  414. data/spec/routing/users_routing_spec.rb +18 -19
  415. data/spec/shared/controllers.rb +35 -35
  416. data/spec/shared/models.rb +52 -55
  417. data/spec/spec_helper.rb +21 -42
  418. data/spec/support/assert_select.rb +19 -18
  419. data/spec/support/auth_macros.rb +3 -3
  420. data/spec/support/macros.rb +5 -6
  421. data/spec/support/mail_processor_mocks.rb +11 -11
  422. data/spec/views/accounts/_edit.haml_spec.rb +9 -9
  423. data/spec/views/accounts/_new.haml_spec.rb +8 -9
  424. data/spec/views/accounts/create.js.haml_spec.rb +11 -12
  425. data/spec/views/accounts/destroy.js.haml_spec.rb +6 -7
  426. data/spec/views/accounts/edit.js.haml_spec.rb +12 -13
  427. data/spec/views/accounts/index.haml_spec.rb +8 -8
  428. data/spec/views/accounts/index.js.haml_spec.rb +7 -8
  429. data/spec/views/accounts/new.js.haml_spec.rb +7 -8
  430. data/spec/views/accounts/show.haml_spec.rb +11 -12
  431. data/spec/views/accounts/update.js.haml_spec.rb +18 -18
  432. data/spec/views/admin/field_groups/create.js.haml_spec.rb +8 -10
  433. data/spec/views/admin/field_groups/destroy.js.haml_spec.rb +7 -9
  434. data/spec/views/admin/field_groups/edit.js.haml_spec.rb +5 -7
  435. data/spec/views/admin/field_groups/new.js.haml_spec.rb +6 -8
  436. data/spec/views/admin/field_groups/update.js.haml_spec.rb +7 -9
  437. data/spec/views/admin/users/_create.haml_spec.rb +4 -4
  438. data/spec/views/admin/users/create.js.haml_spec.rb +8 -9
  439. data/spec/views/admin/users/destroy.js.haml_spec.rb +6 -6
  440. data/spec/views/admin/users/edit.js.haml_spec.rb +7 -9
  441. data/spec/views/admin/users/index.haml_spec.rb +4 -5
  442. data/spec/views/admin/users/index.js.haml_spec.rb +6 -8
  443. data/spec/views/admin/users/new.js.haml_spec.rb +4 -6
  444. data/spec/views/admin/users/reactivate.js.haml_spec.rb +4 -4
  445. data/spec/views/admin/users/show.haml_spec.rb +0 -1
  446. data/spec/views/admin/users/suspend.js.haml_spec.rb +4 -4
  447. data/spec/views/admin/users/update.js.haml_spec.rb +6 -7
  448. data/spec/views/application/auto_complete.haml_spec.rb +12 -14
  449. data/spec/views/authentications/new.haml_spec.rb +6 -7
  450. data/spec/views/campaigns/_edit.haml_spec.rb +9 -9
  451. data/spec/views/campaigns/_new.haml_spec.rb +8 -8
  452. data/spec/views/campaigns/create.js.haml_spec.rb +11 -12
  453. data/spec/views/campaigns/destroy.js.haml_spec.rb +7 -8
  454. data/spec/views/campaigns/edit.js.haml_spec.rb +12 -20
  455. data/spec/views/campaigns/index.haml_spec.rb +6 -7
  456. data/spec/views/campaigns/index.js.haml_spec.rb +9 -10
  457. data/spec/views/campaigns/new.js.haml_spec.rb +7 -8
  458. data/spec/views/campaigns/show.haml_spec.rb +12 -13
  459. data/spec/views/campaigns/update.js.haml_spec.rb +16 -16
  460. data/spec/views/comments/edit.js.haml_spec.rb +7 -7
  461. data/spec/views/contacts/_edit.haml_spec.rb +21 -21
  462. data/spec/views/contacts/_new.haml_spec.rb +12 -13
  463. data/spec/views/contacts/create.js.haml_spec.rb +12 -13
  464. data/spec/views/contacts/destroy.js.haml_spec.rb +6 -7
  465. data/spec/views/contacts/edit.js.haml_spec.rb +15 -17
  466. data/spec/views/contacts/index.haml_spec.rb +6 -7
  467. data/spec/views/contacts/index.js.html_spec.rb +7 -8
  468. data/spec/views/contacts/new.js.haml_spec.rb +8 -9
  469. data/spec/views/contacts/show.haml_spec.rb +9 -10
  470. data/spec/views/contacts/update.js.haml_spec.rb +26 -26
  471. data/spec/views/home/index.haml_spec.rb +4 -5
  472. data/spec/views/home/index.js.haml_spec.rb +6 -7
  473. data/spec/views/home/options.js.haml_spec.rb +10 -10
  474. data/spec/views/leads/_convert.haml_spec.rb +5 -6
  475. data/spec/views/leads/_edit.haml_spec.rb +13 -13
  476. data/spec/views/leads/_new.haml_spec.rb +11 -11
  477. data/spec/views/leads/_sidebar_show.haml_spec.rb +9 -9
  478. data/spec/views/leads/convert.js.haml_spec.rb +16 -17
  479. data/spec/views/leads/create.js.haml_spec.rb +16 -17
  480. data/spec/views/leads/destroy.js.haml_spec.rb +10 -11
  481. data/spec/views/leads/edit.js.haml_spec.rb +16 -17
  482. data/spec/views/leads/index.haml_spec.rb +7 -8
  483. data/spec/views/leads/index.js.haml_spec.rb +10 -11
  484. data/spec/views/leads/new.js.haml_spec.rb +8 -9
  485. data/spec/views/leads/promote.js.haml_spec.rb +30 -31
  486. data/spec/views/leads/reject.js.haml_spec.rb +10 -11
  487. data/spec/views/leads/show.haml_spec.rb +7 -8
  488. data/spec/views/leads/update.js.haml_spec.rb +28 -29
  489. data/spec/views/opportunities/_edit.haml_spec.rb +19 -19
  490. data/spec/views/opportunities/_new.haml_spec.rb +10 -10
  491. data/spec/views/opportunities/create.js.haml_spec.rb +19 -20
  492. data/spec/views/opportunities/destroy.js.haml_spec.rb +14 -15
  493. data/spec/views/opportunities/edit.js.haml_spec.rb +14 -16
  494. data/spec/views/opportunities/index.haml_spec.rb +6 -7
  495. data/spec/views/opportunities/index.js.haml_spec.rb +7 -8
  496. data/spec/views/opportunities/new.js.haml_spec.rb +8 -9
  497. data/spec/views/opportunities/show.haml_spec.rb +9 -10
  498. data/spec/views/opportunities/update.js.haml_spec.rb +35 -35
  499. data/spec/views/tasks/_edit.haml_spec.rb +9 -9
  500. data/spec/views/tasks/complete.js.haml_spec.rb +11 -12
  501. data/spec/views/tasks/create.js.haml_spec.rb +29 -31
  502. data/spec/views/tasks/destroy.js.haml_spec.rb +8 -8
  503. data/spec/views/tasks/edit.js.haml_spec.rb +12 -15
  504. data/spec/views/tasks/index.haml_spec.rb +7 -7
  505. data/spec/views/tasks/new.js.haml_spec.rb +7 -8
  506. data/spec/views/tasks/uncomplete.js.haml_spec.rb +6 -6
  507. data/spec/views/tasks/update.js.haml_spec.rb +41 -44
  508. data/spec/views/users/avatar.js.haml_spec.rb +7 -8
  509. data/spec/views/users/change_password.js.haml_spec.rb +9 -10
  510. data/spec/views/users/edit.js.haml_spec.rb +7 -8
  511. data/spec/views/users/password.js.haml_spec.rb +8 -9
  512. data/spec/views/users/update.js.haml_spec.rb +6 -7
  513. data/spec/views/users/upload_avatar.js.haml_spec.rb +9 -9
  514. data/vendor/assets/javascripts/jquery_timeago/index.js +2 -0
  515. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.es-CL.js +18 -0
  516. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.nl.js +20 -0
  517. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-es-CL.js +20 -0
  518. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery.ui.datepicker-es-CL.js +23 -0
  519. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery.ui.datepicker-nl.js +21 -0
  520. data/vendor/assets/stylesheets/{jquery-ui.custom.css → jquery-ui.custom.scss} +52 -51
  521. data/vendor/gems/globby-0.1.2/LICENSE.txt +20 -0
  522. data/vendor/gems/globby-0.1.2/README.md +65 -0
  523. data/vendor/gems/globby-0.1.2/Rakefile +9 -0
  524. data/vendor/gems/globby-0.1.2/lib/globby.rb +47 -0
  525. data/vendor/gems/globby-0.1.2/lib/globby/glob.rb +90 -0
  526. data/vendor/gems/globby-0.1.2/lib/globby/globject.rb +18 -0
  527. data/vendor/gems/globby-0.1.2/lib/globby/result.rb +20 -0
  528. data/vendor/gems/globby-0.1.2/spec/gitignore_spec.rb +109 -0
  529. data/vendor/gems/globby-0.1.2/spec/globby_spec.rb +93 -0
  530. metadata +177 -55
  531. data/Gemfile.ci +0 -13
  532. data/config/initializers/sass.rb +0 -18
  533. data/lib/country_select.rb +0 -570
  534. data/lib/fat_free_crm/plugin.rb +0 -94
@@ -8,10 +8,10 @@ require 'spec_helper'
8
8
  describe List do
9
9
  it "should parse the controller from the url" do
10
10
  ["/controller/action", "controller/action?utf8=%E2%9C%93"].each do |url|
11
- list = FactoryGirl.build(:list, :url => url)
12
- list.controller.should == "controller"
11
+ list = FactoryGirl.build(:list, url: url)
12
+ expect(list.controller).to eq("controller")
13
13
  end
14
- list = FactoryGirl.build(:list, :url => nil)
15
- list.controller.should == nil
14
+ list = FactoryGirl.build(:list, url: nil)
15
+ expect(list.controller).to eq(nil)
16
16
  end
17
17
  end
@@ -6,70 +6,67 @@
6
6
  require 'spec_helper'
7
7
 
8
8
  describe EntityObserver do
9
-
10
9
  before do
11
- Setting.stub(:host).and_return('http://www.example.com')
12
- PaperTrail.stub(:whodunnit).and_return(assigner)
10
+ allow(Setting).to receive(:host).and_return('http://www.example.com')
11
+ allow(PaperTrail).to receive(:whodunnit).and_return(assigner)
13
12
  end
14
13
 
15
14
  [:account, :contact, :lead, :opportunity].each do |entity_type|
16
15
  describe "on creation of #{entity_type}" do
17
16
  let(:assignee) { FactoryGirl.create(:user) }
18
17
  let(:assigner) { FactoryGirl.create(:user) }
19
- let!(:entity) { FactoryGirl.build(entity_type, :user => assigner, :assignee => assignee) }
20
- let(:mail) { double('mail', :deliver => true) }
18
+ let!(:entity) { FactoryGirl.build(entity_type, user: assigner, assignee: assignee) }
19
+ let(:mail) { double('mail', deliver_now: true) }
21
20
 
22
21
  after :each do
23
22
  entity.save
24
23
  end
25
24
 
26
25
  it "sends notification to the assigned user for entity" do
27
- UserMailer.should_receive(:assigned_entity_notification).with(entity, assigner).and_return(mail)
26
+ expect(UserMailer).to receive(:assigned_entity_notification).with(entity, assigner).and_return(mail)
28
27
  end
29
28
 
30
29
  it "does not notify anyone if the entity is created and assigned to no-one" do
31
30
  entity.assignee = nil
32
- UserMailer.should_not_receive(:assigned_entity_notification)
31
+ expect(UserMailer).not_to receive(:assigned_entity_notification)
33
32
  end
34
33
 
35
34
  it "does not notify me if I have created an entity for myself" do
36
35
  entity.assignee = entity.user = assigner
37
- UserMailer.should_not_receive(:assigned_entity_notification)
36
+ expect(UserMailer).not_to receive(:assigned_entity_notification)
38
37
  end
39
38
 
40
39
  it "does not notify me if Setting.host has not been set" do
41
- Setting.stub(:host).and_return('')
42
- UserMailer.should_not_receive(:assigned_entity_notification)
40
+ allow(Setting).to receive(:host).and_return('')
41
+ expect(UserMailer).not_to receive(:assigned_entity_notification)
43
42
  end
44
-
45
43
  end
46
44
 
47
45
  describe "on update of #{entity_type}" do
48
46
  let(:assignee) { FactoryGirl.create(:user) }
49
47
  let(:assigner) { FactoryGirl.create(:user) }
50
- let!(:entity) { FactoryGirl.create(entity_type, :user => FactoryGirl.create(:user)) }
51
- let(:mail) { double('mail', :deliver => true) }
48
+ let!(:entity) { FactoryGirl.create(entity_type, user: FactoryGirl.create(:user)) }
49
+ let(:mail) { double('mail', deliver_now: true) }
52
50
 
53
51
  it "notifies the new owner if the entity is re-assigned" do
54
- UserMailer.should_receive(:assigned_entity_notification).with(entity, assigner).and_return(mail)
55
- entity.update_attributes(:assignee => assignee)
52
+ expect(UserMailer).to receive(:assigned_entity_notification).with(entity, assigner).and_return(mail)
53
+ entity.update_attributes(assignee: assignee)
56
54
  end
57
55
 
58
56
  it "does not notify the owner if the entity is not re-assigned" do
59
- UserMailer.should_not_receive(:assigned_entity_notification)
57
+ expect(UserMailer).not_to receive(:assigned_entity_notification)
60
58
  entity.touch
61
59
  end
62
60
 
63
61
  it "does not notify anyone if the entity becomes unassigned" do
64
- UserMailer.should_not_receive(:assigned_entity_notification)
65
- entity.update_attributes(:assignee => nil)
62
+ expect(UserMailer).not_to receive(:assigned_entity_notification)
63
+ entity.update_attributes(assignee: nil)
66
64
  end
67
65
 
68
66
  it "does not notify me if I re-assign an entity to myself" do
69
- UserMailer.should_not_receive(:assigned_entity_notification)
70
- entity.update_attributes(:assignee => assigner)
67
+ expect(UserMailer).not_to receive(:assigned_entity_notification)
68
+ entity.update_attributes(assignee: assigner)
71
69
  end
72
70
  end
73
-
74
71
  end
75
72
  end
@@ -26,13 +26,11 @@
26
26
  require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
27
27
 
28
28
  describe Address do
29
-
30
29
  before(:each) do
31
30
  login
32
31
  end
33
32
 
34
33
  it "should create a new instance given valid attributes" do
35
- Address.create!(:street1 => "street1", :street2 => "street2", :city => "city", :state => "state", :zipcode => "zipcode", :country => "country", :full_address => "fa", :address_type => "Lead", :addressable => FactoryGirl.create(:lead))
34
+ Address.create!(street1: "street1", street2: "street2", city: "city", state: "state", zipcode: "zipcode", country: "country", full_address: "fa", address_type: "Lead", addressable: FactoryGirl.create(:lead))
36
35
  end
37
36
  end
38
-
@@ -26,21 +26,19 @@ describe Avatar do
26
26
  end
27
27
 
28
28
  it "should create a new instance given valid attributes" do
29
- FactoryGirl.create(:avatar, :entity => @user).should be_valid
29
+ expect(FactoryGirl.create(:avatar, entity: @user)).to be_valid
30
30
  end
31
31
 
32
32
  it "user should have one avatar as entity" do
33
- avatar = FactoryGirl.create(:avatar, :entity => @user)
34
- @user.avatar.should == avatar
33
+ avatar = FactoryGirl.create(:avatar, entity: @user)
34
+ expect(@user.avatar).to eq(avatar)
35
35
  end
36
36
 
37
37
  it "user might have many avatars as owner" do
38
38
  avatars = [
39
- FactoryGirl.create(:avatar, :user=> @user, :entity => FactoryGirl.create(:user)),
40
- FactoryGirl.create(:avatar, :user=> @user, :entity => FactoryGirl.create(:user))
39
+ FactoryGirl.create(:avatar, user: @user, entity: FactoryGirl.create(:user)),
40
+ FactoryGirl.create(:avatar, user: @user, entity: FactoryGirl.create(:user))
41
41
  ]
42
- @user.avatars.should == avatars
42
+ expect(@user.avatars).to eq(avatars)
43
43
  end
44
-
45
44
  end
46
-
@@ -22,28 +22,26 @@
22
22
  require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
23
23
 
24
24
  describe Comment do
25
-
26
25
  before(:each) do
27
26
  login
28
27
  end
29
28
 
30
29
  it "should create a new instance given valid attributes" do
31
- Comment.create!(:comment => "Hello", :user => FactoryGirl.create(:user), :commentable => FactoryGirl.create(:lead))
30
+ Comment.create!(comment: "Hello", user: FactoryGirl.create(:user), commentable: FactoryGirl.create(:lead))
32
31
  end
33
32
 
34
33
  it "should subscribe users mentioned in the comment to the entity, and notify them via email" do
35
34
  expected_users = [
36
- FactoryGirl.create(:user, :username => "test_user"),
37
- FactoryGirl.create(:user, :username => "another_user")
35
+ FactoryGirl.create(:user, username: "test_user"),
36
+ FactoryGirl.create(:user, username: "another_user")
38
37
  ]
39
38
  entity = FactoryGirl.create(:lead)
40
- Comment.create!(:comment => "Hey @test_user, take a look at this. Also show @another_user",
41
- :user => FactoryGirl.create(:user),
42
- :commentable => entity)
39
+ Comment.create!(comment: "Hey @test_user, take a look at this. Also show @another_user",
40
+ user: FactoryGirl.create(:user),
41
+ commentable: entity)
43
42
 
44
43
  expected_users.each do |user|
45
- entity.subscribed_users.should include(user.id)
44
+ expect(entity.subscribed_users).to include(user.id)
46
45
  end
47
46
  end
48
47
  end
49
-
@@ -35,7 +35,6 @@ describe Email do
35
35
  end
36
36
 
37
37
  it "should be valid" do
38
- @email.should be_valid
38
+ expect(@email).to be_valid
39
39
  end
40
40
  end
41
-
@@ -29,227 +29,224 @@
29
29
  require 'spec_helper'
30
30
 
31
31
  describe Task do
32
-
33
32
  before { login }
34
33
 
35
34
  describe "Task/Create" do
36
35
  it "should create a new task instance given valid attributes" do
37
36
  task = FactoryGirl.create(:task)
38
- task.should be_valid
39
- task.errors.should be_empty
37
+ expect(task).to be_valid
38
+ expect(task.errors).to be_empty
40
39
  end
41
40
 
42
- [ nil, Time.now.utc_offset + 3600 ].each do |offset|
41
+ [nil, Time.now.utc_offset + 3600].each do |offset|
43
42
  before do
44
43
  adjust_timezone(offset)
45
44
  end
46
45
 
47
46
  it "should create a task with due date selected from dropdown within #{offset ? 'different' : 'current'} timezone" do
48
- task = FactoryGirl.create(:task, :due_at => Time.now.end_of_week, :bucket => "due_this_week")
49
- task.errors.should be_empty
50
- task.bucket.should == "due_this_week"
51
- task.due_at.should == Time.zone.now.end_of_week
47
+ task = FactoryGirl.create(:task, due_at: Time.now.end_of_week, bucket: "due_this_week")
48
+ expect(task.errors).to be_empty
49
+ expect(task.bucket).to eq("due_this_week")
50
+ expect(task.due_at).to eq(Time.zone.now.end_of_week)
52
51
  end
53
52
 
54
53
  it "should create a task with due date selected from the calendar within #{offset ? 'different' : 'current'} timezone" do
55
- task = FactoryGirl.create(:task, :bucket => "specific_time", :calendar => "2020-03-20")
56
- task.errors.should be_empty
57
- task.bucket.should == "specific_time"
58
- task.due_at.to_i.should == Time.parse("2020-03-20").to_i
54
+ task = FactoryGirl.create(:task, bucket: "specific_time", calendar: "2020-03-20")
55
+ expect(task.errors).to be_empty
56
+ expect(task.bucket).to eq("specific_time")
57
+ expect(task.due_at.to_i).to eq(Time.parse("2020-03-20").to_i)
59
58
  end
60
59
  end
61
60
  end
62
61
 
63
62
  describe "Task/Update" do
64
63
  it "should update task name" do
65
- task = FactoryGirl.create(:task, :name => "Hello")
66
- task.update_attributes({ :name => "World"})
67
- task.errors.should be_empty
68
- task.name.should == "World"
64
+ task = FactoryGirl.create(:task, name: "Hello")
65
+ task.update_attributes(name: "World")
66
+ expect(task.errors).to be_empty
67
+ expect(task.name).to eq("World")
69
68
  end
70
69
 
71
70
  it "should update task category" do
72
- task = FactoryGirl.create(:task, :category => "call")
73
- task.update_attributes({ :category => "email" })
74
- task.errors.should be_empty
75
- task.category.should == "email"
71
+ task = FactoryGirl.create(:task, category: "call")
72
+ task.update_attributes(category: "email")
73
+ expect(task.errors).to be_empty
74
+ expect(task.category).to eq("email")
76
75
  end
77
76
 
78
77
  it "should reassign the task to another person" do
79
78
  him = FactoryGirl.create(:user)
80
79
  her = FactoryGirl.create(:user)
81
- task = FactoryGirl.create(:task, :assigned_to => him.id)
82
- task.update_attributes( { :assigned_to => her.id } )
83
- task.errors.should be_empty
84
- task.assigned_to.should == her.id
85
- task.assignee.should == her
80
+ task = FactoryGirl.create(:task, assigned_to: him.id)
81
+ task.update_attributes(assigned_to: her.id)
82
+ expect(task.errors).to be_empty
83
+ expect(task.assigned_to).to eq(her.id)
84
+ expect(task.assignee).to eq(her)
86
85
  end
87
86
 
88
87
  it "should reassign the task from another person to myself" do
89
88
  him = FactoryGirl.create(:user)
90
- task = FactoryGirl.create(:task, :assigned_to => him.id)
91
- task.update_attributes( { :assigned_to => "" } )
92
- task.errors.should be_empty
93
- task.assigned_to.should == nil
94
- task.assignee.should == nil
89
+ task = FactoryGirl.create(:task, assigned_to: him.id)
90
+ task.update_attributes(assigned_to: "")
91
+ expect(task.errors).to be_empty
92
+ expect(task.assigned_to).to eq(nil)
93
+ expect(task.assignee).to eq(nil)
95
94
  end
96
95
 
97
- [ nil, Time.now.utc_offset + 3600 ].each do |offset|
96
+ [nil, Time.now.utc_offset + 3600].each do |offset|
98
97
  before do
99
98
  adjust_timezone(offset)
100
99
  end
101
100
 
102
101
  it "should update due date based on selected bucket within #{offset ? 'different' : 'current'} timezone" do
103
- task = FactoryGirl.create(:task, :due_at => Time.now.midnight.tomorrow, :bucket => "due_tomorrow")
104
- task.update_attributes( { :bucket => "due_this_week" } )
105
- task.errors.should be_empty
106
- task.bucket.should == "due_this_week"
107
- task.due_at.should == Time.zone.now.end_of_week
102
+ task = FactoryGirl.create(:task, due_at: Time.now.midnight.tomorrow, bucket: "due_tomorrow")
103
+ task.update_attributes(bucket: "due_this_week")
104
+ expect(task.errors).to be_empty
105
+ expect(task.bucket).to eq("due_this_week")
106
+ expect(task.due_at).to eq(Time.zone.now.end_of_week)
108
107
  end
109
108
 
110
109
  it "should update due date if specific calendar date selected within #{offset ? 'different' : 'current'} timezone" do
111
- task = FactoryGirl.create(:task, :due_at => Time.now.midnight.tomorrow, :bucket => "due_tomorrow")
112
- task.update_attributes( { :bucket => "specific_time", :calendar => "2020-03-20" } )
113
- task.errors.should be_empty
114
- task.bucket.should == "specific_time"
115
- task.due_at.to_i.should == Time.parse("2020-03-20").to_i
110
+ task = FactoryGirl.create(:task, due_at: Time.now.midnight.tomorrow, bucket: "due_tomorrow")
111
+ task.update_attributes(bucket: "specific_time", calendar: "2020-03-20")
112
+ expect(task.errors).to be_empty
113
+ expect(task.bucket).to eq("specific_time")
114
+ expect(task.due_at.to_i).to eq(Time.parse("2020-03-20").to_i)
116
115
  end
117
116
  end
118
-
119
117
  end
120
118
 
121
119
  describe "Task/Complete" do
122
120
  it "should comlete a task that is overdue" do
123
- task = FactoryGirl.create(:task, :due_at => 2.days.ago, :bucket => "overdue")
124
- task.update_attributes(:completed_at => Time.now, :completed_by => current_user.id)
125
- task.errors.should be_empty
126
- task.completed_at.should_not == nil
127
- task.completor.should == current_user
121
+ task = FactoryGirl.create(:task, due_at: 2.days.ago, bucket: "overdue")
122
+ task.update_attributes(completed_at: Time.now, completed_by: current_user.id)
123
+ expect(task.errors).to be_empty
124
+ expect(task.completed_at).not_to eq(nil)
125
+ expect(task.completor).to eq(current_user)
128
126
  end
129
127
 
130
128
  it "should complete a task due sometime in the future" do
131
- task = FactoryGirl.create(:task, :due_at => Time.now.midnight.tomorrow, :bucket => "due_tomorrow")
132
- task.update_attributes(:completed_at => Time.now, :completed_by => current_user.id)
133
- task.errors.should be_empty
134
- task.completed_at.should_not == nil
135
- task.completor.should == current_user
129
+ task = FactoryGirl.create(:task, due_at: Time.now.midnight.tomorrow, bucket: "due_tomorrow")
130
+ task.update_attributes(completed_at: Time.now, completed_by: current_user.id)
131
+ expect(task.errors).to be_empty
132
+ expect(task.completed_at).not_to eq(nil)
133
+ expect(task.completor).to eq(current_user)
136
134
  end
137
135
 
138
136
  it "should complete a task that is due on specific date in the future" do
139
- task = FactoryGirl.create(:task, :calendar => "10/10/2022 12:00 AM", :bucket => "specific_time")
137
+ task = FactoryGirl.create(:task, calendar: "10/10/2022 12:00 AM", bucket: "specific_time")
140
138
  task.calendar = nil # Calendar is not saved in the database; we need it only to set the :due_at.
141
- task.update_attributes(:completed_at => Time.now, :completed_by => current_user.id)
142
- task.errors.should be_empty
143
- task.completed_at.should_not == nil
144
- task.completor.should == current_user
139
+ task.update_attributes(completed_at: Time.now, completed_by: current_user.id)
140
+ expect(task.errors).to be_empty
141
+ expect(task.completed_at).not_to eq(nil)
142
+ expect(task.completor).to eq(current_user)
145
143
  end
146
144
 
147
145
  it "should complete a task that is due on specific date in the past" do
148
- task = FactoryGirl.create(:task, :calendar => "10/10/1992 12:00 AM", :bucket => "specific_time")
146
+ task = FactoryGirl.create(:task, calendar: "10/10/1992 12:00 AM", bucket: "specific_time")
149
147
  task.calendar = nil # Calendar is not saved in the database; we need it only to set the :due_at.
150
- task.update_attributes(:completed_at => Time.now, :completed_by => current_user.id)
151
- task.errors.should be_empty
152
- task.completed_at.should_not == nil
153
- task.completor.should == current_user
148
+ task.update_attributes(completed_at: Time.now, completed_by: current_user.id)
149
+ expect(task.errors).to be_empty
150
+ expect(task.completed_at).not_to eq(nil)
151
+ expect(task.completor).to eq(current_user)
154
152
  end
155
153
 
156
154
  it "completion should preserve original due date" do
157
155
  due_at = Time.now - 42.days
158
- task = FactoryGirl.create(:task, :due_at => due_at, :bucket => "specific_time",
159
- :calendar => due_at.strftime('%Y-%m-%d %H:%M'))
160
- task.update_attributes(:completed_at => Time.now, :completed_by => current_user.id, :calendar => '')
161
- task.completed?.should == true
162
- task.due_at.should == due_at.utc.strftime('%Y-%m-%d %H:%M')
156
+ task = FactoryGirl.create(:task, due_at: due_at, bucket: "specific_time",
157
+ calendar: due_at.strftime('%Y-%m-%d %H:%M'))
158
+ task.update_attributes(completed_at: Time.now, completed_by: current_user.id, calendar: '')
159
+ expect(task.completed?).to eq(true)
160
+ expect(task.due_at).to eq(due_at.utc.strftime('%Y-%m-%d %H:%M'))
163
161
  end
164
162
  end
165
163
 
166
164
  # named_scope :my, lambda { |user| { :conditions => [ "(user_id = ? AND assigned_to IS NULL) OR assigned_to = ?", user.id, user.id ], :include => :assignee } }
167
165
  describe "task.my?" do
168
166
  it "should match a task created by the user" do
169
- task = FactoryGirl.create(:task, :user => current_user, :assignee => nil)
170
- task.my?(current_user).should == true
167
+ task = FactoryGirl.create(:task, user: current_user, assignee: nil)
168
+ expect(task.my?(current_user)).to eq(true)
171
169
  end
172
170
 
173
171
  it "should match a task assigned to the user" do
174
- task = FactoryGirl.create(:task, :user => FactoryGirl.create(:user), :assignee => current_user)
175
- task.my?(current_user).should == true
172
+ task = FactoryGirl.create(:task, user: FactoryGirl.create(:user), assignee: current_user)
173
+ expect(task.my?(current_user)).to eq(true)
176
174
  end
177
175
 
178
176
  it "should Not match a task not created by the user" do
179
- task = FactoryGirl.create(:task, :user => FactoryGirl.create(:user))
180
- task.my?(current_user).should == false
177
+ task = FactoryGirl.create(:task, user: FactoryGirl.create(:user))
178
+ expect(task.my?(current_user)).to eq(false)
181
179
  end
182
180
 
183
181
  it "should Not match a task created by the user but assigned to somebody else" do
184
- task = FactoryGirl.create(:task, :user => current_user, :assignee => FactoryGirl.create(:user))
185
- task.my?(current_user).should == false
182
+ task = FactoryGirl.create(:task, user: current_user, assignee: FactoryGirl.create(:user))
183
+ expect(task.my?(current_user)).to eq(false)
186
184
  end
187
185
  end
188
186
 
189
187
  # named_scope :assigned_by, lambda { |user| { :conditions => [ "user_id = ? AND assigned_to IS NOT NULL AND assigned_to != ?", user.id, user.id ], :include => :assignee } }
190
188
  describe "task.assigned_by?" do
191
189
  it "should match a task assigned by the user to somebody else" do
192
- task = FactoryGirl.create(:task, :user => current_user, :assignee => FactoryGirl.create(:user))
193
- task.assigned_by?(current_user).should == true
190
+ task = FactoryGirl.create(:task, user: current_user, assignee: FactoryGirl.create(:user))
191
+ expect(task.assigned_by?(current_user)).to eq(true)
194
192
  end
195
193
 
196
194
  it "should Not match a task not created by the user" do
197
- task = FactoryGirl.create(:task, :user => FactoryGirl.create(:user))
198
- task.assigned_by?(current_user).should == false
195
+ task = FactoryGirl.create(:task, user: FactoryGirl.create(:user))
196
+ expect(task.assigned_by?(current_user)).to eq(false)
199
197
  end
200
198
 
201
199
  it "should Not match a task not assigned to anybody" do
202
- task = FactoryGirl.create(:task, :assignee => nil)
203
- task.assigned_by?(current_user).should == false
200
+ task = FactoryGirl.create(:task, assignee: nil)
201
+ expect(task.assigned_by?(current_user)).to eq(false)
204
202
  end
205
203
 
206
204
  it "should Not match a task assigned to the user" do
207
- task = FactoryGirl.create(:task, :assignee => current_user)
208
- task.assigned_by?(current_user).should == false
205
+ task = FactoryGirl.create(:task, assignee: current_user)
206
+ expect(task.assigned_by?(current_user)).to eq(false)
209
207
  end
210
208
  end
211
209
 
212
210
  # named_scope :tracked_by, lambda { |user| { :conditions => [ "user_id = ? OR assigned_to = ?", user.id, user.id ], :include => :assignee } }
213
211
  describe "task.tracked_by?" do
214
212
  it "should match a task created by the user" do
215
- task = FactoryGirl.create(:task, :user => current_user)
216
- task.tracked_by?(current_user).should == true
213
+ task = FactoryGirl.create(:task, user: current_user)
214
+ expect(task.tracked_by?(current_user)).to eq(true)
217
215
  end
218
216
 
219
217
  it "should match a task assigned to the user" do
220
- task = FactoryGirl.create(:task, :assignee => current_user)
221
- task.tracked_by?(current_user).should == true
218
+ task = FactoryGirl.create(:task, assignee: current_user)
219
+ expect(task.tracked_by?(current_user)).to eq(true)
222
220
  end
223
221
 
224
222
  it "should Not match a task that is neither created nor assigned to the user" do
225
- task = FactoryGirl.create(:task, :user => FactoryGirl.create(:user), :assignee => FactoryGirl.create(:user))
226
- task.tracked_by?(current_user).should == false
223
+ task = FactoryGirl.create(:task, user: FactoryGirl.create(:user), assignee: FactoryGirl.create(:user))
224
+ expect(task.tracked_by?(current_user)).to eq(false)
227
225
  end
228
226
  end
229
227
 
230
228
  describe "task.computed_bucket" do
231
-
232
229
  context "when overdue" do
233
- subject { described_class.new(:due_at => 1.days.ago, :bucket => "specific_time") }
230
+ subject { described_class.new(due_at: 1.days.ago, bucket: "specific_time") }
234
231
 
235
232
  it "returns a sensible value" do
236
- subject.computed_bucket.should == "overdue"
233
+ expect(subject.computed_bucket).to eq("overdue")
237
234
  end
238
235
  end
239
236
 
240
237
  context "when due today" do
241
- subject { described_class.new(:due_at => Time.now, :bucket => "specific_time") }
238
+ subject { described_class.new(due_at: Time.now, bucket: "specific_time") }
242
239
 
243
240
  it "returns a sensible value" do
244
- subject.computed_bucket.should == "due_today"
241
+ expect(subject.computed_bucket).to eq("due_today")
245
242
  end
246
243
  end
247
244
 
248
245
  context "when due tomorrow" do
249
- subject { described_class.new(:due_at => 1.days.from_now.end_of_day, :bucket => "specific_time") }
246
+ subject { described_class.new(due_at: 1.days.from_now.end_of_day, bucket: "specific_time") }
250
247
 
251
248
  it "returns a sensible value" do
252
- subject.computed_bucket.should == "due_tomorrow"
249
+ expect(subject.computed_bucket).to eq("due_tomorrow")
253
250
  end
254
251
  end
255
252
 
@@ -257,25 +254,27 @@ describe Task do
257
254
  it "returns a sensible value" do
258
255
  # Freeze time so tests will pass when run at the end of the week!!
259
256
  Timecop.freeze(Time.local(2014, 1, 1, 16, 14)) do
260
- task = described_class.new(:due_at => Time.zone.now.end_of_week, :bucket => "specific_time")
257
+ task = described_class.new(due_at: Time.zone.now.end_of_week, bucket: "specific_time")
261
258
  expect(task.computed_bucket).to eql("due_this_week")
262
259
  end
263
260
  end
264
261
  end
265
262
 
266
263
  context "when due next week" do
267
- subject { described_class.new(:due_at => Time.zone.now.next_week, :bucket => "specific_time") }
264
+ subject { described_class.new(due_at: Time.zone.now.next_week, bucket: "specific_time") }
268
265
 
269
266
  it "returns a sensible value" do
270
- subject.computed_bucket.should == "due_next_week"
267
+ Timecop.freeze(Time.local(2014, 1, 1, 16, 14)) do
268
+ expect(subject.computed_bucket).to eq("due_next_week")
269
+ end
271
270
  end
272
271
  end
273
272
 
274
273
  context "when due later" do
275
- subject { described_class.new(:due_at => 1.month.from_now, :bucket => "specific_time") }
274
+ subject { described_class.new(due_at: 1.month.from_now, bucket: "specific_time") }
276
275
 
277
276
  it "returns a sensible value" do
278
- subject.computed_bucket.should == "due_later"
277
+ expect(subject.computed_bucket).to eq("due_later")
279
278
  end
280
279
  end
281
280
  end
@@ -285,7 +284,7 @@ describe Task do
285
284
  subject { described_class.new(due_at: Time.zone.now.beginning_of_day) }
286
285
 
287
286
  it "returns false" do
288
- subject.at_specific_time?.should == false
287
+ expect(subject.at_specific_time?).to eq(false)
289
288
  end
290
289
  end
291
290
 
@@ -293,7 +292,7 @@ describe Task do
293
292
  subject { described_class.new(due_at: Time.zone.now.end_of_day) }
294
293
 
295
294
  it "returns false" do
296
- subject.at_specific_time?.should == false
295
+ expect(subject.at_specific_time?).to eq(false)
297
296
  end
298
297
  end
299
298
 
@@ -301,96 +300,85 @@ describe Task do
301
300
  subject { described_class.new(due_at: Time.zone.parse("2014-01-01 18:36:43")) }
302
301
 
303
302
  it "returns true" do
304
- subject.at_specific_time?.should == true
303
+ expect(subject.at_specific_time?).to eq(true)
305
304
  end
306
305
  end
307
306
  end
308
307
 
309
308
  describe "Exportable" do
310
309
  describe "unassigned tasks" do
311
- before do
312
- Task.delete_all
313
- FactoryGirl.create(:task, :user => FactoryGirl.create(:user), :assignee => nil)
314
- FactoryGirl.create(:task, :user => FactoryGirl.create(:user, :first_name => nil, :last_name => nil), :assignee => nil)
315
- end
310
+ let(:task1) { FactoryGirl.build(:task, user: FactoryGirl.create(:user), assignee: nil) }
311
+ let(:task2) { FactoryGirl.build(:task, user: FactoryGirl.create(:user, first_name: nil, last_name: nil), assignee: nil) }
316
312
  it_should_behave_like("exportable") do
317
- let(:exported) { Task.all }
313
+ let(:exported) { [task1, task2] }
318
314
  end
319
315
  end
320
316
 
321
317
  describe "assigned tasks" do
322
- before do
323
- Task.delete_all
324
- FactoryGirl.create(:task, :user => FactoryGirl.create(:user), :assignee => FactoryGirl.create(:user))
325
- FactoryGirl.create(:task, :user => FactoryGirl.create(:user, :first_name => nil, :last_name => nil), :assignee => FactoryGirl.create(:user, :first_name => nil, :last_name => nil))
326
- end
318
+ let(:task1) { FactoryGirl.build(:task, user: FactoryGirl.create(:user), assignee: FactoryGirl.create(:user)) }
319
+ let(:task2) { FactoryGirl.build(:task, user: FactoryGirl.create(:user, first_name: nil, last_name: nil), assignee: FactoryGirl.create(:user, first_name: nil, last_name: nil)) }
327
320
  it_should_behave_like("exportable") do
328
- let(:exported) { Task.all }
321
+ let(:exported) { [task1, task2] }
329
322
  end
330
323
  end
331
324
 
332
325
  describe "completed tasks" do
333
- before do
334
- Task.delete_all
335
- FactoryGirl.create(:task, :user => FactoryGirl.create(:user), :completor => FactoryGirl.create(:user), :completed_at => 1.day.ago)
336
- FactoryGirl.create(:task, :user => FactoryGirl.create(:user, :first_name => nil, :last_name => nil), :completor => FactoryGirl.create(:user, :first_name => nil, :last_name => nil), :completed_at => 1.day.ago)
337
- end
326
+ let(:task1) { FactoryGirl.build(:task, user: FactoryGirl.create(:user), completor: FactoryGirl.create(:user), completed_at: 1.day.ago) }
327
+ let(:task2) { FactoryGirl.build(:task, user: FactoryGirl.create(:user, first_name: nil, last_name: nil), completor: FactoryGirl.create(:user, first_name: nil, last_name: nil), completed_at: 1.day.ago) }
338
328
  it_should_behave_like("exportable") do
339
- let(:exported) { Task.all }
329
+ let(:exported) { [task1, task2] }
340
330
  end
341
331
  end
342
332
  end
343
333
 
344
334
  describe "#parse_calendar_date" do
345
-
346
335
  it "should parse the date" do
347
- @task = Task.new(:calendar => '2020-12-23')
348
- Time.should_receive(:parse).with('2020-12-23')
336
+ @task = Task.new(calendar: '2020-12-23')
337
+ expect(Time).to receive(:parse).with('2020-12-23')
349
338
  @task.send(:parse_calendar_date)
350
339
  end
351
-
352
340
  end
353
341
 
354
342
  describe "scopes" do
355
343
  context "visible_on_dashboard" do
356
344
  before :each do
357
345
  @user = FactoryGirl.create(:user)
358
- @t1 = FactoryGirl.create(:task, :user => @user)
359
- @t2 = FactoryGirl.create(:task, :user => @user, :assignee => FactoryGirl.create(:user))
360
- @t3 = FactoryGirl.create(:task, :user => FactoryGirl.create(:user), :assignee => @user)
361
- @t4 = FactoryGirl.create(:task, :user => FactoryGirl.create(:user), :assignee => FactoryGirl.create(:user))
362
- @t5 = FactoryGirl.create(:task, :user => FactoryGirl.create(:user), :assignee => @user)
363
- @t6 = FactoryGirl.create(:completed_task, :assignee => @user)
346
+ @t1 = FactoryGirl.create(:task, user: @user)
347
+ @t2 = FactoryGirl.create(:task, user: @user, assignee: FactoryGirl.create(:user))
348
+ @t3 = FactoryGirl.create(:task, user: FactoryGirl.create(:user), assignee: @user)
349
+ @t4 = FactoryGirl.create(:task, user: FactoryGirl.create(:user), assignee: FactoryGirl.create(:user))
350
+ @t5 = FactoryGirl.create(:task, user: FactoryGirl.create(:user), assignee: @user)
351
+ @t6 = FactoryGirl.create(:completed_task, assignee: @user)
364
352
  end
365
353
 
366
354
  it "should show tasks which have been created by the user and are unassigned" do
367
- Task.visible_on_dashboard(@user).should include(@t1)
355
+ expect(Task.visible_on_dashboard(@user)).to include(@t1)
368
356
  end
369
357
 
370
358
  it "should show tasks which are assigned to the user" do
371
- Task.visible_on_dashboard(@user).should include(@t3, @t5)
359
+ expect(Task.visible_on_dashboard(@user)).to include(@t3, @t5)
372
360
  end
373
361
 
374
362
  it "should not show tasks which are not assigned to the user" do
375
- Task.visible_on_dashboard(@user).should_not include(@t4)
363
+ expect(Task.visible_on_dashboard(@user)).not_to include(@t4)
376
364
  end
377
365
 
378
366
  it "should not show tasks which are created by the user but assigned" do
379
- Task.visible_on_dashboard(@user).should_not include(@t2)
367
+ expect(Task.visible_on_dashboard(@user)).not_to include(@t2)
380
368
  end
381
369
 
382
370
  it "should not include completed tasks" do
383
- Task.visible_on_dashboard(@user).should_not include(@t6)
371
+ expect(Task.visible_on_dashboard(@user)).not_to include(@t6)
384
372
  end
385
373
  end
386
374
 
387
375
  context "by_due_at" do
388
376
  it "should show tasks ordered by due_at" do
389
- t1 = FactoryGirl.create(:task, :name => 't1', :bucket => "due_asap")
390
- t2 = FactoryGirl.create(:task, :calendar => 5.days.from_now.strftime("%Y-%m-%d %H:%M"), :bucket => "specific_time")
391
- t3 = FactoryGirl.create(:task, :name => 't3', :bucket => "due_next_week")
392
- t4 = FactoryGirl.create(:task, :calendar => 20.days.from_now.strftime("%Y-%m-%d %H:%M"), :bucket => "specific_time")
393
- Task.by_due_at.should == [t1, t2, t3, t4]
377
+ t1 = FactoryGirl.create(:task, name: 't1', bucket: "due_asap")
378
+ t2 = FactoryGirl.create(:task, calendar: 5.days.from_now.strftime("%Y-%m-%d %H:%M"), bucket: "specific_time")
379
+ t3 = FactoryGirl.create(:task, name: 't3', bucket: "due_next_week")
380
+ t4 = FactoryGirl.create(:task, calendar: 20.days.from_now.strftime("%Y-%m-%d %H:%M"), bucket: "specific_time")
381
+ expect(Task.by_due_at).to eq([t1, t2, t3, t4])
394
382
  end
395
383
  end
396
384
  end