artfully_ose 1.2.0 → 1.3.0.pre1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (577) hide show
  1. checksums.yaml +5 -13
  2. data/app/assets/images/actions/open.png +0 -0
  3. data/app/assets/images/actions/pledge.png +0 -0
  4. data/app/assets/images/actions/pledge.psd +0 -0
  5. data/app/assets/images/glyphish/gray/cancel.png +0 -0
  6. data/app/assets/images/loading_gray.gif +0 -0
  7. data/app/assets/javascripts/application.js +30 -4
  8. data/app/assets/javascripts/baseball_card.js.coffee +235 -0
  9. data/app/assets/javascripts/boxoffice.js +12 -49
  10. data/app/assets/javascripts/contributions.js +264 -0
  11. data/app/assets/javascripts/custom/advanced_searches.js +142 -0
  12. data/app/assets/javascripts/custom/endless-scroll.js +1 -1
  13. data/app/assets/javascripts/custom/job-monitor.js +73 -0
  14. data/app/assets/javascripts/custom/kits-config.js +0 -2
  15. data/app/assets/javascripts/custom/mailchimp.js +14 -0
  16. data/app/assets/javascripts/custom/people.js +31 -2
  17. data/app/assets/javascripts/custom/person-finder.js +34 -0
  18. data/app/assets/javascripts/custom/searches.js +12 -0
  19. data/app/assets/javascripts/custom/user-finder.js +111 -0
  20. data/app/assets/javascripts/households.js +12 -5
  21. data/app/assets/javascripts/ical.js +138 -0
  22. data/app/assets/javascripts/jquery-lib/jquery.timeago.js +221 -0
  23. data/app/assets/javascripts/locationselector.js +1 -1
  24. data/app/assets/javascripts/memberships.js +24 -0
  25. data/app/assets/javascripts/relationships.js +10 -0
  26. data/app/assets/javascripts/search.js +22 -0
  27. data/app/assets/javascripts/store/sliding-wizard.js +2 -2
  28. data/app/assets/javascripts/store/store.js +51 -6
  29. data/app/assets/javascripts/tags.js +44 -0
  30. data/app/assets/stylesheets/application.sass +331 -32
  31. data/app/assets/stylesheets/bootstrap-overrides.css +24 -9
  32. data/app/assets/stylesheets/boxoffice.css.scss +0 -4
  33. data/app/assets/stylesheets/sass/_campaigns.sass +43 -0
  34. data/app/assets/stylesheets/sass/_tags.sass +10 -1
  35. data/app/assets/stylesheets/sass/fa-color.css.scss +13 -0
  36. data/app/assets/stylesheets/sass/store.sass +7 -7
  37. data/app/concerns/cart_finder.rb +10 -0
  38. data/app/concerns/oh_noes.rb +1 -1
  39. data/app/controllers/actions_controller.rb +5 -5
  40. data/app/controllers/addresses_controller.rb +1 -1
  41. data/app/controllers/advanced_search_segments_controller.rb +97 -0
  42. data/app/controllers/advanced_searches_controller.rb +118 -0
  43. data/app/controllers/appeals_controller.rb +63 -0
  44. data/app/controllers/artfully_ose_controller.rb +20 -2
  45. data/app/controllers/campaigns_controller.rb +90 -0
  46. data/app/controllers/charts_controller.rb +8 -2
  47. data/app/controllers/console_sales_controller.rb +21 -23
  48. data/app/controllers/contributions_controller.rb +74 -43
  49. data/app/controllers/converts_controller.rb +21 -0
  50. data/app/controllers/delete_ticket_types_controller.rb +35 -0
  51. data/app/controllers/events_pass_types_controller.rb +10 -2
  52. data/app/controllers/export_controller.rb +4 -4
  53. data/app/controllers/households_controller.rb +63 -15
  54. data/app/controllers/imports_controller.rb +13 -10
  55. data/app/controllers/job_monitors_controller.rb +9 -0
  56. data/app/controllers/members/people_controller.rb +7 -5
  57. data/app/controllers/members/sessions_controller.rb +1 -0
  58. data/app/controllers/membership_comps_controller.rb +5 -20
  59. data/app/controllers/memberships_controller.rb +2 -2
  60. data/app/controllers/merges_controller.rb +7 -6
  61. data/app/controllers/mobile/users_controller.rb +18 -6
  62. data/app/controllers/notes_controller.rb +5 -1
  63. data/app/controllers/orders_controller.rb +30 -13
  64. data/app/controllers/organizations_controller.rb +8 -0
  65. data/app/controllers/passes_kits_controller.rb +2 -4
  66. data/app/controllers/people_controller.rb +105 -17
  67. data/app/controllers/pledges_controller.rb +64 -0
  68. data/app/controllers/preview_rows_controller.rb +29 -0
  69. data/app/controllers/regular_donation_kits_controller.rb +11 -6
  70. data/app/controllers/sales_controller.rb +72 -40
  71. data/app/controllers/searches_controller.rb +37 -6
  72. data/app/controllers/segments_controller.rb +33 -2
  73. data/app/controllers/settlements_controller.rb +13 -7
  74. data/app/controllers/shows_controller.rb +58 -24
  75. data/app/controllers/statements_controller.rb +2 -2
  76. data/app/controllers/store/checkouts_controller.rb +43 -26
  77. data/app/controllers/store/donations_controller.rb +27 -11
  78. data/app/controllers/store/memberships_controller.rb +37 -4
  79. data/app/controllers/store/orders_controller.rb +26 -10
  80. data/app/controllers/store/passes_controller.rb +30 -3
  81. data/app/controllers/tags_controller.rb +42 -0
  82. data/app/controllers/ticket_types_controller.rb +9 -2
  83. data/app/controllers/tickets_controller.rb +6 -4
  84. data/app/controllers/unacknowledged_gifts_controller.rb +45 -0
  85. data/app/controllers/user_memberships_controller.rb +47 -8
  86. data/app/helpers/advanced_searches_helper.rb +252 -0
  87. data/app/helpers/artfully_ose_helper.rb +33 -4
  88. data/app/helpers/checkouts_helper.rb +16 -0
  89. data/app/helpers/mailchimp_lists_for_search_helper.rb +21 -0
  90. data/app/helpers/orders_helper.rb +11 -0
  91. data/app/helpers/people_helper.rb +28 -1
  92. data/app/helpers/relationships_helper.rb +6 -0
  93. data/app/helpers/sales_helper.rb +3 -1
  94. data/app/helpers/searches_helper.rb +3 -1
  95. data/app/helpers/segments_helper.rb +3 -0
  96. data/app/mailers/order_mailer.rb +8 -1
  97. data/app/mailers/producer_mailer.rb +39 -0
  98. data/app/mailers/reports_mailer.rb +6 -1
  99. data/app/models/ability.rb +15 -8
  100. data/app/models/action.rb +33 -4
  101. data/app/models/actions/change_action.rb +3 -1
  102. data/app/models/actions/comp_action.rb +3 -1
  103. data/app/models/actions/convert_action.rb +19 -0
  104. data/app/models/actions/do_action.rb +3 -1
  105. data/app/models/actions/exchange_action.rb +3 -1
  106. data/app/models/actions/get_action.rb +3 -1
  107. data/app/models/actions/give_action.rb +8 -2
  108. data/app/models/actions/go_action.rb +3 -1
  109. data/app/models/actions/hear_action.rb +15 -1
  110. data/app/models/actions/join_action.rb +3 -1
  111. data/app/models/actions/mailchimp_hear_action.rb +17 -0
  112. data/app/models/actions/pledge_action.rb +19 -0
  113. data/app/models/actions/refund_action.rb +3 -1
  114. data/app/models/actions/say_action.rb +3 -1
  115. data/app/models/actions/system_action.rb +17 -0
  116. data/app/models/address.rb +76 -31
  117. data/app/models/advanced_search.rb +434 -0
  118. data/app/models/advanced_search_segment.rb +12 -0
  119. data/app/models/appeal.rb +106 -0
  120. data/app/models/box_office.rb +1 -1
  121. data/app/models/budget_restriction.rb +9 -0
  122. data/app/models/campaign.rb +141 -0
  123. data/app/models/cart.rb +39 -4
  124. data/app/models/chart.rb +2 -2
  125. data/app/models/checkout.rb +54 -10
  126. data/app/models/comp.rb +7 -5
  127. data/app/models/company.rb +2 -0
  128. data/app/models/console_sale.rb +26 -0
  129. data/app/models/contribution.rb +327 -62
  130. data/app/models/convert.rb +62 -0
  131. data/app/models/daily_membership_report.rb +1 -1
  132. data/app/models/database_views/item_view.rb +91 -49
  133. data/app/models/discount.rb +1 -1
  134. data/app/models/discounts/discount_type.rb +2 -1
  135. data/app/models/donation.rb +27 -2
  136. data/app/models/donation_search.rb +188 -10
  137. data/app/models/door_list.rb +39 -2
  138. data/app/models/event.rb +31 -15
  139. data/app/models/ext.rb +3 -3
  140. data/app/models/ext/delayed_indexing.rb +41 -1
  141. data/app/models/ext/integrations.rb +6 -0
  142. data/app/models/forwarding_job_monitor.rb +2 -0
  143. data/app/models/household.rb +1 -1
  144. data/app/models/import.rb +39 -8
  145. data/app/models/imports/donations_import.rb +110 -19
  146. data/app/models/imports/events_import.rb +3 -2
  147. data/app/models/imports/mappings.rb +991 -0
  148. data/app/models/imports/memberships_import.rb +218 -20
  149. data/app/models/imports/people_import.rb +9 -1
  150. data/app/models/imports/rollback.rb +9 -0
  151. data/app/models/imports/validations.rb +7 -0
  152. data/app/models/individual.rb +3 -1
  153. data/app/models/item.rb +55 -17
  154. data/app/models/job/acknowledge_job.rb +23 -0
  155. data/app/models/job/checkout_processor.rb +1 -1
  156. data/app/models/job/convert_order_processor.rb +14 -0
  157. data/app/models/job/daily_email_report_job.rb +1 -12
  158. data/app/models/job/destroy_show_job.rb +1 -6
  159. data/app/models/job/destroy_tag_job.rb +18 -0
  160. data/app/models/job/door_list_generator_job.rb +33 -0
  161. data/app/models/job/door_list_mailer_job.rb +15 -0
  162. data/app/models/job/email_organization_sales_report_job.rb +32 -0
  163. data/app/models/job/expire_ticket_job.rb +19 -2
  164. data/app/models/job/export_people_job.rb +47 -0
  165. data/app/models/job/export_settlements_job.rb +24 -0
  166. data/app/models/job/geocode_address_job.rb +2 -7
  167. data/app/models/job/mailchimp_sync_job.rb +61 -3
  168. data/app/models/job/merge_job.rb +19 -0
  169. data/app/models/job/order_export_job.rb +36 -0
  170. data/app/models/job/order_mailer_job.rb +1 -2
  171. data/app/models/job/order_processor.rb +17 -6
  172. data/app/models/job/person_lifetime_value_job.rb +1 -0
  173. data/app/models/job/search_export_job.rb +33 -0
  174. data/app/models/job/suggest_households_by_address_job.rb +29 -0
  175. data/app/models/job/suggest_households_by_spouse_job.rb +22 -0
  176. data/app/models/job_monitor.rb +14 -0
  177. data/app/models/kit.rb +35 -8
  178. data/app/models/kits/campaigns_kit.rb +27 -0
  179. data/app/models/kits/mailchimp_kit.rb +548 -124
  180. data/app/models/kits/membership_kit.rb +14 -6
  181. data/app/models/kits/passes_kit.rb +14 -6
  182. data/app/models/kits/regular_donation_kit.rb +29 -2
  183. data/app/models/{relationships_kit.rb → kits/relationships_kit.rb} +3 -7
  184. data/app/models/kits/scannable_tickets_kit.rb +0 -5
  185. data/app/models/kits/sponsored_donation_kit.rb +2 -12
  186. data/app/models/kits/ticketing_kit.rb +9 -1
  187. data/app/models/linking_job_monitor.rb +2 -0
  188. data/app/models/list_grouping.rb +10 -0
  189. data/app/models/member.rb +35 -23
  190. data/app/models/member_number_generator.rb +2 -0
  191. data/app/models/membership.rb +23 -14
  192. data/app/models/membership_change.rb +17 -1
  193. data/app/models/membership_comp.rb +48 -23
  194. data/app/models/membership_comp_job.rb +7 -0
  195. data/app/models/membership_type.rb +13 -7
  196. data/app/models/monitorable.rb +19 -0
  197. data/app/models/note.rb +10 -1
  198. data/app/models/order.rb +170 -21
  199. data/app/models/order_handler.rb +13 -2
  200. data/app/models/orders/convert_order.rb +11 -0
  201. data/app/models/organization.rb +87 -9
  202. data/app/models/parsed_row.rb +142 -67
  203. data/app/models/pass.rb +13 -7
  204. data/app/models/pass_type.rb +17 -4
  205. data/app/models/passes_report.rb +6 -3
  206. data/app/models/payment.rb +16 -6
  207. data/app/models/payments/cash_payment.rb +1 -0
  208. data/app/models/payments/check_payment.rb +1 -5
  209. data/app/models/payments/comp_payment.rb +0 -1
  210. data/app/models/payments/credit_card_payment.rb +2 -7
  211. data/app/models/permission.rb +28 -0
  212. data/app/models/person.rb +503 -94
  213. data/app/models/phone.rb +3 -0
  214. data/app/models/redis_manager.rb +39 -0
  215. data/app/models/relationship.rb +31 -4
  216. data/app/models/relationship_builder.rb +0 -3
  217. data/app/models/rolling_membership_type.rb +5 -1
  218. data/app/models/s3_coordinator.rb +21 -0
  219. data/app/models/sale.rb +7 -4
  220. data/app/models/scheduled_pledge_payment.rb +69 -0
  221. data/app/models/search.rb +236 -24
  222. data/app/models/section.rb +6 -4
  223. data/app/models/show.rb +21 -12
  224. data/app/models/show_validator.rb +45 -0
  225. data/app/models/soft_credit.rb +126 -0
  226. data/app/models/subscribed_list.rb +52 -0
  227. data/app/models/suggested_household.rb +8 -2
  228. data/app/models/ticket.rb +35 -10
  229. data/app/models/ticket/locker.rb +25 -0
  230. data/app/models/ticket_summary.rb +1 -1
  231. data/app/models/ticket_type.rb +14 -2
  232. data/app/models/user.rb +42 -3
  233. data/app/models/user_membership.rb +57 -3
  234. data/app/models/valuation/lifetime_donations.rb +2 -2
  235. data/app/models/valuation/lifetime_pledges.rb +35 -0
  236. data/app/models/valuation/lifetime_value.rb +5 -1
  237. data/app/models/valuation_query.rb +109 -0
  238. data/app/models/venue.rb +8 -0
  239. data/app/views/actions/_action.html.haml +1 -1
  240. data/app/views/actions/_form.html.haml +2 -2
  241. data/app/views/actions/give/_show.html.haml +1 -1
  242. data/app/views/actions/pledge/_show.html.haml +8 -0
  243. data/app/views/actions/shared/_show.html.haml +1 -1
  244. data/app/views/addresses/_address.html.haml +3 -1
  245. data/app/views/advanced_search_segments/_advanced_searches_results.html.haml +15 -0
  246. data/app/views/advanced_search_segments/index.html.haml +18 -0
  247. data/app/views/advanced_search_segments/show.html.haml +46 -0
  248. data/app/views/advanced_searches/_form.html.haml +61 -0
  249. data/app/views/advanced_searches/_hit.html.haml +10 -0
  250. data/app/views/advanced_searches/_household.html.haml +7 -0
  251. data/app/views/advanced_searches/_new_condition.html.haml +3 -0
  252. data/app/views/advanced_searches/_people_count.html.erb +3 -0
  253. data/app/views/advanced_searches/_people_list.html.haml +5 -0
  254. data/app/views/advanced_searches/filters/_action.html.haml +12 -0
  255. data/app/views/advanced_searches/filters/_birthday.html.haml +9 -0
  256. data/app/views/advanced_searches/filters/_discount_code.html.haml +7 -0
  257. data/app/views/advanced_searches/filters/_donated.html.haml +17 -0
  258. data/app/views/advanced_searches/filters/_email.html.haml +7 -0
  259. data/app/views/advanced_searches/filters/_has_purchased_for.html.haml +9 -0
  260. data/app/views/advanced_searches/filters/_keyword.html.haml +9 -0
  261. data/app/views/advanced_searches/filters/_lifetime_value.html.haml +13 -0
  262. data/app/views/advanced_searches/filters/_limit_results.html.haml +7 -0
  263. data/app/views/advanced_searches/filters/_location.html.haml +11 -0
  264. data/app/views/advanced_searches/filters/_mailchimp_group.html.haml +8 -0
  265. data/app/views/advanced_searches/filters/_mailchimp_list.html.haml +8 -0
  266. data/app/views/advanced_searches/filters/_membership_ended.html.haml +9 -0
  267. data/app/views/advanced_searches/filters/_membership_started.html.haml +9 -0
  268. data/app/views/advanced_searches/filters/_membership_status.html.haml +8 -0
  269. data/app/views/advanced_searches/filters/_membership_type.html.haml +8 -0
  270. data/app/views/advanced_searches/filters/_orders.html.haml +10 -0
  271. data/app/views/advanced_searches/filters/_pass_type.html.haml +9 -0
  272. data/app/views/advanced_searches/filters/_relationships.html.haml +8 -0
  273. data/app/views/advanced_searches/filters/_segment.html.haml +8 -0
  274. data/app/views/advanced_searches/filters/_tagging.html.haml +9 -0
  275. data/app/views/advanced_searches/new.html.haml +12 -0
  276. data/app/views/advanced_searches/show.html.haml +107 -0
  277. data/app/views/advanced_searches/shows_for_org.html.haml +1 -0
  278. data/app/views/advanced_searches/ticket_types_for_org.html.haml +1 -0
  279. data/app/views/advanced_searches/update.js.erb +9 -0
  280. data/app/views/appeals/_form.html.haml +113 -0
  281. data/app/views/appeals/_header.html.haml +6 -0
  282. data/app/views/appeals/_heard_action.html.haml +16 -0
  283. data/app/views/appeals/edit.html.haml +8 -0
  284. data/app/views/appeals/new.html.haml +6 -0
  285. data/app/views/campaigns/_campaign_donations.html.haml +19 -0
  286. data/app/views/campaigns/_campaign_stats.html.haml +28 -0
  287. data/app/views/campaigns/_form.html.haml +48 -0
  288. data/app/views/campaigns/_header.html.haml +6 -0
  289. data/app/views/campaigns/edit.html.haml +6 -0
  290. data/app/views/campaigns/index.html.haml +33 -0
  291. data/app/views/campaigns/new.html.haml +6 -0
  292. data/app/views/campaigns/show.html.haml +132 -0
  293. data/app/views/console_sales/_cart.html.haml +3 -2
  294. data/app/views/console_sales/_payment.html.haml +14 -1
  295. data/app/views/console_sales/new.html.haml +11 -6
  296. data/app/views/contributions/_form.html.haml +139 -37
  297. data/app/views/contributions/_header.html.haml +5 -0
  298. data/app/views/contributions/_match_eligible.html.haml +24 -0
  299. data/app/views/contributions/_pledge_payment.html.haml +22 -0
  300. data/app/views/contributions/_search.html.haml +30 -0
  301. data/app/views/contributions/_soft_credit.html.haml +25 -0
  302. data/app/views/contributions/edit.html.haml +5 -8
  303. data/app/views/contributions/find_person.html.haml +16 -15
  304. data/app/views/contributions/index.html.haml +61 -24
  305. data/app/views/contributions/new.html.haml +5 -5
  306. data/app/views/converts/_grouped_form.html.haml +11 -0
  307. data/app/views/converts/new.html.haml +35 -0
  308. data/app/views/delete_ticket_types/_cannot_destroy_modal.html.haml +11 -0
  309. data/app/views/delete_ticket_types/_cannot_destroy_modal.rb +0 -0
  310. data/app/views/delete_ticket_types/_confirm_destroy_modal.html.haml +13 -0
  311. data/app/views/delete_ticket_types/show.html.haml +4 -0
  312. data/app/views/discounts/_form.html.haml +1 -1
  313. data/app/views/events/_day_date_show.html.haml +4 -2
  314. data/app/views/events/_glance.html.haml +12 -12
  315. data/app/views/events/_header.html.haml +1 -1
  316. data/app/views/events/_list.html.haml +1 -1
  317. data/app/views/events/_menu.html.haml +26 -21
  318. data/app/views/events/_section_fields.html.haml +1 -1
  319. data/app/views/events/_tax_deductible_message.html.haml +3 -0
  320. data/app/views/events/_ticket_type_fields.html.haml +13 -3
  321. data/app/views/events/index.html.haml +2 -1
  322. data/app/views/events/messages.html.haml +12 -10
  323. data/app/views/events/show.html.haml +6 -6
  324. data/app/views/events/temp_discount_form.html.haml +1 -1
  325. data/app/views/events_pass_types/_form.html.haml +1 -1
  326. data/app/views/events_pass_types/new.html.haml +1 -2
  327. data/app/views/households/_edit_modal.html.haml +9 -4
  328. data/app/views/households/_form.html.haml +6 -1
  329. data/app/views/households/_header.html.haml +9 -18
  330. data/app/views/households/confirm.html.haml +43 -0
  331. data/app/views/households/new.html.haml +3 -1
  332. data/app/views/households/show.html.haml +2 -1
  333. data/app/views/households/suggested.html.haml +10 -27
  334. data/app/views/imports/_export_links.html.haml +2 -2
  335. data/app/views/imports/donations/_new.html.haml +49 -6
  336. data/app/views/imports/donations/_pending.html.haml +69 -22
  337. data/app/views/imports/donations/_preview.html.haml +23 -0
  338. data/app/views/imports/events/_new.html.haml +8 -8
  339. data/app/views/imports/index.html.haml +26 -21
  340. data/app/views/imports/memberships/_approved.html.haml +16 -0
  341. data/app/views/imports/memberships/_caching.html.haml +17 -0
  342. data/app/views/imports/memberships/_failed.html.haml +5 -0
  343. data/app/views/imports/memberships/_imported.html.haml +45 -0
  344. data/app/views/imports/memberships/_importing.html.haml +20 -0
  345. data/app/views/imports/memberships/_invalid.html.haml +5 -0
  346. data/app/views/imports/memberships/_new.html.haml +155 -0
  347. data/app/views/imports/memberships/_pending.html.haml +85 -0
  348. data/app/views/imports/memberships/_preview_rows.html.haml +38 -0
  349. data/app/views/imports/people/_new.html.haml +81 -15
  350. data/app/views/imports/shared/_inspect_modal.html.haml +10 -1
  351. data/app/views/imports/shared/_new_sidebar.html.haml +12 -0
  352. data/app/views/imports/show.html.haml +0 -3
  353. data/app/views/index/_action.html.haml +4 -3
  354. data/app/views/index/_recent_activity.html.haml +14 -7
  355. data/app/views/index/dashboard.html.haml +27 -14
  356. data/app/views/job_monitors/_job_monitor_show.html.haml +34 -0
  357. data/app/views/job_monitors/_linking_job_monitor_show.html.haml +31 -0
  358. data/app/views/job_monitors/show.html.haml +1 -0
  359. data/app/views/layouts/_google_analytics.html.haml +9 -11
  360. data/app/views/layouts/_menu.html.haml +5 -3
  361. data/app/views/layouts/application.html.haml +12 -4
  362. data/app/views/layouts/devise_layout.html.haml +1 -1
  363. data/app/views/layouts/storefront.html.haml +7 -10
  364. data/app/views/members/index/index.html.haml +82 -4
  365. data/app/views/members/mailer/_invitation_body.html.haml +2 -2
  366. data/app/views/members/passwords/new.html.haml +13 -0
  367. data/app/views/members/sessions/new.html.haml +1 -1
  368. data/app/views/membership_comps/confirm.html.haml +10 -8
  369. data/app/views/membership_comps/create.html.haml +1 -3
  370. data/app/views/membership_kits/edit.html.haml +6 -0
  371. data/app/views/membership_types/_form.html.haml +1 -1
  372. data/app/views/membership_types/index.html.haml +11 -3
  373. data/app/views/memberships/index.html.haml +122 -109
  374. data/app/views/merges/find_person.html.haml +5 -3
  375. data/app/views/merges/new.html.haml +13 -4
  376. data/app/views/notes/_note.html.haml +3 -3
  377. data/app/views/order_mailer/confirmation_for.html.haml +1 -0
  378. data/app/views/order_mailer/confirmation_for.text.haml +1 -0
  379. data/app/views/orders/_assignable_donations.html.haml +25 -0
  380. data/app/views/orders/_assignable_pledges.html.haml +26 -0
  381. data/app/views/orders/_item_table.haml +20 -8
  382. data/app/views/orders/_order_sidebar.html.haml +37 -7
  383. data/app/views/orders/membership.html.haml +2 -2
  384. data/app/views/orders/passes.html.haml +4 -4
  385. data/app/views/orders/sales.html.haml +5 -5
  386. data/app/views/orders/show.html.haml +26 -7
  387. data/app/views/organizations/_form.html.haml +0 -5
  388. data/app/views/pass_types/index.html.haml +13 -5
  389. data/app/views/passes/index.html.haml +50 -39
  390. data/app/views/passes_kits/edit.html.haml +6 -0
  391. data/app/views/passes_reports/index.html.haml +1 -1
  392. data/app/views/pdfs/member.html.haml +1 -1
  393. data/app/views/pdfs/member_card_generator/blanks_usa_idc6.html.haml +1 -1
  394. data/app/views/pdfs/order.html.haml +5 -3
  395. data/app/views/people/_address_fields.html.haml +40 -0
  396. data/app/views/people/_convert_to_company_modal.html.haml +3 -0
  397. data/app/views/people/_edit_modal.html.haml +121 -38
  398. data/app/views/people/_form.html.haml +8 -14
  399. data/app/views/people/_header.html.haml +11 -16
  400. data/app/views/people/_list.html.haml +3 -9
  401. data/app/views/people/_mailchimp_group.html.haml +3 -0
  402. data/app/views/people/_phone_fields.html.haml +1 -1
  403. data/app/views/people/_relationship_fields.html.haml +10 -5
  404. data/app/views/people/_work_with_menu.html.haml +14 -8
  405. data/app/views/people/index.html.haml +10 -9
  406. data/app/views/people/new.html.haml +18 -4
  407. data/app/views/people/pledges.html.haml +13 -0
  408. data/app/views/people/show.html.haml +96 -45
  409. data/app/views/pledges/_none_scheduled_payment_table.html.haml +17 -0
  410. data/app/views/pledges/_receive_pledge.html.haml +87 -0
  411. data/app/views/pledges/_scheduled_payments_table.html.haml +18 -0
  412. data/app/views/pledges/index.html.haml +47 -0
  413. data/app/views/preview_rows/index.html.haml +1 -0
  414. data/app/views/producer_mailer/donation_notification.html.haml +9 -0
  415. data/app/views/producer_mailer/donation_notification.text.erb +8 -0
  416. data/app/views/producer_mailer/door_list_notification.html.haml +10 -0
  417. data/app/views/producer_mailer/door_list_notification.text.erb +6 -0
  418. data/app/views/producer_mailer/mailchimp_kit_initial_sync_notification.html.haml +2 -2
  419. data/app/views/regular_donation_kits/edit.html.haml +29 -1
  420. data/app/views/relationships/index.html.haml +1 -1
  421. data/app/views/sales/_boxoffice.html.haml +15 -5
  422. data/app/views/sales/_doorlist.html.haml +2 -2
  423. data/app/views/sales/new.html.haml +2 -2
  424. data/app/views/searches/_company.html.haml +7 -0
  425. data/app/views/searches/_form.html.haml +75 -8
  426. data/app/views/searches/_household.html.haml +2 -2
  427. data/app/views/searches/_individual.html.haml +7 -0
  428. data/app/views/searches/show.html.haml +59 -23
  429. data/app/views/segments/index.html.haml +1 -1
  430. data/app/views/segments/show.html.haml +36 -1
  431. data/app/views/shared/_baseball_card.html.haml +40 -0
  432. data/app/views/shared/_tags.html.haml +10 -8
  433. data/app/views/shows/_empty_ticket_table.html.haml +12 -0
  434. data/app/views/shows/_sections_table.html.haml +78 -69
  435. data/app/views/shows/_ticket_table.html.haml +10 -7
  436. data/app/views/shows/index.html.haml +95 -85
  437. data/app/views/statements/_shows.html.haml +1 -1
  438. data/app/views/store/checkouts/_event_information.html.haml +89 -0
  439. data/app/views/store/checkouts/_shopping_cart_display.haml +8 -0
  440. data/app/views/store/checkouts/_thanks.html.haml +40 -0
  441. data/app/views/store/checkouts/create.html.haml +1 -0
  442. data/app/views/store/checkouts/shopping_cart_display/_discounts.haml +8 -0
  443. data/app/views/store/checkouts/shopping_cart_display/_donations.haml +15 -0
  444. data/app/views/store/checkouts/{_membership_info.html.haml → shopping_cart_display/_membership_info.html.haml} +0 -0
  445. data/app/views/store/checkouts/shopping_cart_display/_memberships.haml +8 -0
  446. data/app/views/store/checkouts/shopping_cart_display/_passes.haml +9 -0
  447. data/app/views/store/checkouts/shopping_cart_display/_tickets.haml +10 -0
  448. data/app/views/store/checkouts/shopping_cart_display/_total.haml +10 -0
  449. data/app/views/store/donations/index.html.haml +4 -0
  450. data/app/views/store/events/_contact_info.html.haml +8 -0
  451. data/app/views/store/events/_venue.html.haml +14 -7
  452. data/app/views/store/events/calendar.html.haml +2 -9
  453. data/app/views/store/events/show.html.haml +2 -9
  454. data/app/views/store/events/single_show.html.haml +3 -3
  455. data/app/views/store/memberships/index.html.haml +3 -3
  456. data/app/views/store/orders/blank.html.erb +34 -0
  457. data/app/views/store/orders/show.html.haml +15 -6
  458. data/app/views/store/passes/index.html.haml +3 -3
  459. data/app/views/store/shared/_small_donate_form.html.haml +21 -18
  460. data/app/views/tags/_edit_modal.html.haml +16 -0
  461. data/app/views/tags/index.html.haml +23 -0
  462. data/app/views/unacknowledged_gifts/_heard_action.html.haml +10 -0
  463. data/app/views/unacknowledged_gifts/index.html.haml +76 -0
  464. data/app/views/user_memberships/_list.html.haml +147 -24
  465. data/config/initializers/delayed_job_config.rb +10 -1
  466. data/config/routes.rb +85 -9
  467. data/db/migrate/20140422193345_add_email_copy_to_pass_type.rb +1 -1
  468. data/db/migrate/20140616045851_add_birthdate_to_search.rb +7 -0
  469. data/db/migrate/20140623131025_create_campaigns.rb +27 -0
  470. data/db/migrate/20140627120214_create_appeals.rb +28 -0
  471. data/db/migrate/20140630151406_add_deleted_at_to_campaigns.rb +9 -0
  472. data/db/migrate/20140701124100_add_segment_id_and_notes_to_appeals.rb +12 -0
  473. data/db/migrate/20140702115815_add_campaign_id_and_appeal_id_to_donations.rb +14 -0
  474. data/db/migrate/20140702121928_add_materials_to_appeals.rb +11 -0
  475. data/db/migrate/20140702150521_add_deleted_at_to_appeals.rb +9 -0
  476. data/db/migrate/20140709151816_add_campaign_id_and_appeal_id_to_orders.rb +14 -0
  477. data/db/migrate/20140723133850_remove_campaign_id_and_apeal_id_from_orders.rb +11 -0
  478. data/db/migrate/20140723134923_add_commitment_date_to_donations.rb +6 -0
  479. data/db/migrate/20140730141515_add_match_eligible_to_donations.rb +15 -0
  480. data/db/migrate/20140818141140_create_soft_credits.rb +12 -0
  481. data/db/migrate/20140903140113_add_pledge_to_donations.rb +9 -0
  482. data/db/migrate/20140904183953_add_destroyed_at_to_relationships.rb +7 -0
  483. data/db/migrate/20140905080503_create_scheduled_pledge_payments.rb +16 -0
  484. data/db/migrate/20140909150251_add_org_to_suggested_household.rb +7 -0
  485. data/db/migrate/20141007114614_add_order_id_to_donations.rb +15 -0
  486. data/db/migrate/20141021134013_add_lifetime_pledges_to_people.rb +5 -0
  487. data/db/migrate/20141027191307_default_overwrite_member_addresses_to_false.rb +5 -0
  488. data/db/migrate/20141031193839_update_relations.rb +9 -0
  489. data/db/migrate/20141126183258_add_mailchimp_status_fields_to_people.rb +6 -0
  490. data/db/migrate/20141126184811_add_processing_at_to_ticket.rb +5 -0
  491. data/db/migrate/20141127135743_add_import_to_campaigns.rb +6 -0
  492. data/db/migrate/20141128143944_add_fiscal_year_to_donations.rb +5 -0
  493. data/db/migrate/20141128151407_remove_fiscal_year_from_scheduled_pledge_payments.rb +3 -0
  494. data/db/migrate/20141204164400_add_more_indexes_to_actions.rb +7 -0
  495. data/db/migrate/20141204171612_add_indexes_to_charts.rb +12 -0
  496. data/db/migrate/20141204172658_add_hide_on_recent_activity_to_actions.rb +5 -0
  497. data/db/migrate/20141204173004_add_indexes_to_ept.rb +9 -0
  498. data/db/migrate/20141204211933_remove_membership_counts_from_members.rb +13 -0
  499. data/db/migrate/20141205202030_create_subscribed_lists.rb +19 -0
  500. data/db/migrate/20141208225228_add_mailchimp_lists_to_searches.rb +5 -0
  501. data/db/migrate/20141210162329_add_bounced_to_subscribed_lists.rb +5 -0
  502. data/db/migrate/20141211165307_add_external_reference_to_actions.rb +5 -0
  503. data/db/migrate/20141212172119_add_not_mailchimp_lists_to_searches.rb +5 -0
  504. data/db/migrate/20141229204605_normalize_states_in_addresses.rb +11 -0
  505. data/db/migrate/20150113091344_add_fiscal_to_organizations.rb +11 -0
  506. data/db/migrate/20150113091434_create_budget_restrictions.rb +14 -0
  507. data/db/migrate/20150113091503_add_budget_restriction_to_campaigns.rb +14 -0
  508. data/db/migrate/20150129091354_add_campaign_to_searches.rb +13 -0
  509. data/db/migrate/20150203174456_create_list_groupings.rb +12 -0
  510. data/db/migrate/20150203222451_add_groupings_to_searches.rb +6 -0
  511. data/db/migrate/20150219153827_add_roles_to_user_memberships.rb +13 -0
  512. data/db/migrate/20150223145657_add_daily_sales_to_user_membership.rb +13 -0
  513. data/db/migrate/20150318171857_create_advanced_searches.rb +16 -0
  514. data/db/migrate/20150319185940_add_org_id_index_to_orders.rb +5 -0
  515. data/db/migrate/20150325085516_add_received_amount_to_donations.rb +16 -0
  516. data/db/migrate/20150325173053_add_pass_index_to_tickets.rb +5 -0
  517. data/db/migrate/20150331084817_add_creator_id_to_orders.rb +11 -0
  518. data/db/migrate/20150406162656_index_tickets_on_action_id.rb +5 -0
  519. data/db/migrate/20150408123349_add_donor_instructions_to_orders.rb +9 -0
  520. data/db/migrate/20150408125600_add_index_to_imports.rb +5 -0
  521. data/db/migrate/20150414193419_add_index_to_phone.rb +5 -0
  522. data/db/migrate/20150414193646_add_index_to_taggings.rb +5 -0
  523. data/db/migrate/20150415113013_add_nickname_to_people.rb +11 -0
  524. data/db/migrate/20150420143707_add_indexes_to_donations.rb +7 -0
  525. data/db/migrate/20150421092302_add_kind_to_addresses.rb +11 -0
  526. data/db/migrate/20150513154513_add_name_to_advanced_search.rb +5 -0
  527. data/db/migrate/20150518131946_add_receive_donation_notification_to_user_memberships.rb +9 -0
  528. data/db/migrate/20150520182350_remove_name_from_advanced_search.rb +9 -0
  529. data/db/migrate/20150520202900_create_advanced_search_segments.rb +9 -0
  530. data/db/migrate/20150520210658_add_advanced_search_id_to_advanced_search_segment.rb +5 -0
  531. data/db/migrate/20150521183507_add_organization_id_to_advanced_search_segment.rb +5 -0
  532. data/db/migrate/20150602204548_add_index_on_deleted_at.rb +5 -0
  533. data/db/migrate/20150711143014_add_receive_door_list_to_user_memberships.rb +10 -0
  534. data/db/migrate/20150716000301_create_job_monitors_table.rb +12 -0
  535. data/db/migrate/20150807005404_re_refresh_show_stats.rb +8 -0
  536. data/db/migrate/20150810133417_convert_business_to_work.rb +5 -0
  537. data/db/migrate/20150812135205_update_notes_nulls.rb +9 -0
  538. data/db/migrate/20150813202745_index_household_id.rb +6 -0
  539. data/db/migrate/20150814075653_add_maiden_name_to_people.rb +9 -0
  540. data/db/migrate/20150911203530_normalize_countries_in_addresses.rb +11 -0
  541. data/db/migrate/20150922155253_add_advanced_search_segment_id_to_membership_types.rb +5 -0
  542. data/db/migrate/20150922155308_add_advanced_search_segment_id_to_pass_types.rb +5 -0
  543. data/db/migrate/20151006180702_add_deleted_at_to_ticket_types.rb +5 -0
  544. data/db/migrate/20151009175206_add_receipt_details_to_ticket_types.rb +5 -0
  545. data/db/migrate/20151112174723_index_list_groupings.rb +5 -0
  546. data/lib/artfully_ose/common_abilities.rb +80 -57
  547. data/lib/artfully_ose/version.rb +1 -1
  548. data/lib/tasks/artfully_ose.rake +46 -4
  549. data/spec/factories/action_factories.rb +2 -0
  550. data/spec/factories/address_factories.rb +2 -2
  551. data/spec/factories/advanced_search_factories.rb +45 -0
  552. data/spec/factories/advanced_search_segment_factories.rb +6 -0
  553. data/spec/factories/advanced_segment_factories.rb +6 -0
  554. data/spec/factories/campaign_factories.rb +20 -0
  555. data/spec/factories/cart_factories.rb +24 -0
  556. data/spec/factories/chart_factories.rb +4 -0
  557. data/spec/factories/event_factories.rb +6 -0
  558. data/spec/factories/item_factories.rb +23 -1
  559. data/spec/factories/kit_factories.rb +27 -3
  560. data/spec/factories/member_factories.rb +8 -1
  561. data/spec/factories/membership_factories.rb +12 -0
  562. data/spec/factories/membership_type_factories.rb +18 -0
  563. data/spec/factories/note_factories.rb +7 -0
  564. data/spec/factories/order_factories.rb +7 -0
  565. data/spec/factories/pass_factories.rb +6 -0
  566. data/spec/factories/payments_factories.rb +1 -1
  567. data/spec/factories/person_factories.rb +46 -4
  568. data/spec/factories/scheduled_pledge_payment_factories.rb +10 -0
  569. data/spec/factories/show_factories.rb +8 -3
  570. data/spec/factories/soft_credit_factories.rb +8 -0
  571. data/spec/factories/ticket_factories.rb +22 -9
  572. data/spec/factories/user_factories.rb +16 -8
  573. metadata +342 -59
  574. data/app/controllers/comps_controller.rb +0 -47
  575. data/app/models/household_suggester.rb +0 -58
  576. data/app/views/searches/_person.html.haml +0 -10
  577. data/app/views/store/checkouts/thanks.html.haml +0 -134
