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
@@ -6,8 +6,8 @@
6
6
  module FatFreeCRM
7
7
  module VERSION #:nodoc:
8
8
  MAJOR = 0
9
- MINOR = 13
10
- TINY = 6
9
+ MINOR = 14
10
+ TINY = 0
11
11
  PRE = nil
12
12
 
13
13
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
@@ -5,7 +5,6 @@
5
5
  #------------------------------------------------------------------------------
6
6
 
7
7
  module FatFreeCRM
8
-
9
8
  # A view factory keeps track of views and the contexts in which they are available.
10
9
  #----------------------------------------------------------------------------
11
10
  #
@@ -16,7 +15,6 @@ module FatFreeCRM
16
15
  # Icon is optional. If specified, it will be passed to asset_path.
17
16
  #
18
17
  class ViewFactory
19
-
20
18
  include Comparable
21
19
 
22
20
  @@views = []
@@ -25,7 +23,6 @@ module FatFreeCRM
25
23
  # Class methods
26
24
  #----------------------------------------------------------------------------
27
25
  class << self
28
-
29
26
  # Register with the view factory
30
27
  #----------------------------------------------------------------------------
31
28
  def register(view)
@@ -37,9 +34,9 @@ module FatFreeCRM
37
34
  def views_for(options = {})
38
35
  controller = options[:controller]
39
36
  action = options[:action]
40
- name = options[:name] #optional
37
+ name = options[:name] # optional
41
38
  @@views.select do |view|
42
- view.controllers.include?(controller) and view.actions.include?(action) and (name.present? ? view.name == name : true)
39
+ view.controllers.include?(controller) && view.actions.include?(action) && (name.present? ? view.name == name : true)
43
40
  end
44
41
  end
45
42
 
@@ -50,7 +47,6 @@ module FatFreeCRM
50
47
  view = views_for(options).first
51
48
  view && view.template
52
49
  end
53
-
54
50
  end
55
51
 
56
52
  # Instance methods
@@ -77,10 +73,9 @@ module FatFreeCRM
77
73
  # This defines what it means for one view to be different to another
78
74
  #----------------------------------------------------------------------------
79
75
  def generate_id
80
- [name, controllers.sort, actions.sort].flatten.map(&:to_s).map(&:underscore).join('_')
76
+ [name, controllers.sort, actions.sort].flatten.map(&:to_s).map(&:underscore).join('_')
81
77
  end
82
78
 
83
79
  ActiveSupport.run_load_hooks(:fat_free_crm_view_factory, self)
84
-
85
80
  end
86
81
  end
@@ -1,5 +1,4 @@
1
1
  module GravatarImageTag
2
-
3
2
  class << self
4
3
  attr_accessor :configuration
5
4
  end
@@ -13,51 +12,47 @@ module GravatarImageTag
13
12
  end
14
13
 
15
14
  class Configuration
16
- attr_accessor :default_image, :filetype, :rating, :size, :secure
15
+ attr_accessor :default_image, :filetype, :rating, :size, :secure
17
16
  end
18
17
 
19
18
  def self.included(base)
20
- GravatarImageTag.configure { |c| nil }
19
+ GravatarImageTag.configure { |_c| nil }
21
20
  base.send :include, InstanceMethods
22
21
  end
23
22
 
24
23
  module InstanceMethods
25
-
26
24
  def gravatar_image_tag(email, options = {})
27
25
  options[:alt] ||= 'Gravatar'
28
- image_tag(GravatarImageTag::gravatar_url(email, options.delete(:gravatar)), options)
26
+ image_tag(GravatarImageTag.gravatar_url(email, options.delete(:gravatar)), options)
29
27
  end
30
-
31
28
  end
32
29
 
33
30
  def self.gravatar_url(email, overrides = {})
34
31
  overrides ||= {}
35
32
  gravatar_params = {
36
- :default => GravatarImageTag.configuration.default_image,
37
- :filetype => GravatarImageTag.configuration.filetype,
38
- :rating => GravatarImageTag.configuration.rating,
39
- :secure => GravatarImageTag.configuration.secure,
40
- :size => GravatarImageTag.configuration.size
41
- }.merge(overrides).delete_if { |key, value| value.nil? }
33
+ default: GravatarImageTag.configuration.default_image,
34
+ filetype: GravatarImageTag.configuration.filetype,
35
+ rating: GravatarImageTag.configuration.rating,
36
+ secure: GravatarImageTag.configuration.secure,
37
+ size: GravatarImageTag.configuration.size
38
+ }.merge(overrides).delete_if { |_key, value| value.nil? }
42
39
  "#{gravatar_url_base(gravatar_params.delete(:secure))}/#{gravatar_id(email, gravatar_params.delete(:filetype))}#{url_params(gravatar_params)}"
