effective_resources 2.18.0 → 2.18.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 39ecd0ecd2a6e70ee849e768b239f37f5922b5bf4625f09cfd1fc5856008361f
4
- data.tar.gz: b35eb86cf1db76ac404f64655b40aadc483ea6d0792d8d8e832f9d5d03eb2ea2
3
+ metadata.gz: 98d1ff6287b1bce3a2d5980477cf35de39ff97f68e4f17fad85632c7ad3ef0da
4
+ data.tar.gz: ac6b7e100f335a0cf080bc5d8efb213d6a9a7f86e4010830d0118ccd30deaaf4
5
5
  SHA512:
6
- metadata.gz: 947eeacd7e1569c4d942423e55c77abeec47d9a66901e7fed5a326a09136b7b966c8f50e05b58f447c517240e88440f31258a8d96418be6e5f180de90a80767b
7
- data.tar.gz: 4db9d6528ff9c7aa51421ed3c9e4745b0c7ee764144e27d6abda886c014493a0135c3617b6420e82fd3df7abe4b162488b111f58decf3d1cd214d5fb78bf0720
6
+ metadata.gz: ec25d7d60c1ce17c1bd866204a20147fd7929140320f252878b0cb60d52d71e93cd234fccab6edfa7c09bfa796a782a3c4d1974fa6dcd35fa8f45b5cca022ca3
7
+ data.tar.gz: c8d063820723dffca533739b67716ca194db2955e233c78b60d4518fe419371a8c6aa1e54297bcce2c24d76adad7a49ebb0419596b62b6c37009408d2acb1921
@@ -31,7 +31,135 @@ module ActsAsSlugged
31
31
  end
32
32
 
33
33
  def excluded_slugs
34
- ::ActiveRecord::Base.connection.tables.map { |x| x }.compact
34
+ [
35
+ "admin",
36
+ "resources",
37
+ "schema_migrations",
38
+ "ar_internal_metadata",
39
+ "active_storage_blobs",
40
+ "active_storage_attachments",
41
+ "active_storage_variant_records",
42
+ "orders",
43
+ "action_text_rich_texts",
44
+ "order_items",
45
+ "carts",
46
+ "cart_items",
47
+ "customers",
48
+ "subscriptions",
49
+ "products",
50
+ "addresses",
51
+ "qb_requests",
52
+ "qb_tickets",
53
+ "logs",
54
+ "qb_logs",
55
+ "qb_order_items",
56
+ "qb_realms",
57
+ "qb_receipts",
58
+ "qb_receipt_items",
59
+ "pages",
60
+ "page_banners",
61
+ "page_sections",
62
+ "carousel_items",
63
+ "posts",
64
+ "email_templates",
65
+ "statuses",
66
+ "memberships",
67
+ "membership_histories",
68
+ "membership_statuses",
69
+ "organizations",
70
+ "applicant_educations",
71
+ "applicant_experiences",
72
+ "representatives",
73
+ "applicant_endorsements",
74
+ "applicant_equivalences",
75
+ "applicant_course_areas",
76
+ "applicant_course_names",
77
+ "applicant_courses",
78
+ "applicant_reviews",
79
+ "documents",
80
+ "classified_wizards",
81
+ "committees",
82
+ "committee_members",
83
+ "committee_folders",
84
+ "committee_files",
85
+ "events",
86
+ "event_tickets",
87
+ "event_registrants",
88
+ "event_products",
89
+ "event_registrations",
90
+ "event_notifications",
91
+ "rings",
92
+ "ring_wizards",
93
+ "stamps",
94
+ "stamp_wizards",
95
+ "active_storage_extensions",
96
+ "cpd_categories",
97
+ "cpd_activities",
98
+ "cpd_special_rules",
99
+ "cpd_special_rule_mates",
100
+ "cpd_statement_activities",
101
+ "cpd_statements",
102
+ "cpd_audit_levels",
103
+ "cpd_audit_level_sections",
104
+ "cpd_audit_level_questions",
105
+ "cpd_audit_level_question_options",
106
+ "cpd_audits",
107
+ "cpd_audit_reviews",
108
+ "cpd_audit_review_items",
109
+ "cpd_audit_responses",
110
+ "cpd_audit_response_options",
111
+ "cpd_bulk_audits",
112
+ "mailchimp_list_members",
113
+ "chats",
114
+ "chat_users",
115
+ "chat_messages",
116
+ "cpd_targets",
117
+ "cpd_cycles",
118
+ "event_addons",
119
+ "mailchimp_lists",
120
+ "reports",
121
+ "report_columns",
122
+ "report_scopes",
123
+ "notifications",
124
+ "alerts",
125
+ "permalinks",
126
+ "tags",
127
+ "taggings",
128
+ "pg_search_documents",
129
+ "fees",
130
+ "applicant_references",
131
+ "classifieds",
132
+ "notification_logs",
133
+ "polls",
134
+ "poll_notifications",
135
+ "poll_questions",
136
+ "poll_question_options",
137
+ "ballots",
138
+ "ballot_responses",
139
+ "ballot_response_options",
140
+ "cpd_rules",
141
+ "cpd_metrics",
142
+ "cpd_metric_rule_mates",
143
+ "cpd_metric_statement_activity_mates",
144
+ "membership_categories",
145
+ "applicant_course_confirmations",
146
+ "applicant_advisor_consents",
147
+ "lares",
148
+ "epr_cycles",
149
+ "epr_projects",
150
+ "epr_charts",
151
+ "epr_chart_cells",
152
+ "certificates",
153
+ "firm_users",
154
+ "users",
155
+ "categories",
156
+ "eprs",
157
+ "epr_documents",
158
+ "firms",
159
+ "applicants",
160
+ "fee_payments"
161
+ ]
162
+ #::ActiveRecord::Base.connection.tables.map { |x| x }.compact
35
163
  end
36
164
  end
37
165
 
@@ -35,7 +35,7 @@ module ActsAsStatused
35
35
  end
36
36
 
37
37
  if EffectiveResources.serialize_with_coder?
38
- serialize :status_steps, type: Hash, coder: YAML
38
+ serialize :status_steps, type: Hash, coder: YAML, default: Hash.new
39
39
  else
40
40
  serialize :status_steps, Hash
41
41
  end
@@ -56,7 +56,7 @@ module ActsAsWizard
56
56
  end
57
57
 
58
58
  if EffectiveResources.serialize_with_coder?
59
- serialize :wizard_steps, type: Hash, coder: YAML
59
+ serialize :wizard_steps, type: Hash, coder: YAML, default: Hash.new
60
60
  else
61
61
  serialize :wizard_steps, Hash
62
62
  end
@@ -1,3 +1,3 @@
1
1
  module EffectiveResources
2
- VERSION = '2.18.0'.freeze
2
+ VERSION = '2.18.2'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: effective_resources
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.18.0
4
+ version: 2.18.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Code and Effect