@@ -1,7 +1,6 @@
1
1
  FactoryGirl.define do
2
2
  factory :user do
3
3
  email { Faker::Internet.email }
4
- password 'password'
5
4
  first_name { Faker::Name.first_name }
6
5
  last_name { Faker::Name.last_name }
7
6
 
@@ -10,15 +9,24 @@ FactoryGirl.define do
10
9
  end
11
10
  end
12
11
 
12
+ factory :plain_user, class: User do
13
+ email { Faker::Internet.email }
14
+ first_name { Faker::Name.first_name }
15
+ last_name { Faker::Name.last_name }
16
+ end
17
+
13
18
  factory :user_in_organization, :parent => :user do
14
19
  after(:create) do |user|
15
- org = FactoryGirl.create(:organization)
16
- user.organizations << org
17
- user.stub(:current_organization).and_return(org)
18
- user.reload
19
20
 
20
- org.make_owner(user)
21
- org.reload
21
+ if user.organizations.blank?
22
+ org = FactoryGirl.create(:organization)
23
+ user.organizations << org
24
+ user.stub(:current_organization).and_return(org)
25
+ user.reload
26
+ end
27
+
28
+ user.organizations.first.make_owner(user)
29
+ user.organizations.first.reload
22
30
  end
23
31
  end