43
40
  end
44
41
 
45
42
  private
46
43
 
47
- def self.gravatar_url_base(secure = false)
48
- 'http' + (!!secure ? 's://secure.' : '://') + 'gravatar.com/avatar'
49
- end
50
-
51
- def self.gravatar_id(email, filetype = nil)
52
- "#{ Digest::MD5.hexdigest(email) }#{ ".#{filetype}" unless filetype.nil? }" unless email.nil?
53
- end
44
+ def self.gravatar_url_base(secure = false)
45
+ 'http' + (!!secure ? 's://secure.' : '://') + 'gravatar.com/avatar'
46
+ end
54
47
 
55
- def self.url_params(gravatar_params)
56
- return nil if gravatar_params.keys.size == 0
57
- "?#{gravatar_params.map { |key, value| "#{key}=#{URI.escape(value.is_a?(String) ? value : value.to_s, Regexp.new("[^#{URI::PATTERN::UNRESERVED}]"))}"}.join('&amp;')}"
58
- end
48
+ def self.gravatar_id(email, filetype = nil)
49
+ "#{ Digest::MD5.hexdigest(email) }#{ ".#{filetype}" unless filetype.nil? }" unless email.nil?
50
+ end
59
51
 
52
+ def self.url_params(gravatar_params)
53
+ return nil if gravatar_params.keys.size == 0
54
+ "?#{gravatar_params.map { |key, value| "#{key}=#{URI.escape(value.is_a?(String) ? value : value.to_s, Regexp.new("[^#{URI::PATTERN::UNRESERVED}]"))}" }.join('&amp;')}"
55
+ end
60
56
  end
61
57
 
62
58
  ActionView::Base.send(:include, GravatarImageTag) if defined?(ActionView::Base)
63
-
@@ -1,27 +1,27 @@
1
1
  # Compares two locale files and detects missing translations.
2
2
  class MissingTranslationDetector
3
3
  attr_reader :missing_translations
4
-
4
+
5
5
  # @params [String] base_file_name File name of the base locale is i.e. en-US
6
6
  # @params [String] target_file_name File name of a locale with missing translations is i.e. de
7
7
  def initialize(base_file_name, target_file_name)
8
- @base = yml_load base_file_name
9
- @target = yml_load target_file_name
8
+ @base = yml_load base_file_name
9
+ @target = yml_load target_file_name
10
10
  @missing_translations = []
11
11
  end
12
12
 
13
13
  # Detects missing translations within the target locale file
14
14
  # and stores it in "missing_translations".
15
- def detect(h=@base, keys=[])
15
+ def detect(h = @base, keys = [])
16
16
  h.each_key do |key|
17
17
  key_path = keys.clone.push key
18
18
 
19
19
  if h[key].is_a?(Hash)
20
- detect h[key], key_path
20
+ detect h[key], key_path
21
21
  elsif blank?(key_path)
22
- missing_translations << OpenStruct.new(:key_path => key_path,
23
- :value => h[key])
24
- end
22
+ missing_translations << OpenStruct.new(key_path: key_path,
23
+ value: h[key])
24
+ end
25
25
  end
26
26
  end
27
27
 
@@ -34,9 +34,9 @@ class MissingTranslationDetector
34
34
 
35
35
  def blank?(keys)
36
36
  h = @target
37
-
37
+
38
38
  keys.each do |key|
39
- return true if !h.is_a?(Hash) || !h.has_key?(key)
39
+ return true if !h.is_a?(Hash) || !h.key?(key)
40
40
  h = h[key]
41
41
  end
42
42
 
@@ -5,25 +5,23 @@
5
5
  #------------------------------------------------------------------------------
6
6
  namespace :ffcrm do
7
7
  namespace :comment_replies do
8
-
9
8
  desc "Run comment inbox crawler and process incoming emails"