24
- end
32
+ end
metadata CHANGED
@@ -1,43 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: artfully_ose
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.0.pre1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Artful.ly
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-24 00:00:00.000000000 Z
11
+ date: 2015-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ! '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 3.2.12
19
+ version: 3.2.22
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ! '>='
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 3.2.12
26
+ version: 3.2.22
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: transitions
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: 0.0.11
33
+ version: 0.1.13
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: 0.0.11
40
+ version: 0.1.13
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: devise
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -95,19 +95,19 @@ dependencies:
95
95
  - !ruby/object:Gem::Version
96
96
  version: 0.6.0
97
97
  - !ruby/object:Gem::Dependency
98
- name: exceptional
98
+ name: airbrake
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
- - - ! '>='
101
+ - - ">="
102
102
  - !ruby/object:Gem::Version
103
- version: 2.0.33
103
+ version: 4.1.0
104
104
  type: :runtime
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
- - - ! '>='
108
+ - - ">="
109
109
  - !ruby/object:Gem::Version
110
- version: 2.0.33
110
+ version: 4.1.0
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: slugged
113
113
  requirement: !ruby/object:Gem::Requirement
@@ -126,28 +126,28 @@ dependencies:
126
126
  name: activemerchant
127
127
  requirement: !ruby/object:Gem::Requirement
128
128
  requirements:
129
- - - ~>
129
+ - - "~>"
130
130
  - !ruby/object:Gem::Version
131
131
  version: 1.43.0
132
132
  type: :runtime
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
- - - ~>
136
+ - - "~>"
137
137
  - !ruby/object:Gem::Version
138
138
  version: 1.43.0
139
139
  - !ruby/object:Gem::Dependency
140
140
  name: braintree
141
141
  requirement: !ruby/object:Gem::Requirement
142
142
  requirements:
143
- - - ~>
143
+ - - "~>"
144
144
  - !ruby/object:Gem::Version
145
145
  version: 2.13.0
146
146
  type: :runtime
147
147
  prerelease: false
148
148
  version_requirements: !ruby/object:Gem::Requirement
149
149
  requirements:
150
- - - ~>
150
+ - - "~>"
151
151
  - !ruby/object:Gem::Version
152
152
  version: 2.13.0
153
153
  - !ruby/object:Gem::Dependency
@@ -182,14 +182,14 @@ dependencies:
182
182
  name: audited-activerecord
183
183
  requirement: !ruby/object:Gem::Requirement
184
184
  requirements:
185
- - - ~>
185
+ - - "~>"
186
186
  - !ruby/object:Gem::Version
187
187
  version: '3.0'
188
188
  type: :runtime
189
189
  prerelease: false
190
190
  version_requirements: !ruby/object:Gem::Requirement
191
191
  requirements:
192
- - - ~>
192
+ - - "~>"
193
193
  - !ruby/object:Gem::Version
194
194
  version: '3.0'
195
195
  - !ruby/object:Gem::Dependency
@@ -198,40 +198,40 @@ dependencies:
198
198
  requirements:
199
199
  - - '='
200
200
  - !ruby/object:Gem::Version
201
- version: 0.2.9
201
+ version: 0.3.1
202
202
  type: :runtime
203
203
  prerelease: false
204
204
  version_requirements: !ruby/object:Gem::Requirement
205
205
  requirements:
206
206
  - - '='
207
207
  - !ruby/object:Gem::Version
208
- version: 0.2.9
208
+ version: 0.3.1
209
209
  - !ruby/object:Gem::Dependency
210
210
  name: acts-as-taggable-on
211
211
  requirement: !ruby/object:Gem::Requirement
212
212
  requirements:
213
- - - ~>
213
+ - - "~>"
214
214
  - !ruby/object:Gem::Version
215
215
  version: 2.3.3
216
216
  type: :runtime
217
217
  prerelease: false
218
218
  version_requirements: !ruby/object:Gem::Requirement
219
219
  requirements:
220
- - - ~>
220
+ - - "~>"
221
221
  - !ruby/object:Gem::Version
222
222
  version: 2.3.3
223
223
  - !ruby/object:Gem::Dependency
224
224
  name: haml
225
225
  requirement: !ruby/object:Gem::Requirement
226
226
  requirements:
227
- - - ~>
227
+ - - "~>"
228
228
  - !ruby/object:Gem::Version
229
229
  version: '3.1'
230
230
  type: :runtime
231
231
  prerelease: false
232
232
  version_requirements: !ruby/object:Gem::Requirement
233
233
  requirements:
234
- - - ~>
234
+ - - "~>"
235
235
  - !ruby/object:Gem::Version
236
236
  version: '3.1'
237
237
  - !ruby/object:Gem::Dependency
@@ -252,56 +252,56 @@ dependencies:
252
252
  name: will_paginate
253
253
  requirement: !ruby/object:Gem::Requirement
254
254
  requirements:
255
- - - ~>
255
+ - - "~>"
256
256
  - !ruby/object:Gem::Version
257
257
  version: '3.0'
258
258
  type: :runtime
259
259
  prerelease: false
260
260
  version_requirements: !ruby/object:Gem::Requirement
261
261
  requirements:
262
- - - ~>
262
+ - - "~>"
263
263
  - !ruby/object:Gem::Version
264
264
  version: '3.0'
265
265
  - !ruby/object:Gem::Dependency
266
266
  name: bootstrap-will_paginate
267
267
  requirement: !ruby/object:Gem::Requirement
268
268
  requirements:
269
- - - ! '>='
269
+ - - ">="
270
270
  - !ruby/object:Gem::Version
271
271
  version: '0'
272
272
  type: :runtime
273
273
  prerelease: false
274
274
  version_requirements: !ruby/object:Gem::Requirement
275
275
  requirements:
276
- - - ! '>='
276
+ - - ">="
277
277
  - !ruby/object:Gem::Version
278
278
  version: '0'
279
279
  - !ruby/object:Gem::Dependency
280
280
  name: aws-sdk
281
281
  requirement: !ruby/object:Gem::Requirement
282
282
  requirements:
283
- - - ~>
283
+ - - "~>"
284
284
  - !ruby/object:Gem::Version
285
285
  version: 1.34.1
286
286
  type: :runtime
287
287
  prerelease: false
288
288
  version_requirements: !ruby/object:Gem::Requirement
289
289
  requirements:
290
- - - ~>
290
+ - - "~>"
291
291
  - !ruby/object:Gem::Version
292
292
  version: 1.34.1
293
293
  - !ruby/object:Gem::Dependency
294
294
  name: paperclip
295
295
  requirement: !ruby/object:Gem::Requirement
296
296
  requirements:
297
- - - ~>
297
+ - - "~>"
298
298
  - !ruby/object:Gem::Version
299
299
  version: 3.5.2
300
300
  type: :runtime
301
301
  prerelease: false
302
302
  version_requirements: !ruby/object:Gem::Requirement
303
303
  requirements:
304
- - - ~>
304
+ - - "~>"
305
305
  - !ruby/object:Gem::Version
306
306
  version: 3.5.2
307
307
  - !ruby/object:Gem::Dependency
@@ -336,28 +336,28 @@ dependencies:
336
336
  name: s3
337
337
  requirement: !ruby/object:Gem::Requirement
338
338
  requirements:
339
- - - ! '>='
339
+ - - ">="
340
340
  - !ruby/object:Gem::Version
341
341
  version: 0.3.11
342
342
  type: :runtime
343
343
  prerelease: false
344
344
  version_requirements: !ruby/object:Gem::Requirement
345
345
  requirements:
346
- - - ! '>='
346
+ - - ">="
347
347
  - !ruby/object:Gem::Version
348
348
  version: 0.3.11
349
349
  - !ruby/object:Gem::Dependency
350
350
  name: validates_timeliness
351
351
  requirement: !ruby/object:Gem::Requirement
352
352
  requirements:
353
- - - ! '>='
353
+ - - ">="
354
354
  - !ruby/object:Gem::Version
355
355
  version: '0'
356
356
  type: :runtime
357
357
  prerelease: false
358
358
  version_requirements: !ruby/object:Gem::Requirement