10
- task :run => :environment do
9
+ task run: :environment do
11
10
  require "fat_free_crm/mail_processor/comment_replies"
12
11
  FatFreeCRM::MailProcessor::CommentReplies.new.run(dry_run = false)
13
12
  end
14
13
  namespace :run do
15
14
  desc "[Dry run] - Run comment inbox crawler and process incoming emails"
16
- task :dry => :environment do
15
+ task dry: :environment do
17
16
  require "fat_free_crm/mail_processor/comment_replies"
18
17
  FatFreeCRM::MailProcessor::CommentReplies.new.run(dry_run = true)
19
18
  end
20
19
  end
21
20
 
22
21
  desc "Set up comment inbox based on currently loaded settings"
23
- task :setup => :environment do
22
+ task setup: :environment do
24
23
  require "fat_free_crm/mail_processor/comment_replies"
25
24
  FatFreeCRM::MailProcessor::CommentReplies.new.setup
26
25
  end
27
-
28
26
  end
29
27
  end
@@ -5,13 +5,12 @@
5
5
  #------------------------------------------------------------------------------
6
6
  namespace :ffcrm do
7
7
  namespace :config do
8
-
9
8
  desc "Setup database.yml"
10
9
  task :copy_database_yml do
11
10
  require 'fileutils'
12
11
  filename = "config/database.#{ENV['DB'] || 'postgres'}.yml"
13
12
  orig, dest = FatFreeCRM.root.join(filename), Rails.root.join('config/database.yml')
14
- unless File.exists?(dest)
13
+ unless File.exist?(dest)
15
14
  puts "Copying #{filename} to config/database.yml ..."
16
15
  FileUtils.cp orig, dest
17
16
  end
@@ -31,12 +30,11 @@ namespace :ffcrm do
31
30
  Dir[File.join(Rails.root, 'config', '**', '*.yml')].each do |file|
32
31
  YAML::ENGINE.yamler = 'syck'
33
32
  puts "Converting #{file}"
34
- yml = YAML.load( File.read(file) )
33
+ yml = YAML.load(File.read(file))
35
34
  FileUtils.cp file, "#{file}.bak"
36
35
  YAML::ENGINE.yamler = 'psych'
37
- File.open(file, 'w'){ |file| file.write(YAML.dump(yml)) }
36
+ File.open(file, 'w') { |file| file.write(YAML.dump(yml)) }
38
37
  end
39
38
  end
40
-
41
39
  end
42
40
  end
@@ -5,9 +5,8 @@
5
5
  #------------------------------------------------------------------------------
6
6
  namespace :ffcrm do
7
7
  namespace :demo do
8
-
9
8
  desc "Load demo data"
10
- task :load => :environment do
9
+ task load: :environment do
11
10
  # Load fixtures
12
11
  require 'active_record/fixtures'
13
12
  Dir.glob(FatFreeCRM.root.join('db', 'demo', '*.{yml,csv}')).each do |fixture_file|
@@ -16,7 +15,7 @@ namespace :ffcrm do
16
15
 
17
16
  def create_version(options)
18
17
  version = Version.new
19
- options.each { |k,v| version.send(k.to_s + '=', v) }
18
+ options.each { |k, v| version.send(k.to_s + '=', v) }
20
19
  version.save!
21
20
  end
22
21
 
@@ -27,27 +26,27 @@ namespace :ffcrm do
27
26
  model.constantize.all
28
27
  end.flatten.each do |item|
29
28
  user = if item.respond_to?(:user)
30
- item.user
31
- elsif item.respond_to?(:addressable)
32
- item.addressable.try(:user)
29
+ item.user
30
+ elsif item.respond_to?(:addressable)
31
+ item.addressable.try(:user)
33
32
  end
34
33
  related = if item.respond_to?(:addressable)
35
- item.addressable
36
- elsif item.respond_to?(:commentable)
37
- item.commentable
38
- elsif item.respond_to?(:mediator)
39
- item.mediator
34
+ item.addressable
35
+ elsif item.respond_to?(:commentable)
36
+ item.commentable
37
+ elsif item.respond_to?(:mediator)
38
+ item.mediator
40
39
  end
41
40
  # Backdate within the last 30 days
42
41
  created_at = item.created_at - (rand(30) + 1).days + rand(12 * 60).minutes