359
359
  requirements:
360
- - - ! '>='
360
+ - - ">="
361
361
  - !ruby/object:Gem::Version
362
362
  version: '0'
363
363
  - !ruby/object:Gem::Dependency
@@ -378,14 +378,14 @@ dependencies:
378
378
  name: gravatar_image_tag
379
379
  requirement: !ruby/object:Gem::Requirement
380
380
  requirements:
381
- - - ! '>='
381
+ - - ">="
382
382
  - !ruby/object:Gem::Version
383
383
  version: '0'
384
384
  type: :runtime
385
385
  prerelease: false
386
386
  version_requirements: !ruby/object:Gem::Requirement
387
387
  requirements:
388
- - - ! '>='
388
+ - - ">="
389
389
  - !ruby/object:Gem::Version
390
390
  version: '0'
391
391
  - !ruby/object:Gem::Dependency
@@ -420,30 +420,30 @@ dependencies:
420
420
  name: mail
421
421
  requirement: !ruby/object:Gem::Requirement
422
422
  requirements:
423
- - - '='
423
+ - - "~>"
424
424
  - !ruby/object:Gem::Version
425
- version: 2.4.4
425
+ version: 2.5.4
426
426
  type: :runtime
427
427
  prerelease: false
428
428
  version_requirements: !ruby/object:Gem::Requirement
429
429
  requirements:
430
- - - '='
430
+ - - "~>"
431
431
  - !ruby/object:Gem::Version
432
- version: 2.4.4
432
+ version: 2.5.4
433
433
  - !ruby/object:Gem::Dependency
434
434
  name: gibbon
435
435
  requirement: !ruby/object:Gem::Requirement
436
436
  requirements:
437
437
  - - '='
438
438
  - !ruby/object:Gem::Version
439
- version: 0.3.5
439
+ version: 1.1.4
440
440
  type: :runtime
441
441
  prerelease: false
442
442
  version_requirements: !ruby/object:Gem::Requirement
443
443
  requirements:
444
444
  - - '='
445
445
  - !ruby/object:Gem::Version
446
- version: 0.3.5
446
+ version: 1.1.4
447
447
  - !ruby/object:Gem::Dependency
448
448
  name: set_watch_for
449
449
  requirement: !ruby/object:Gem::Requirement
@@ -504,16 +504,16 @@ dependencies:
504
504
  name: geocoder
505
505
  requirement: !ruby/object:Gem::Requirement
506
506
  requirements:
507
- - - ! '>='
507
+ - - '='
508
508
  - !ruby/object:Gem::Version
509
- version: '0'
509
+ version: 1.1.9
510
510
  type: :runtime
511
511
  prerelease: false
512
512
  version_requirements: !ruby/object:Gem::Requirement
513
513
  requirements:
514
- - - ! '>='
514
+ - - '='
515
515
  - !ruby/object:Gem::Version
516
- version: '0'
516
+ version: 1.1.9
517
517
  - !ruby/object:Gem::Dependency
518
518
  name: slicer
519
519
  requirement: !ruby/object:Gem::Requirement
@@ -556,6 +556,20 @@ dependencies:
556
556
  - - '='
557
557
  - !ruby/object:Gem::Version
558
558
  version: 1.3.3
559
+ - !ruby/object:Gem::Dependency
560
+ name: sunspot_test
561
+ requirement: !ruby/object:Gem::Requirement
562
+ requirements:
563
+ - - '='
564
+ - !ruby/object:Gem::Version
565
+ version: 0.4.0
566
+ type: :development
567
+ prerelease: false
568
+ version_requirements: !ruby/object:Gem::Requirement
569
+ requirements:
570
+ - - '='
571
+ - !ruby/object:Gem::Version
572
+ version: 0.4.0
559
573
  description: A Ruby on Rails engine for running ticketing, CRM, and order management. See
560
574
  http://fracturedatlas.github.com/artfully_app/ for the reference implementation
561
575
  email:
@@ -584,6 +598,9 @@ files:
584
598
  - app/assets/images/actions/hear.psd
585
599
  - app/assets/images/actions/join.png
586
600
  - app/assets/images/actions/join.psd
601
+ - app/assets/images/actions/open.png
602
+ - app/assets/images/actions/pledge.png
603
+ - app/assets/images/actions/pledge.psd
587
604
  - app/assets/images/actions/say.png
588
605
  - app/assets/images/actions/say.psd
589
606
  - app/assets/images/business-default-avatar.png
@@ -1193,6 +1210,7 @@ files:
1193
1210
  - app/assets/images/glyphish/gray/98-palette@2x.png
1194
1211
  - app/assets/images/glyphish/gray/99-umbrella.png
1195
1212
  - app/assets/images/glyphish/gray/99-umbrella@2x.png
1213
+ - app/assets/images/glyphish/gray/cancel.png
1196
1214
  - app/assets/images/glyphish/people/208-facebook.png
1197
1215
  - app/assets/images/glyphish/people/210-twitterbird.png
1198
1216
  - app/assets/images/glyphish/people/218-trash2-small.png
@@ -1806,6 +1824,7 @@ files:
1806
1824
  - app/assets/images/government-default-avatar.png
1807
1825
  - app/assets/images/household-default-avatar.png
1808
1826
  - app/assets/images/loading.gif
1827
+ - app/assets/images/loading_gray.gif
1809
1828
  - app/assets/images/nonprofit-default-avatar.png
1810
1829
  - app/assets/images/other-default-avatar.png
1811
1830
  - app/assets/images/person-default-avatar.png
@@ -1844,23 +1863,32 @@ files:
1844
1863
  - app/assets/javascripts/angular-resource.js
1845
1864
  - app/assets/javascripts/angular.js
1846
1865
  - app/assets/javascripts/application.js
1866
+ - app/assets/javascripts/baseball_card.js.coffee
1847
1867
  - app/assets/javascripts/bootstrap-wysihtml5.js
1848
1868
  - app/assets/javascripts/bootstrap.js
1849
1869
  - app/assets/javascripts/boxoffice.js
1850
1870
  - app/assets/javascripts/change-membership.js
1871
+ - app/assets/javascripts/contributions.js
1872
+ - app/assets/javascripts/custom/advanced_searches.js
1851
1873
  - app/assets/javascripts/custom/door-list.js
1852
1874
  - app/assets/javascripts/custom/endless-scroll.js
1853
1875
  - app/assets/javascripts/custom/grouped-form.js
1854
1876
  - app/assets/javascripts/custom/imports.js
1855
1877
  - app/assets/javascripts/custom/inline-people-search.js
1878
+ - app/assets/javascripts/custom/job-monitor.js
1856
1879
  - app/assets/javascripts/custom/kits-config.js
1880
+ - app/assets/javascripts/custom/mailchimp.js
1857
1881
  - app/assets/javascripts/custom/modernizr.custom.12828.js
1858
1882
  - app/assets/javascripts/custom/people.js
1883
+ - app/assets/javascripts/custom/person-finder.js
1859
1884
  - app/assets/javascripts/custom/prices.js
1885
+ - app/assets/javascripts/custom/searches.js
1860
1886
  - app/assets/javascripts/custom/show.js
1887
+ - app/assets/javascripts/custom/user-finder.js
1861
1888
  - app/assets/javascripts/custom/widget-generator.js
1862
1889
  - app/assets/javascripts/d3.v3.min.js
1863
1890
  - app/assets/javascripts/households.js
1891
+ - app/assets/javascripts/ical.js
1864
1892
  - app/assets/javascripts/jquery-lib/chosen.jquery.js
1865
1893
  - app/assets/javascripts/jquery-lib/fullcalendar.js
1866
1894
  - app/assets/javascripts/jquery-lib/index.js
@@ -1871,12 +1899,15 @@ files:
1871
1899
  - app/assets/javascripts/jquery-lib/jquery.gritter.min.js
1872
1900
  - app/assets/javascripts/jquery-lib/jquery.jeditable.js
1873
1901
  - app/assets/javascripts/jquery-lib/jquery.mask-money.js
1902
+ - app/assets/javascripts/jquery-lib/jquery.timeago.js
1874
1903
  - app/assets/javascripts/jquery-migrate-1.2.1.js
1875
1904
  - app/assets/javascripts/jquery-migrate-1.2.1.min.js
1876
1905
  - app/assets/javascripts/jquery.js
1877
1906
  - app/assets/javascripts/locationselector.js
1907
+ - app/assets/javascripts/memberships.js
1878
1908
  - app/assets/javascripts/relationships.js
1879
1909
  - app/assets/javascripts/sales-console.js
1910
+ - app/assets/javascripts/search.js
1880
1911
  - app/assets/javascripts/slicer.js
1881
1912
  - app/assets/javascripts/store/index.js
1882
1913
  - app/assets/javascripts/store/jquery.validate.additional-methods.js
@@ -1884,6 +1915,7 @@ files:
1884
1915
  - app/assets/javascripts/store/sliding-wizard.js
1885
1916
  - app/assets/javascripts/store/store.js
1886
1917
  - app/assets/javascripts/storefront.js
1918
+ - app/assets/javascripts/tags.js
1887
1919
  - app/assets/javascripts/wysihtml5-0.3.0.min.js
1888
1920
  - app/assets/stylesheets/application.sass
1889
1921
  - app/assets/stylesheets/bootstrap-overrides.css
@@ -1899,6 +1931,7 @@ files:
1899
1931
  - app/assets/stylesheets/pages/bootstrap-responsive.css
1900
1932
  - app/assets/stylesheets/printing.css
1901
1933
  - app/assets/stylesheets/reset.css
1934
+ - app/assets/stylesheets/sass/_campaigns.sass
1902
1935
  - app/assets/stylesheets/sass/_colors.sass
1903
1936
  - app/assets/stylesheets/sass/_event_list.sass
1904
1937
  - app/assets/stylesheets/sass/_flash.sass
@@ -1906,6 +1939,7 @@ files:
1906
1939
  - app/assets/stylesheets/sass/_tags.sass
1907
1940
  - app/assets/stylesheets/sass/box-office.sass
1908
1941
  - app/assets/stylesheets/sass/cart.sass
1942
+ - app/assets/stylesheets/sass/fa-color.css.scss
1909
1943
  - app/assets/stylesheets/sass/sliding-wizard.sass
1910
1944
  - app/assets/stylesheets/sass/store.sass
1911
1945
  - app/assets/stylesheets/sass/themes/default.sass
@@ -1920,12 +1954,17 @@ files:
1920
1954
  - app/concerns/unrefundable.rb
1921
1955
  - app/controllers/actions_controller.rb
1922
1956
  - app/controllers/addresses_controller.rb
1957
+ - app/controllers/advanced_search_segments_controller.rb
1958
+ - app/controllers/advanced_searches_controller.rb
1959
+ - app/controllers/appeals_controller.rb
1923
1960
  - app/controllers/artfully_ose_controller.rb
1924
1961
  - app/controllers/assignments_controller.rb
1962
+ - app/controllers/campaigns_controller.rb
1925
1963
  - app/controllers/charts_controller.rb
1926
- - app/controllers/comps_controller.rb
1927
1964
  - app/controllers/console_sales_controller.rb
1928
1965
  - app/controllers/contributions_controller.rb
1966
+ - app/controllers/converts_controller.rb
1967
+ - app/controllers/delete_ticket_types_controller.rb
1929
1968
  - app/controllers/discounts_controller.rb
1930
1969
  - app/controllers/discounts_reports_controller.rb
1931
1970
  - app/controllers/events_controller.rb
@@ -1935,6 +1974,7 @@ files:
1935
1974
  - app/controllers/households_controller.rb
1936
1975
  - app/controllers/imports_controller.rb
1937
1976
  - app/controllers/index_controller.rb
1977
+ - app/controllers/job_monitors_controller.rb
1938
1978
  - app/controllers/member_cards_controller.rb
1939
1979
  - app/controllers/members/index_controller.rb
1940
1980
  - app/controllers/members/invitations_controller.rb
@@ -1964,6 +2004,8 @@ files:
1964
2004
  - app/controllers/passes_reports_controller.rb
1965
2005
  - app/controllers/people_controller.rb
1966
2006
  - app/controllers/phones_controller.rb
2007
+ - app/controllers/pledges_controller.rb
2008
+ - app/controllers/preview_rows_controller.rb
1967
2009
  - app/controllers/refunds_controller.rb
1968
2010
  - app/controllers/regular_donation_kits_controller.rb
1969
2011
  - app/controllers/relationships_controller.rb
@@ -1985,24 +2027,31 @@ files:
1985
2027
  - app/controllers/store/retrievals_controller.rb
1986
2028
  - app/controllers/store/shows_controller.rb
1987
2029
  - app/controllers/store/store_controller.rb
2030
+ - app/controllers/tags_controller.rb
1988
2031
  - app/controllers/ticket_types_controller.rb
1989
2032
  - app/controllers/tickets_controller.rb
2033
+ - app/controllers/unacknowledged_gifts_controller.rb
1990
2034
  - app/controllers/user_memberships_controller.rb
1991
2035
  - app/controllers/users/sessions_controller.rb
1992
2036
  - app/controllers/venues_controller.rb
2037
+ - app/helpers/advanced_searches_helper.rb
1993
2038
  - app/helpers/artfully_ose_helper.rb
2039
+ - app/helpers/checkouts_helper.rb
1994
2040
  - app/helpers/devise_helper.rb
1995
2041
  - app/helpers/discounts_helper.rb
1996
2042
  - app/helpers/export_helper.rb
1997
2043
  - app/helpers/households_helper.rb
1998
2044
  - app/helpers/imports_helper.rb
1999
2045
  - app/helpers/link_helper.rb
2046
+ - app/helpers/mailchimp_lists_for_search_helper.rb
2000
2047
  - app/helpers/members_helper.rb
2001
2048
  - app/helpers/membership_types_helper.rb
2049
+ - app/helpers/orders_helper.rb
2002
2050
  - app/helpers/people_helper.rb
2003
2051
  - app/helpers/relationships_helper.rb
2004
2052
  - app/helpers/sales_helper.rb
2005
2053
  - app/helpers/searches_helper.rb
2054
+ - app/helpers/segments_helper.rb
2006
2055
  - app/helpers/suggested_households_helper.rb
2007
2056
  - app/mailers/order_mailer.rb
2008
2057
  - app/mailers/pass_mailer.rb
@@ -2012,6 +2061,7 @@ files:
2012
2061
  - app/models/action.rb
2013
2062
  - app/models/actions/change_action.rb
2014
2063
  - app/models/actions/comp_action.rb
2064
+ - app/models/actions/convert_action.rb
2015
2065
  - app/models/actions/do_action.rb
2016
2066
  - app/models/actions/exchange_action.rb
2017
2067
  - app/models/actions/get_action.rb
@@ -2019,10 +2069,18 @@ files:
2019
2069
  - app/models/actions/go_action.rb
2020
2070
  - app/models/actions/hear_action.rb
2021
2071
  - app/models/actions/join_action.rb
2072
+ - app/models/actions/mailchimp_hear_action.rb
2073
+ - app/models/actions/pledge_action.rb
2022
2074
  - app/models/actions/refund_action.rb
2023
2075
  - app/models/actions/say_action.rb
2076
+ - app/models/actions/system_action.rb
2024
2077
  - app/models/address.rb
2078
+ - app/models/advanced_search.rb
2079
+ - app/models/advanced_search_segment.rb
2080
+ - app/models/appeal.rb
2025
2081
  - app/models/box_office.rb
2082
+ - app/models/budget_restriction.rb
2083
+ - app/models/campaign.rb
2026
2084
  - app/models/cart.rb
2027
2085
  - app/models/chart.rb
2028
2086
  - app/models/checkout.rb
@@ -2030,6 +2088,7 @@ files:
2030
2088
  - app/models/company.rb
2031
2089
  - app/models/console_sale.rb
2032
2090
  - app/models/contribution.rb
2091
+ - app/models/convert.rb
2033
2092
  - app/models/daily_donation_report.rb
2034
2093
  - app/models/daily_membership_report.rb
2035
2094
  - app/models/daily_pass_report.rb
@@ -2058,15 +2117,16 @@ files:
2058
2117
  - app/models/extendable.rb
2059
2118
  - app/models/fee_calculator.rb
2060
2119
  - app/models/fee_strategy.rb
2120
+ - app/models/forwarding_job_monitor.rb
2061
2121
  - app/models/gateway_transaction.rb
2062
2122
  - app/models/household.rb
2063
- - app/models/household_suggester.rb
2064
2123
  - app/models/import.rb
2065
2124
  - app/models/import_error.rb
2066
2125
  - app/models/import_message.rb
2067
2126
  - app/models/import_row.rb
2068
2127
  - app/models/imports/donations_import.rb
2069
2128
  - app/models/imports/events_import.rb
2129
+ - app/models/imports/mappings.rb
2070
2130
  - app/models/imports/memberships_import.rb
2071
2131
  - app/models/imports/people_import.rb
2072
2132
  - app/models/imports/processing.rb
@@ -2075,30 +2135,48 @@ files:
2075
2135
  - app/models/imports/validations.rb
2076
2136
  - app/models/individual.rb
2077
2137
  - app/models/item.rb
2138
+ - app/models/job/acknowledge_job.rb
2078
2139
  - app/models/job/action_job.rb
2079
2140
  - app/models/job/checkout_processor.rb
2080
2141
  - app/models/job/cleanup_suggested_households_job.rb
2142
+ - app/models/job/convert_order_processor.rb
2081
2143
  - app/models/job/daily_email_report_job.rb
2082
2144
  - app/models/job/destroy_show_job.rb
2145
+ - app/models/job/destroy_tag_job.rb
2146
+ - app/models/job/door_list_generator_job.rb
2147
+ - app/models/job/door_list_mailer_job.rb
2148
+ - app/models/job/email_organization_sales_report_job.rb
2083
2149
  - app/models/job/expire_ticket_job.rb
2150
+ - app/models/job/export_people_job.rb
2151
+ - app/models/job/export_settlements_job.rb
2084
2152
  - app/models/job/geocode_address_job.rb
2085
2153
  - app/models/job/mailchimp_sync_job.rb
2154
+ - app/models/job/merge_job.rb
2155
+ - app/models/job/order_export_job.rb
2086
2156
  - app/models/job/order_mailer_job.rb
2087
2157
  - app/models/job/order_processor.rb
2088
2158
  - app/models/job/person_lifetime_value_job.rb
2089
2159
  - app/models/job/recall_import_job.rb
2090
2160
  - app/models/job/refund_order_processor.rb
2161
+ - app/models/job/search_export_job.rb
2091
2162
  - app/models/job/show_creator.rb
2163
+ - app/models/job/suggest_households_by_address_job.rb
2164
+ - app/models/job/suggest_households_by_spouse_job.rb
2092
2165
  - app/models/job/tag_job.rb
2166
+ - app/models/job_monitor.rb
2093
2167
  - app/models/kit.rb
2168
+ - app/models/kits/campaigns_kit.rb
2094
2169
  - app/models/kits/mailchimp_kit.rb
2095
2170
  - app/models/kits/membership_kit.rb
2096
2171
  - app/models/kits/passes_kit.rb
2097
2172
  - app/models/kits/regular_donation_kit.rb
2173
+ - app/models/kits/relationships_kit.rb
2098
2174
  - app/models/kits/reseller_kit.rb
2099
2175
  - app/models/kits/scannable_tickets_kit.rb
2100
2176
  - app/models/kits/sponsored_donation_kit.rb
2101
2177
  - app/models/kits/ticketing_kit.rb
2178
+ - app/models/linking_job_monitor.rb
2179
+ - app/models/list_grouping.rb
2102
2180
  - app/models/member.rb
2103
2181
  - app/models/member_card_generator.rb
2104
2182
  - app/models/member_number_generator.rb
@@ -2110,11 +2188,13 @@ files:
2110
2188
  - app/models/membership_comp_job.rb
2111
2189
  - app/models/membership_sale_search.rb
2112
2190
  - app/models/membership_type.rb
2191
+ - app/models/monitorable.rb
2113
2192
  - app/models/note.rb
2114
2193
  - app/models/order.rb
2115
2194
  - app/models/order_handler.rb
2116
2195
  - app/models/orders/application_order.rb
2117
2196
  - app/models/orders/comp_order.rb
2197
+ - app/models/orders/convert_order.rb
2118
2198
  - app/models/orders/exchange_order.rb
2119
2199
  - app/models/orders/imported_order.rb
2120
2200
  - app/models/orders/refund_order.rb
@@ -2132,27 +2212,33 @@ files:
2132
2212
  - app/models/payments/check_payment.rb
2133
2213
  - app/models/payments/comp_payment.rb
2134
2214
  - app/models/payments/credit_card_payment.rb
2215
+ - app/models/permission.rb
2135
2216
  - app/models/person.rb
2136
2217
  - app/models/phone.rb
2218
+ - app/models/redis_manager.rb
2137
2219
  - app/models/refund.rb
2138
2220
  - app/models/relation.rb
2139
2221
  - app/models/relation_builder.rb
2140
2222
  - app/models/relationship.rb
2141
2223
  - app/models/relationship_builder.rb
2142
2224
  - app/models/relationship_validator.rb
2143
- - app/models/relationships_kit.rb
2144
2225
  - app/models/return.rb
2145
2226
  - app/models/rolling_membership_type.rb
2227
+ - app/models/s3_coordinator.rb
2146
2228
  - app/models/sale.rb
2147
2229
  - app/models/sale_search.rb
2230
+ - app/models/scheduled_pledge_payment.rb
2148
2231
  - app/models/search.rb
2149
2232
  - app/models/seasonal_membership_type.rb
2150
2233
  - app/models/section.rb
2151
2234
  - app/models/section_summary.rb
2152
2235
  - app/models/segment.rb
2153
2236
  - app/models/show.rb
2237
+ - app/models/show_validator.rb
2154
2238
  - app/models/slices.rb
2239
+ - app/models/soft_credit.rb
2155
2240
  - app/models/statement.rb
2241
+ - app/models/subscribed_list.rb
2156
2242
  - app/models/suggested_household.rb
2157
2243
  - app/models/sundial.rb
2158
2244
  - app/models/temp_discount.rb
@@ -2174,8 +2260,10 @@ files:
2174
2260
  - app/models/valuation/lifetime_donations.rb
2175
2261
  - app/models/valuation/lifetime_fees.rb
2176
2262
  - app/models/valuation/lifetime_memberships.rb
2263
+ - app/models/valuation/lifetime_pledges.rb
2177
2264
  - app/models/valuation/lifetime_ticket_value.rb
2178
2265
  - app/models/valuation/lifetime_value.rb
2266
+ - app/models/valuation_query.rb
2179
2267
  - app/models/venue.rb
2180
2268
  - app/presenters/event_presenter.rb
2181
2269
  - app/serializers/show_serializer.rb
@@ -2185,10 +2273,59 @@ files:
2185
2273
  - app/views/actions/_modal.html.haml
2186
2274
  - app/views/actions/get/_show.html.haml
2187
2275
  - app/views/actions/give/_show.html.haml
2276
+ - app/views/actions/pledge/_show.html.haml
2188
2277
  - app/views/actions/shared/_show.html.haml
2189
2278
  - app/views/addresses/_address.html.haml
2190
2279
  - app/views/addresses/_form.html.haml
2280
+ - app/views/advanced_search_segments/_advanced_searches_results.html.haml
2281
+ - app/views/advanced_search_segments/index.html.haml
2282
+ - app/views/advanced_search_segments/show.html.haml
2283
+ - app/views/advanced_searches/_form.html.haml
2284
+ - app/views/advanced_searches/_hit.html.haml
2285
+ - app/views/advanced_searches/_household.html.haml
2286
+ - app/views/advanced_searches/_new_condition.html.haml
2287
+ - app/views/advanced_searches/_people_count.html.erb
2288
+ - app/views/advanced_searches/_people_list.html.haml
2289
+ - app/views/advanced_searches/filters/_action.html.haml
2290
+ - app/views/advanced_searches/filters/_birthday.html.haml
2291
+ - app/views/advanced_searches/filters/_discount_code.html.haml
2292
+ - app/views/advanced_searches/filters/_donated.html.haml
2293
+ - app/views/advanced_searches/filters/_email.html.haml
2294
+ - app/views/advanced_searches/filters/_has_purchased_for.html.haml
2295
+ - app/views/advanced_searches/filters/_keyword.html.haml
2296
+ - app/views/advanced_searches/filters/_lifetime_value.html.haml
2297
+ - app/views/advanced_searches/filters/_limit_results.html.haml
2298
+ - app/views/advanced_searches/filters/_location.html.haml
2299
+ - app/views/advanced_searches/filters/_mailchimp_group.html.haml
2300
+ - app/views/advanced_searches/filters/_mailchimp_list.html.haml
2301
+ - app/views/advanced_searches/filters/_membership_ended.html.haml
2302
+ - app/views/advanced_searches/filters/_membership_started.html.haml
2303
+ - app/views/advanced_searches/filters/_membership_status.html.haml
2304
+ - app/views/advanced_searches/filters/_membership_type.html.haml
2305
+ - app/views/advanced_searches/filters/_orders.html.haml
2306
+ - app/views/advanced_searches/filters/_pass_type.html.haml
2307
+ - app/views/advanced_searches/filters/_relationships.html.haml
2308
+ - app/views/advanced_searches/filters/_segment.html.haml
2309
+ - app/views/advanced_searches/filters/_tagging.html.haml
2310
+ - app/views/advanced_searches/new.html.haml
2311
+ - app/views/advanced_searches/show.html.haml
2312
+ - app/views/advanced_searches/shows_for_org.html.haml
2313
+ - app/views/advanced_searches/ticket_types_for_org.html.haml
2314
+ - app/views/advanced_searches/update.js.erb
2315
+ - app/views/appeals/_form.html.haml
2316
+ - app/views/appeals/_header.html.haml
2317
+ - app/views/appeals/_heard_action.html.haml
2318
+ - app/views/appeals/edit.html.haml
2319
+ - app/views/appeals/new.html.haml
2191
2320
  - app/views/assignments/new.html.haml