43
42
  updated_at = created_at + rand(12 * 60).minutes
44
43
 
45
- create_version(:event => "create", :created_at => created_at, :user => user, :item => item, :related => related)
46
- create_version(:event => "update", :created_at => updated_at, :user => user, :item => item, :related => related)
44
+ create_version(event: "create", created_at: created_at, user: user, item: item, related: related)
45
+ create_version(event: "update", created_at: updated_at, user: user, item: item, related: related)
47
46
 
48
47
  if [Account, Campaign, Contact, Lead, Opportunity].include?(item.class)
49
48
  viewed_at = created_at + rand(12 * 60).minutes
50
- version = create_version(:event => "view", :created_at => viewed_at, :user => user, :item => item)
49
+ version = create_version(event: "view", created_at: viewed_at, user: user, item: item)
51
50
  end
52
51
  print "." if item.id % 10 == 0
53
52
  end
@@ -55,10 +54,9 @@ namespace :ffcrm do
55
54
  end
56
55
 
57
56
  desc "Reset the database and reload demo data along with default application settings"
58
- task :reload => :environment do
57
+ task reload: :environment do
59
58
  Rake::Task["db:migrate:reset"].invoke
60
59
  Rake::Task["ffcrm:demo:load"].invoke
61
60
  end
62
-
63
61
  end
64
62
  end
@@ -5,26 +5,24 @@
5
5
  #------------------------------------------------------------------------------
6
6
  namespace :ffcrm do
7
7
  namespace :dropbox do
8
-
9
8
  desc "Run dropbox crawler and process incoming emails"
10
- task :run => :environment do
9
+ task run: :environment do
11
10
  require "fat_free_crm/mail_processor/dropbox"
12
11
  FatFreeCRM::MailProcessor::Dropbox.new.run(dry_run = false)
13
12
  end
14
13
 
15
14
  namespace :run do
16
15
  desc "[Dry run] - Run dropbox crawler and process incoming emails"
17
- task :dry => :environment do
16
+ task dry: :environment do
18
17
  require "fat_free_crm/mail_processor/dropbox"
19
18
  FatFreeCRM::MailProcessor::Dropbox.new.run(dry_run = true)
20
19
  end
21
20
  end
22
21
 
23
22
  desc "Set up email dropbox based on currently loaded settings"
24
- task :setup => :environment do
23
+ task setup: :environment do
25
24
  require "fat_free_crm/mail_processor/dropbox"
26
25
  FatFreeCRM::MailProcessor::Dropbox.new.setup
27
26
  end
28
-
29
27
  end
30
28
  end
@@ -9,7 +9,7 @@ require 'missing_translation_detector'
9
9
  namespace :ffcrm do
10
10
  namespace :missing_translations do
11
11
  desc 'Detects missing translations for a locale - Takes a locale and compares with "en-US".'
12
- task :detect, [:locale] => [:environment] do |t, args|
12
+ task :detect, [:locale] => [:environment] do |_t, args|
13
13
  base_locale = 'en-US'
14
14
 
15
15
  [[base_locale, args[:locale]],
@@ -5,13 +5,11 @@
5
5
  #------------------------------------------------------------------------------
6
6
 
7
7
  namespace :ffcrm do
8
-
9
8
  desc "Generate a secret token for Rails to use."
10
9
  task :secret do
11
10
  require 'securerandom'
12
11
  secret = SecureRandom.hex(64)
13
12
  filename = File.join(Rails.root, 'config', 'initializers', 'secret_token.rb')
14
- File.open(filename, 'w'){|f| f.puts "FatFreeCRM::Application.config.secret_token = '#{secret}'"}
13
+ File.open(filename, 'w') { |f| f.puts "FatFreeCRM::Application.config.secret_token = '#{secret}'" }
15
14
  end
16
-
17
15
  end
@@ -5,18 +5,16 @@
5
5
  #------------------------------------------------------------------------------
6
6
  namespace :ffcrm do
7
7
  namespace :settings do
8
-
9
8
  desc "Clear settings from database (reset to default)"
10
- task :clear => :environment do
9
+ task clear: :environment do
11
10
  Setting.delete_all
12
11
  end
13
12
 
14
13
  desc "Show current settings in the database"
15
- task :show => :environment do
14
+ task show: :environment do
16
15
  Setting.select('name').order('name').pluck('name').each do |name|
17
16
  puts "\n#{name}:\n #{Setting.send(name).inspect}"
18
17
  end
19
18
  end
20
-
21
19
  end
22
20
  end
@@ -4,9 +4,8 @@
4
4
  # See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php
5
5
  #------------------------------------------------------------------------------
6
6
  namespace :ffcrm do
7
-
8
7
  desc "Prepare the database"
9
- task :setup => :environment do
8
+ task setup: :environment do
10
9
  if ENV["PROCEED"] != 'true'
11
10
  puts "\nFatFree CRM is about to run migrations on your database. Make sure you have a backup before proceeding.\n\n"
12
11
  proceed = false
@@ -24,12 +23,11 @@ namespace :ffcrm do
24
23
  puts "Aborted setup."
25
24
  end
26
25
  end
27
-
28
26
  end
29
27
 
30
28
  namespace :setup do
31
29
  desc "Create admin user"
32
- task :admin => :environment do
30
+ task admin: :environment do
33
31
  username, password, email = ENV["USERNAME"], ENV["PASSWORD"], ENV["EMAIL"]
34
32
  unless username && password && email
35
33
  puts "\nTo create the admin user you will be prompted to enter username, password,"
@@ -74,11 +72,10 @@ namespace :ffcrm do
74
72
  end
75
73
  User.reset_column_information # Reload the class since we've added new fields in migrations.
76
74
  user = User.find_by_username(username) || User.new
77
- user.update_attributes(:username => username, :password => password, :email => email)
75
+ user.update_attributes(username: username, password: password, email: email)
78
76
  user.update_attribute(:admin, true) # Mass assignments don't work for :admin because of the attr_protected
79
77
  user.update_attribute(:suspended_at, nil) # Mass assignments don't work for :suspended_at because of the attr_protected
80
78
  puts "Admin user has been created."
81
79
  end
82
80
  end
83
-
84
81
  end
@@ -5,7 +5,6 @@
5
5
  #------------------------------------------------------------------------------
6
6
  namespace :ffcrm do
7
7
  namespace :update_data do
8
-
9
8
  #
10
9
  # Important note about countries. Please read carefully!
11
10
  #
@@ -27,8 +26,7 @@ namespace :ffcrm do
27
26
  # If not, it asks you to run this rake task.
28
27
  #
29
28
  desc "Update country codes to ISO 3166-1"
30
- task :fix_countries => :environment do
31
-
29
+ task fix_countries: :environment do
32
30
  message = """This task is only designed to run once and we think you've run this before!!!
33
31
 
34
32
  Please read the following carefully!
@@ -53,192 +51,188 @@ If you really want to run it again, you will have to set Setting.have_run_countr
53
51
  in a console and continue. This is strongly discouraged. You have been warned!
54
52
 
55
53
  """
56
-
54
+
57
55
  if Setting.have_run_country_migration == true
58
56
  puts message
59
57
  exit
60
58
  end
61
-
59
+
62
60
  convert_table = [
63
- #["Aland Islands", "FI", "AX"], # this clashed with FI for Finland. We'll prefer Finland.
64
- ["Algeria", "AG", "DZ"],
61
+ # ["Aland Islands", "FI", "AX"], # this clashed with FI for Finland. We'll prefer Finland.
62
+ %w(Algeria AG DZ),
65
63
  ["American Samoa", "AQ", "AS"],
66
- ["Andorra", "AN", "AD"],
67
- ["Anguilla", "AV", "AI"],
68
- ["Antarctica", "AY", "AQ"],
64
+ %w(Andorra AN AD),
65
+ %w(Anguilla AV AI),
66
+ %w(Antarctica AY AQ),
69
67
  ["Antigua and Barbuda", "AC", "AG"],
70
- ["Aruba", "AA", "AW"],
71
- ["Australia", "AS", "AU"],
72
- ["Austria", "AU", "AT"],
73
- ["Azerbaijan", "AJ", "AZ"],
74
- ["Bahamas", "BF", "BS"],
75
- ["Bahrain", "BA", "BH"],
76
- ["Bangladesh", "BG", "BD"],
77
- ["Belarus", "BO", "BY"],
78
- ["Belize", "BH", "BZ"],
79
- ["Benin", "BN", "BJ"],
80
- ["Bermuda", "BD", "BM"],
68
+ %w(Aruba AA AW),
69
+ %w(Australia AS AU),
70
+ %w(Austria AU AT),
71
+ %w(Azerbaijan AJ AZ),
72
+ %w(Bahamas BF BS),
73
+ %w(Bahrain BA BH),
74
+ %w(Bangladesh BG BD),
75
+ %w(Belarus BO BY),
76
+ %w(Belize BH BZ),
77
+ %w(Benin BN BJ),
78
+ %w(Bermuda BD BM),
81
79
  ["Bosnia and Herzegovina", "BK", "BA"],
82
- ["Botswana", "BC", "BW"],
80
+ %w(Botswana BC BW),
83
81
  ["Brunei Darussalam", "BX", "BN"],
84
- ["Bulgaria", "BU", "BG"],
82
+ %w(Bulgaria BU BG),
85
83
  ["Burkina Faso", "UV", "BF"],
86
- ["Burundi", "BY", "BI"],
87
- ["Cambodia", "CB", "KH"],
84
+ %w(Burundi BY BI),
85
+ %w(Cambodia CB KH),
88
86
  ["Cayman Islands", "CJ", "KY"],
89
87
  ["Central African Republic", "CT", "CF"],
90
- ["Chad", "CD", "TD"],
91
- ["Chile", "CI", "CL"],
92
- ["China", "CH", "CN"],
88
+ %w(Chad CD TD),
89
+ %w(Chile CI CL),
90
+ %w(China CH CN),
93
91
  ["Christmas Island", "KT", "CX"],
94
92
  ["Cocos (Keeling) Islands", "CK", "CC"],
95
- ["Comoros", "CN", "KM"],
93
+ %w(Comoros CN KM),
96
94
  ["Congo, the Democratic Republic of the", "CF", "CD"],
97
95
  ["Cook Islands", "CW", "CK"],
98
96
  ["Costa Rica", "CS", "CR"],
99
97
  ["Czech Republic", "EZ", "CZ"],
100
- ["Denmark", "DA", "DK"],
101
- ["Dominica", "DO", "DM"],
98
+ %w(Denmark DA DK),
99
+ %w(Dominica DO DM),
102
100
  ["Dominican Republic", "DR", "DO"],
103
101
  ["El Salvador", "ES", "SV"],
104
102
  ["Equatorial Guinea", "EK", "GQ"],
105
- ["Estonia", "EN", "EE"],
103
+ %w(Estonia EN EE),
106
104
  ["French Guiana", "FG", "GF"],
107
105
  ["French Polynesia", "FP", "PF"],
108
106
  ["French Southern Territories", "FS", "TF"],
109
- ["Gabon", "GB", "GA"],
110
- ["Gambia", "GA", "GM"],
111
- ["Georgia", "GG", "GE"],
112
- ["Germany", "GM", "DE"],
113
- ["Grenada", "GJ", "GD"],
114
- ["Guam", "GQ", "GU"],
115
- ["Guernsey", "GK", "GG"],
116
- ["Guinea", "GV", "GN"],
107
+ %w(Gabon GB GA),
108
+ %w(Gambia GA GM),
109
+ %w(Georgia GG GE),
110
+ %w(Germany GM DE),
111
+ %w(Grenada GJ GD),
112
+ %w(Guam GQ GU),
113
+ %w(Guernsey GK GG),
114
+ %w(Guinea GV GN),
117
115
  ["Guinea-Bissau", "PU", "GW"],
118
- ["Haiti", "HA", "HT"],
116
+ %w(Haiti HA HT),
119
117
  ["Holy See (Vatican City State)", "VT", "VA"],
120
- ["Honduras", "HO", "HN"],
121
- ["Iceland", "IC", "IS"],
122
- ["Iraq", "IZ", "IQ"],
123
- ["Ireland", "EI", "IE"],
124
- ["Israel", "IS", "IL"],
125
- ["Japan", "JA", "JP"],
126
- ["Kiribati", "KR", "KI"],
118
+ %w(Honduras HO HN),
119
+ %w(Iceland IC IS),
120
+ %w(Iraq IZ IQ),
121
+ %w(Ireland EI IE),
122
+ %w(Israel IS IL),
123
+ %w(Japan JA JP),
124
+ %w(Kiribati KR KI),
127
125
  ["Korea, Democratic People's Republic of", "KN", "KP"],
128
126
  ["Korea, Republic of", "KS", "KR"],
129
- ["Kuwait", "KU", "KW"],
130
- ["Latvia", "LG", "LV"],
131
- ["Lebanon", "LE", "LB"],
132
- ["Lesotho", "LT", "LS"],
133
- ["Liberia", "LI", "LR"],
134
- ["Liechtenstein", "LS", "LI"],
135
- ["Lithuania", "LH", "LT"],
136
- ["Macao", "MC", "MO"],
137
- ["Madagascar", "MA", "MG"],
138
- ["Malawi", "MI", "MW"],
127
+ %w(Kuwait KU KW),
128
+ %w(Latvia LG LV),
129
+ %w(Lebanon LE LB),
130
+ %w(Lesotho LT LS),
131
+ %w(Liberia LI LR),
132
+ %w(Liechtenstein LS LI),
133
+ %w(Lithuania LH LT),
134
+ %w(Macao MC MO),
135
+ %w(Madagascar MA MG),
136
+ %w(Malawi MI MW),
139
137
  ["Marshall Islands", "RM", "MH"],
140
- ["Martinique", "MB", "MQ"],
141
- ["Mauritius", "MP", "MU"],
142
- ["Mayotte", "MF", "YT"],
143
- ["Monaco", "MN", "MC"],
144
- ["Mongolia", "MG", "MN"],
145
- ["Montenegro", "MJ", "ME"],
146
- ["Montserrat", "MH", "MS"],
147
- ["Morocco", "MO", "MA"],
148
- ["Myanmar", "BM", "MM"],
149
- ["Namibia", "WA", "NA"],
150
- ["Nicaragua", "NU", "NI"],
151
- ["Niger", "NG", "NE"],
152
- ["Nigeria", "NI", "NG"],
153
- ["Niue", "NE", "NU"],
138
+ %w(Martinique MB MQ),
139
+ %w(Mauritius MP MU),
140
+ %w(Mayotte MF YT),
141
+ %w(Monaco MN MC),
142
+ %w(Mongolia MG MN),
143
+ %w(Montenegro MJ ME),
144
+ %w(Montserrat MH MS),
145
+ %w(Morocco MO MA),
146
+ %w(Myanmar BM MM),
147
+ %w(Namibia WA NA),
148
+ %w(Nicaragua NU NI),
149
+ %w(Niger NG NE),
150
+ %w(Nigeria NI NG),
151
+ %w(Niue NE NU),
154
152
  ["Northern Mariana Islands", "CQ", "MP"],
155
- ["Oman", "MU", "OM"],
156
- ["Palau", "PS", "PW"],
153
+ %w(Oman MU OM),
154
+ %w(Palau PS PW),
157
155
  ["Palestinian Territory, Occupied", "WE", "PS"],
158
- ["Panama", "PM", "PA"],
156
+ %w(Panama PM PA),
159
157
  ["Papua New Guinea", "PP", "PG"],
160
- ["Paraguay", "PA", "PY"],
161
- ["Philippines", "RP", "PH"],
162
- ["Pitcairn", "PC", "PN"],
163
- ["Portugal", "PO", "PT"],
158
+ %w(Paraguay PA PY),
159
+ %w(Philippines RP PH),
160
+ %w(Pitcairn PC PN),
161
+ %w(Portugal PO PT),
164
162
  ["Puerto Rico", "RQ", "PR"],
165
163
  ["Russian Federation", "RS", "RU"],
166
164
  ["Saint Kitts and Nevis", "SC", "KN"],
167
165
  ["Saint Lucia", "ST", "LC"],
168
166
  ["Saint Pierre and Miquelon", "SB", "PM"],
169
167
  ["Sao Tome and Principe", "TP", "ST"],
170
- ["Senegal", "SG", "SN"],
171
- ["Serbia", "RB", "RS"],
172
- ["Seychelles", "SE", "SC"],
173
- ["Singapore", "SN", "SG"],
174
- ["Slovakia", "LO", "SK"],
168
+ %w(Senegal SG SN),
169
+ %w(Serbia RB RS),
170
+ %w(Seychelles SE SC),
171
+ %w(Singapore SN SG),
172
+ %w(Slovakia LO SK),
175
173
  ["Solomon Islands", "BP", "SB"],
176
174
  ["South Africa", "SF", "ZA"],
177
175
  ["South Georgia and the South Sandwich Islands", "SX", "GS"],
178
- ["Spain", "SP", "ES"],
176
+ %w(Spain SP ES),
179
177
  ["Sri Lanka", "CE", "LK"],
180
- ["Sudan", "SU", "SD"],
181
- ["Suriname", "NS", "SR"],
178
+ %w(Sudan SU SD),
179
+ %w(Suriname NS SR),
182
180
  ["Svalbard and Jan Mayen", "SV", "SJ"],
183
- ["Swaziland", "WZ", "SZ"],
184
- ["Sweden", "SW", "SE"],
185
- ["Switzerland", "SZ", "CH"],
186
- ["Tajikistan", "TI", "TJ"],
181
+ %w(Swaziland WZ SZ),
182
+ %w(Sweden SW SE),
183
+ %w(Switzerland SZ CH),
184
+ %w(Tajikistan TI TJ),
187
185
  ["Timor-Leste", "TT", "TL"],
188
- ["Togo", "TO", "TG"],
189
- ["Tokelau", "TL", "TK"],
190
- ["Tonga", "TN", "TO"],
186
+ %w(Togo TO TG),
187
+ %w(Tokelau TL TK),
188
+ %w(Tonga TN TO),
191
189
  ["Trinidad and Tobago", "TD", "TT"],
192
- ["Tunisia", "TS", "TN"],
193
- ["Turkey", "TU", "TR"],
194
- ["Turkmenistan", "TX", "TM"],
190
+ %w(Tunisia TS TN),
191
+ %w(Turkey TU TR),
192
+ %w(Turkmenistan TX TM),
195
193
  ["Turks and Caicos Islands", "TK", "TC"],
196
- ["Ukraine", "UP", "UA"],
194
+ %w(Ukraine UP UA),
197
195
  ["United Kingdom", "UK", "GB"],
198
- ["Vanuatu", "NH", "VU"],
196
+ %w(Vanuatu NH VU),
199
197
  ["Viet Nam", "VM", "VN"],
200
198
  ["Virgin Islands, British", "VI", "VG"],
201
199
  ["Virgin Islands, U.S.", "VQ", "VI"],
202
200
  ["Western Sahara", "WI", "EH"],
203
- ["Yemen", "YM", "YE"],
204
- ["Zambia", "ZA", "ZM"],
205
- ["Zimbabwe", "ZI", "ZW"],
206
- ["United States", "USA", "US"],
201
+ %w(Yemen YM YE),
202
+ %w(Zambia ZA ZM),
203
+ %w(Zimbabwe ZI ZW),
204
+ ["United States", "USA", "US"]
207
205
  ]
208
206
 
209
207
  addresses_to_update = []
210
208
 
211
209
  # e.g. convert AS -> AU and Australia -> AU
212
- # SELECT "addresses".* FROM "addresses"
210
+ # SELECT "addresses".* FROM "addresses"
213
211
  # WHERE (("addresses"."country" = 'AU' OR "addresses"."country" = 'Australia'))
214
- convert_table.each { |ct|
215
- t=Address.arel_table
212
+ convert_table.each do |ct|
213
+ t = Address.arel_table
216
214
  scope = t[:country].eq(ct[0]) # Australia
217
215
  scope = scope.or(t[:country].eq(ct[1])) # AU
218
216
 
219
217
  tmp = Address.where(scope)
220
- tmp.map{ |t| t.country=ct[2] }
221
-
218
+ tmp.map { |t| t.country = ct[2] }
219
+
222
220
  unless tmp.blank?
223
221
  addresses_to_update << tmp
224
222
  end
225
- }
223
+ end
226
224
 
227
225
  Address.transaction do
228
226
  begin
229
- addresses_to_update.each { |address_arr|
230
- address_arr.each { |address|
231
- address.save!
232
- }
233
- }
227
+ addresses_to_update.each do |address_arr|
228
+ address_arr.each(&:save!)
229
+ end
234
230
  Setting.have_run_country_migration = true
235
231
  rescue Exception => e
236
232
  ActiveRecord::Rollback
237
233
  puts e
238
234
  end
239
235
  end
240
-
241
236
  end
242
237
  end
243
-
244
238
  end