2321
+ - app/views/campaigns/_campaign_donations.html.haml
2322
+ - app/views/campaigns/_campaign_stats.html.haml
2323
+ - app/views/campaigns/_form.html.haml
2324
+ - app/views/campaigns/_header.html.haml
2325
+ - app/views/campaigns/edit.html.haml
2326
+ - app/views/campaigns/index.html.haml
2327
+ - app/views/campaigns/new.html.haml
2328
+ - app/views/campaigns/show.html.haml
2192
2329
  - app/views/comps/_grouped_form.html.haml
2193
2330
  - app/views/comps/_new_person_form.html.haml
2194
2331
  - app/views/comps/comp_confirm.html.haml
@@ -2199,11 +2336,22 @@ files:
2199
2336
  - app/views/console_sales/_shows.html.haml
2200
2337
  - app/views/console_sales/new.html.haml
2201
2338
  - app/views/contributions/_form.html.haml
2339
+ - app/views/contributions/_header.html.haml
2340
+ - app/views/contributions/_match_eligible.html.haml
2341
+ - app/views/contributions/_pledge_payment.html.haml
2342
+ - app/views/contributions/_search.html.haml
2202
2343
  - app/views/contributions/_sidebar.html.haml
2344
+ - app/views/contributions/_soft_credit.html.haml
2203
2345
  - app/views/contributions/edit.html.haml
2204
2346
  - app/views/contributions/find_person.html.haml
2205
2347
  - app/views/contributions/index.html.haml
2206
2348
  - app/views/contributions/new.html.haml
2349
+ - app/views/converts/_grouped_form.html.haml
2350
+ - app/views/converts/new.html.haml
2351
+ - app/views/delete_ticket_types/_cannot_destroy_modal.html.haml
2352
+ - app/views/delete_ticket_types/_cannot_destroy_modal.rb
2353
+ - app/views/delete_ticket_types/_confirm_destroy_modal.html.haml
2354
+ - app/views/delete_ticket_types/show.html.haml
2207
2355
  - app/views/discounts/_discount_section_fields.html.haml
2208
2356
  - app/views/discounts/_form.html.haml
2209
2357
  - app/views/discounts/edit.html.haml
@@ -2220,6 +2368,7 @@ files:
2220
2368
  - app/views/events/_menu.html.haml
2221
2369
  - app/views/events/_section_fields.html.haml
2222
2370
  - app/views/events/_share_and_sell.haml
2371
+ - app/views/events/_tax_deductible_message.html.haml
2223
2372
  - app/views/events/_ticket_type_fields.html.haml
2224
2373
  - app/views/events/edit.html.haml
2225
2374
  - app/views/events/image.html.haml
@@ -2246,6 +2395,7 @@ files:
2246
2395
  - app/views/households/_individual_fields.html.haml
2247
2396
  - app/views/households/_list.html.haml
2248
2397
  - app/views/households/_note.html.haml
2398
+ - app/views/households/confirm.html.haml
2249
2399
  - app/views/households/edit.html.haml
2250
2400
  - app/views/households/index.html.haml
2251
2401
  - app/views/households/new.html.haml
@@ -2260,6 +2410,7 @@ files:
2260
2410
  - app/views/imports/donations/_invalid.html.haml
2261
2411
  - app/views/imports/donations/_new.html.haml
2262
2412
  - app/views/imports/donations/_pending.html.haml
2413
+ - app/views/imports/donations/_preview.html.haml
2263
2414
  - app/views/imports/events/_approved.html.haml
2264
2415
  - app/views/imports/events/_caching.html.haml
2265
2416
  - app/views/imports/events/_failed.html.haml
@@ -2269,6 +2420,15 @@ files:
2269
2420
  - app/views/imports/events/_new.html.haml
2270
2421
  - app/views/imports/events/_pending.html.haml
2271
2422
  - app/views/imports/index.html.haml
2423
+ - app/views/imports/memberships/_approved.html.haml
2424
+ - app/views/imports/memberships/_caching.html.haml
2425
+ - app/views/imports/memberships/_failed.html.haml
2426
+ - app/views/imports/memberships/_imported.html.haml
2427
+ - app/views/imports/memberships/_importing.html.haml
2428
+ - app/views/imports/memberships/_invalid.html.haml
2429
+ - app/views/imports/memberships/_new.html.haml
2430
+ - app/views/imports/memberships/_pending.html.haml
2431
+ - app/views/imports/memberships/_preview_rows.html.haml
2272
2432
  - app/views/imports/new.html.haml
2273
2433
  - app/views/imports/people/_approved.html.haml
2274
2434
  - app/views/imports/people/_caching.html.haml
@@ -2285,6 +2445,7 @@ files:
2285
2445
  - app/views/imports/shared/_inspect_modal.html.haml
2286
2446
  - app/views/imports/shared/_invalid.html.haml
2287
2447
  - app/views/imports/shared/_knowledge_base.haml
2448
+ - app/views/imports/shared/_new_sidebar.html.haml
2288
2449
  - app/views/imports/shared/_sidebar.html.haml
2289
2450
  - app/views/imports/show.html.haml
2290
2451
  - app/views/index/_action.html.haml
@@ -2292,6 +2453,9 @@ files:
2292
2453
  - app/views/index/_recent_activity.js.haml
2293
2454
  - app/views/index/dashboard.html.haml
2294
2455
  - app/views/index/recent_activity.js.haml
2456
+ - app/views/job_monitors/_job_monitor_show.html.haml
2457
+ - app/views/job_monitors/_linking_job_monitor_show.html.haml
2458
+ - app/views/job_monitors/show.html.haml
2295
2459
  - app/views/kits/_list.html.haml
2296
2460
  - app/views/layouts/_admin_messages.html.haml
2297
2461
  - app/views/layouts/_custom_css_includes.haml
@@ -2313,6 +2477,7 @@ files:
2313
2477
  - app/views/members/mailer/invitation_instructions.html.haml
2314
2478
  - app/views/members/mailer/reset_password_instructions.html.erb
2315
2479
  - app/views/members/passwords/edit.html.haml
2480
+ - app/views/members/passwords/new.html.haml
2316
2481
  - app/views/members/sessions/new.html.haml
2317
2482
  - app/views/membership_cancellations/_form.html.haml
2318
2483
  - app/views/membership_cancellations/_modal.html.haml
@@ -2347,6 +2512,8 @@ files:
2347
2512
  - app/views/order_mailer/confirmation_for_exchange.text.haml
2348
2513
  - app/views/order_mailer/confirmation_for_refund.html.haml
2349
2514
  - app/views/order_mailer/confirmation_for_refund.text.haml
2515
+ - app/views/orders/_assignable_donations.html.haml
2516
+ - app/views/orders/_assignable_pledges.html.haml
2350
2517
  - app/views/orders/_by_person.haml
2351
2518
  - app/views/orders/_donation_table.haml
2352
2519
  - app/views/orders/_item_donations_table.html.haml
@@ -2379,6 +2546,7 @@ files:
2379
2546
  - app/views/pdfs/member.html.haml
2380
2547
  - app/views/pdfs/member_card_generator/blanks_usa_idc6.html.haml
2381
2548
  - app/views/pdfs/order.html.haml
2549
+ - app/views/people/_address_fields.html.haml
2382
2550
  - app/views/people/_convert_to_company_modal.html.haml
2383
2551
  - app/views/people/_edit_modal.html.haml
2384
2552
  - app/views/people/_form.html.haml
@@ -2386,6 +2554,7 @@ files:
2386
2554
  - app/views/people/_household_fields.html.haml
2387
2555
  - app/views/people/_key_relationships.html.haml
2388
2556
  - app/views/people/_list.html.haml
2557
+ - app/views/people/_mailchimp_group.html.haml
2389
2558
  - app/views/people/_phone_fields.html.haml
2390
2559
  - app/views/people/_relationship_fields.html.haml
2391
2560
  - app/views/people/_relationship_table.html.haml
@@ -2393,10 +2562,20 @@ files:
2393
2562
  - app/views/people/_work_with_menu.html.haml
2394
2563
  - app/views/people/index.html.haml
2395
2564
  - app/views/people/new.html.haml
2565
+ - app/views/people/pledges.html.haml
2396
2566
  - app/views/people/show.html.haml
2397
2567
  - app/views/people/show.js.haml
2568
+ - app/views/pledges/_none_scheduled_payment_table.html.haml
2569
+ - app/views/pledges/_receive_pledge.html.haml
2570
+ - app/views/pledges/_scheduled_payments_table.html.haml
2571
+ - app/views/pledges/index.html.haml
2572
+ - app/views/preview_rows/index.html.haml
2398
2573
  - app/views/producer_mailer/donation_kit_notification.html.haml
2399
2574
  - app/views/producer_mailer/donation_kit_notification.text.erb
2575
+ - app/views/producer_mailer/donation_notification.html.haml
2576
+ - app/views/producer_mailer/donation_notification.text.erb
2577
+ - app/views/producer_mailer/door_list_notification.html.haml
2578
+ - app/views/producer_mailer/door_list_notification.text.erb
2400
2579
  - app/views/producer_mailer/mailchimp_kit_initial_sync_notification.html.haml
2401
2580
  - app/views/producer_mailer/ticket_offer_accepted.html.haml
2402
2581
  - app/views/producer_mailer/ticket_offer_accepted.text.erb
@@ -2413,15 +2592,17 @@ files:
2413
2592
  - app/views/sales/_boxoffice.html.haml
2414
2593
  - app/views/sales/_doorlist.html.haml
2415
2594
  - app/views/sales/new.html.haml
2595
+ - app/views/searches/_company.html.haml
2416
2596
  - app/views/searches/_form.html.haml
2417
2597
  - app/views/searches/_household.html.haml
2418
- - app/views/searches/_person.html.haml
2598
+ - app/views/searches/_individual.html.haml
2419
2599
  - app/views/searches/new.html.haml
2420
2600
  - app/views/searches/show.html.haml
2421
2601
  - app/views/sections/edit.html.haml
2422
2602
  - app/views/sections/new.html.haml
2423
2603
  - app/views/segments/index.html.haml
2424
2604
  - app/views/segments/show.html.haml
2605
+ - app/views/shared/_baseball_card.html.haml
2425
2606
  - app/views/shared/_door_list_table.haml
2426
2607
  - app/views/shared/_error_messages.html.haml
2427
2608
  - app/views/shared/_event_image_icon.html.haml
@@ -2435,6 +2616,7 @@ files:
2435
2616
  - app/views/shared/_tags.html.haml
2436
2617
  - app/views/shared/_tags_uneditable.html.haml
2437
2618
  - app/views/shows/_controls.html.haml
2619
+ - app/views/shows/_empty_ticket_table.html.haml
2438
2620
  - app/views/shows/_form.html.haml
2439
2621
  - app/views/shows/_glance.html.haml
2440
2622
  - app/views/shows/_new_show_for_table.html.haml
@@ -2463,16 +2645,27 @@ files:
2463
2645
  - app/views/statements/_top_stats.haml
2464
2646
  - app/views/statements/index.html.haml
2465
2647
  - app/views/statements/show.html.haml
2466
- - app/views/store/checkouts/_membership_info.html.haml
2467
- - app/views/store/checkouts/thanks.html.haml
2648
+ - app/views/store/checkouts/_event_information.html.haml
2649
+ - app/views/store/checkouts/_shopping_cart_display.haml
2650
+ - app/views/store/checkouts/_thanks.html.haml
2651
+ - app/views/store/checkouts/create.html.haml
2652
+ - app/views/store/checkouts/shopping_cart_display/_discounts.haml
2653
+ - app/views/store/checkouts/shopping_cart_display/_donations.haml
2654
+ - app/views/store/checkouts/shopping_cart_display/_membership_info.html.haml
2655
+ - app/views/store/checkouts/shopping_cart_display/_memberships.haml
2656
+ - app/views/store/checkouts/shopping_cart_display/_passes.haml
2657
+ - app/views/store/checkouts/shopping_cart_display/_tickets.haml
2658
+ - app/views/store/checkouts/shopping_cart_display/_total.haml
2468
2659
  - app/views/store/donations/index.html.haml
2469
2660
  - app/views/store/events/_calendar.html.haml
2661
+ - app/views/store/events/_contact_info.html.haml
2470
2662
  - app/views/store/events/_venue.html.haml
2471
2663
  - app/views/store/events/calendar.html.haml
2472
2664
  - app/views/store/events/index.html.haml
2473
2665
  - app/views/store/events/show.html.haml
2474
2666
  - app/views/store/events/single_show.html.haml
2475
2667
  - app/views/store/memberships/index.html.haml
2668
+ - app/views/store/orders/blank.html.erb
2476
2669
  - app/views/store/orders/show.html.haml
2477
2670
  - app/views/store/passes/index.html.haml
2478
2671
  - app/views/store/retrievals/index.html.haml
@@ -2480,8 +2673,12 @@ files:
2480
2673
  - app/views/store/shared/_small_donate_form.html.haml
2481
2674
  - app/views/store/shows/_show.html.haml
2482
2675
  - app/views/store/shows/show.html.haml
2676
+ - app/views/tags/_edit_modal.html.haml
2677
+ - app/views/tags/index.html.haml
2483
2678
  - app/views/ticket_types/edit.html.haml
2484
2679
  - app/views/ticket_types/new.html.haml
2680
+ - app/views/unacknowledged_gifts/_heard_action.html.haml
2681
+ - app/views/unacknowledged_gifts/index.html.haml
2485
2682
  - app/views/user_memberships/_list.html.haml
2486
2683
  - app/views/users/confirmations/new.html.erb
2487
2684
  - app/views/users/invitations/edit.html.haml
@@ -2661,8 +2858,86 @@ files:
2661
2858
  - db/migrate/20140522205554_add_limit_to_events_pass_types.rb
2662
2859
  - db/migrate/20140523180444_remove_tickets_purchased_from_passes.rb
2663
2860
  - db/migrate/20140603200735_add_subtitle_to_events.rb
2861
+ - db/migrate/20140616045851_add_birthdate_to_search.rb
2664
2862
  - db/migrate/20140619194127_add_do_not_call_to_people.artfully_ose_engine.rb
2863
+ - db/migrate/20140623131025_create_campaigns.rb
2665
2864
  - db/migrate/20140623160543_add_index_to_items.rb
2865
+ - db/migrate/20140627120214_create_appeals.rb
2866
+ - db/migrate/20140630151406_add_deleted_at_to_campaigns.rb
2867
+ - db/migrate/20140701124100_add_segment_id_and_notes_to_appeals.rb
2868
+ - db/migrate/20140702115815_add_campaign_id_and_appeal_id_to_donations.rb
2869
+ - db/migrate/20140702121928_add_materials_to_appeals.rb
2870
+ - db/migrate/20140702150521_add_deleted_at_to_appeals.rb
2871
+ - db/migrate/20140709151816_add_campaign_id_and_appeal_id_to_orders.rb
2872
+ - db/migrate/20140723133850_remove_campaign_id_and_apeal_id_from_orders.rb
2873
+ - db/migrate/20140723134923_add_commitment_date_to_donations.rb
2874
+ - db/migrate/20140730141515_add_match_eligible_to_donations.rb
2875
+ - db/migrate/20140818141140_create_soft_credits.rb
2876
+ - db/migrate/20140903140113_add_pledge_to_donations.rb
2877
+ - db/migrate/20140904183953_add_destroyed_at_to_relationships.rb
2878
+ - db/migrate/20140905080503_create_scheduled_pledge_payments.rb
2879
+ - db/migrate/20140909150251_add_org_to_suggested_household.rb
2880
+ - db/migrate/20141007114614_add_order_id_to_donations.rb
2881
+ - db/migrate/20141021134013_add_lifetime_pledges_to_people.rb
2882
+ - db/migrate/20141027191307_default_overwrite_member_addresses_to_false.rb
2883
+ - db/migrate/20141031193839_update_relations.rb
2884
+ - db/migrate/20141126183258_add_mailchimp_status_fields_to_people.rb
2885
+ - db/migrate/20141126184811_add_processing_at_to_ticket.rb
2886
+ - db/migrate/20141127135743_add_import_to_campaigns.rb
2887
+ - db/migrate/20141128143944_add_fiscal_year_to_donations.rb
2888
+ - db/migrate/20141128151407_remove_fiscal_year_from_scheduled_pledge_payments.rb
2889
+ - db/migrate/20141204164400_add_more_indexes_to_actions.rb
2890
+ - db/migrate/20141204171612_add_indexes_to_charts.rb
2891
+ - db/migrate/20141204172658_add_hide_on_recent_activity_to_actions.rb
2892
+ - db/migrate/20141204173004_add_indexes_to_ept.rb
2893
+ - db/migrate/20141204211933_remove_membership_counts_from_members.rb
2894
+ - db/migrate/20141205202030_create_subscribed_lists.rb
2895
+ - db/migrate/20141208225228_add_mailchimp_lists_to_searches.rb
2896
+ - db/migrate/20141210162329_add_bounced_to_subscribed_lists.rb
2897
+ - db/migrate/20141211165307_add_external_reference_to_actions.rb
2898
+ - db/migrate/20141212172119_add_not_mailchimp_lists_to_searches.rb
2899
+ - db/migrate/20141229204605_normalize_states_in_addresses.rb
2900
+ - db/migrate/20150113091344_add_fiscal_to_organizations.rb
2901
+ - db/migrate/20150113091434_create_budget_restrictions.rb
2902
+ - db/migrate/20150113091503_add_budget_restriction_to_campaigns.rb
2903
+ - db/migrate/20150129091354_add_campaign_to_searches.rb
2904
+ - db/migrate/20150203174456_create_list_groupings.rb
2905
+ - db/migrate/20150203222451_add_groupings_to_searches.rb
2906
+ - db/migrate/20150219153827_add_roles_to_user_memberships.rb
2907
+ - db/migrate/20150223145657_add_daily_sales_to_user_membership.rb
2908
+ - db/migrate/20150318171857_create_advanced_searches.rb
2909
+ - db/migrate/20150319185940_add_org_id_index_to_orders.rb
2910
+ - db/migrate/20150325085516_add_received_amount_to_donations.rb
2911
+ - db/migrate/20150325173053_add_pass_index_to_tickets.rb
2912
+ - db/migrate/20150331084817_add_creator_id_to_orders.rb
2913
+ - db/migrate/20150406162656_index_tickets_on_action_id.rb
2914
+ - db/migrate/20150408123349_add_donor_instructions_to_orders.rb
2915
+ - db/migrate/20150408125600_add_index_to_imports.rb
2916
+ - db/migrate/20150414193419_add_index_to_phone.rb
2917
+ - db/migrate/20150414193646_add_index_to_taggings.rb
2918
+ - db/migrate/20150415113013_add_nickname_to_people.rb
2919
+ - db/migrate/20150420143707_add_indexes_to_donations.rb
2920
+ - db/migrate/20150421092302_add_kind_to_addresses.rb
2921
+ - db/migrate/20150513154513_add_name_to_advanced_search.rb
2922
+ - db/migrate/20150518131946_add_receive_donation_notification_to_user_memberships.rb
2923
+ - db/migrate/20150520182350_remove_name_from_advanced_search.rb
2924
+ - db/migrate/20150520202900_create_advanced_search_segments.rb
2925
+ - db/migrate/20150520210658_add_advanced_search_id_to_advanced_search_segment.rb
2926
+ - db/migrate/20150521183507_add_organization_id_to_advanced_search_segment.rb
2927
+ - db/migrate/20150602204548_add_index_on_deleted_at.rb
2928
+ - db/migrate/20150711143014_add_receive_door_list_to_user_memberships.rb
2929
+ - db/migrate/20150716000301_create_job_monitors_table.rb
2930
+ - db/migrate/20150807005404_re_refresh_show_stats.rb
2931
+ - db/migrate/20150810133417_convert_business_to_work.rb
2932
+ - db/migrate/20150812135205_update_notes_nulls.rb
2933
+ - db/migrate/20150813202745_index_household_id.rb
2934
+ - db/migrate/20150814075653_add_maiden_name_to_people.rb
2935
+ - db/migrate/20150911203530_normalize_countries_in_addresses.rb
2936
+ - db/migrate/20150922155253_add_advanced_search_segment_id_to_membership_types.rb
2937
+ - db/migrate/20150922155308_add_advanced_search_segment_id_to_pass_types.rb
2938
+ - db/migrate/20151006180702_add_deleted_at_to_ticket_types.rb
2939
+ - db/migrate/20151009175206_add_receipt_details_to_ticket_types.rb
2940
+ - db/migrate/20151112174723_index_list_groupings.rb
2666
2941
  - lib/artfully_ose.rb
2667
2942
  - lib/artfully_ose/common_abilities.rb
2668
2943
  - lib/artfully_ose/core_ext.rb
@@ -2676,6 +2951,10 @@ files:
2676
2951
  - lib/tasks/artfully_ose.rake
2677
2952
  - spec/factories/action_factories.rb
2678
2953
  - spec/factories/address_factories.rb
2954
+ - spec/factories/advanced_search_factories.rb
2955
+ - spec/factories/advanced_search_segment_factories.rb
2956
+ - spec/factories/advanced_segment_factories.rb
2957
+ - spec/factories/campaign_factories.rb
2679
2958
  - spec/factories/cart_factories.rb
2680
2959
  - spec/factories/chart_factories.rb
2681
2960
  - spec/factories/discount_factories.rb
@@ -2688,15 +2967,19 @@ files:
2688
2967
  - spec/factories/member_factories.rb
2689
2968
  - spec/factories/membership_factories.rb
2690
2969
  - spec/factories/membership_type_factories.rb
2970
+ - spec/factories/note_factories.rb
2691
2971
  - spec/factories/order_factories.rb
2692
2972
  - spec/factories/organization_factories.rb
2973
+ - spec/factories/pass_factories.rb
2693
2974
  - spec/factories/pass_type_factories.rb
2694
2975
  - spec/factories/payments_factories.rb
2695
2976
  - spec/factories/person_factories.rb
2696
2977
  - spec/factories/phone_factories.rb
2978
+ - spec/factories/scheduled_pledge_payment_factories.rb
2697
2979
  - spec/factories/section_factories.rb
2698
2980
  - spec/factories/segment_factories.rb
2699
2981
  - spec/factories/show_factories.rb
2982
+ - spec/factories/soft_credit_factories.rb
2700
2983
  - spec/factories/ticket_factories.rb
2701
2984
  - spec/factories/ticket_offer_factories.rb
2702
2985
  - spec/factories/ticket_type_factories.rb
@@ -2710,17 +2993,17 @@ require_paths:
2710
2993
  - lib
2711
2994
  required_ruby_version: !ruby/object:Gem::Requirement
2712
2995
  requirements:
2713
- - - ! '>='
2996
+ - - ">="
2714
2997
  - !ruby/object:Gem::Version
2715
2998
  version: '0'
2716
2999
  required_rubygems_version: !ruby/object:Gem::Requirement
2717
3000
  requirements:
2718
- - - ! '>='
3001
+ - - ">"
2719
3002
  - !ruby/object:Gem::Version
2720
- version: '0'
3003
+ version: 1.3.1
2721
3004
  requirements: []
2722
3005
  rubyforge_project:
2723
- rubygems_version: 2.2.2
3006
+ rubygems_version: 2.4.3
2724
3007
  signing_key:
2725
3008
  specification_version: 4
2726
3009
  summary: A Ruby on Rails engine for running ticketing, CRM, and order management