wco_models 3.1.0.37 → 3.1.0.39
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 +4 -4
- data/Rakefile +3 -13
- data/app/assets/config/wco_models_manifest.js +2 -0
- data/app/assets/javascripts/wco/application.js +43 -5
- data/app/assets/javascripts/wco/collapse-expand.js +1 -0
- data/app/assets/javascripts/wco/file_upload.js +32 -0
- data/app/assets/javascripts/wco/shared.js +22 -0
- data/app/assets/stylesheets/wco/application.css +23 -8
- data/app/assets/stylesheets/wco/utils.scss +57 -1
- data/app/controllers/wco/application_controller.rb +9 -0
- data/app/controllers/wco/galleries_controller.rb +143 -0
- data/app/controllers/wco/headlines_controller.rb +71 -0
- data/app/controllers/wco/leads_controller.rb +59 -0
- data/app/controllers/wco/leadsets_controller.rb +90 -0
- data/app/controllers/wco/logs_controller.rb +64 -0
- data/app/controllers/wco/office_action_templates_controller.rb +80 -0
- data/app/controllers/wco/office_actions_controller.rb +71 -0
- data/app/controllers/wco/photos_controller.rb +78 -0
- data/app/controllers/wco/profiles_controller.rb +26 -0
- data/app/controllers/wco/publishers_controller.rb +60 -0
- data/app/controllers/wco/reports_controller.rb +75 -0
- data/app/controllers/wco/sites_controller.rb +52 -0
- data/app/controllers/wco/tags_controller.rb +57 -0
- data/app/helpers/wco/application_helper.rb +42 -0
- data/app/models/wco/asset.rb +26 -0
- data/app/models/wco/gallery.rb +3 -3
- data/app/models/wco/headline.rb +19 -0
- data/app/models/wco/invoice.rb +127 -0
- data/app/models/wco/lead.rb +42 -0
- data/app/models/wco/leadset.rb +8 -2
- data/app/models/wco/log.rb +18 -0
- data/app/models/wco/newsitem.rb +1 -0
- data/app/models/wco/office_action.rb +17 -18
- data/app/models/wco/office_action_template.rb +41 -0
- data/app/models/wco/office_action_template_tie.rb +20 -0
- data/app/models/wco/photo.rb +10 -8
- data/app/models/wco/price.rb +2 -0
- data/app/models/wco/product.rb +2 -0
- data/app/models/wco/profile.rb +1 -0
- data/app/models/wco/publisher.rb +68 -3
- data/app/models/wco/report.rb +48 -0
- data/app/models/wco/site.rb +12 -1
- data/app/models/wco/subscription.rb +1 -0
- data/app/models/wco/tag.rb +17 -4
- data/app/models/wco_email/campaign.rb +7 -11
- data/app/models/wco_email/context.rb +15 -14
- data/app/models/wco_email/conversation.rb +13 -27
- data/app/models/wco_email/{scheduled_email_action.rb → email_action.rb} +24 -20
- data/app/models/wco_email/email_action_template.rb +35 -0
- data/app/models/wco_email/email_filter.rb +9 -12
- data/app/models/wco_email/email_template.rb +124 -0
- data/app/models/wco_email/message.rb +228 -0
- data/app/models/wco_email/message_stub.rb +107 -0
- data/app/models/wco_email/obfuscated_redirect.rb +13 -0
- data/app/models/wco_email/unsubscribe.rb +19 -0
- data/app/models/wco_hosting/appliance.rb +1 -0
- data/app/models/wco_hosting/appliance_tmpl.rb +1 -0
- data/app/models/wco_hosting/domain.rb +1 -0
- data/app/models/wco_hosting/serverhost.rb +1 -0
- data/app/views/layouts/wco/application.haml +30 -17
- data/app/views/wco/_main_footer.haml +43 -0
- data/app/views/wco/_main_header.haml +37 -0
- data/app/views/wco/_main_header.haml-bk +109 -0
- data/app/views/wco/_paginate.haml +8 -0
- data/app/views/wco/_search.haml +8 -0
- data/app/views/wco/application/_debug.haml +0 -0
- data/app/views/wco/galleries/_form.haml +24 -0
- data/app/views/wco/galleries/_header.haml +8 -0
- data/app/views/wco/galleries/_index.haml +40 -0
- data/app/views/wco/galleries/_menu.haml-trash +10 -0
- data/app/views/wco/galleries/_menu_secondary.haml +12 -0
- data/app/views/wco/galleries/_thumbs.haml +9 -0
- data/app/views/wco/galleries/_title.haml +16 -0
- data/app/views/wco/galleries/edit.haml +6 -0
- data/app/views/wco/galleries/new.haml +6 -0
- data/app/views/wco/galleries/show.haml +43 -0
- data/app/views/wco/headlines/_form.haml +17 -0
- data/app/views/wco/headlines/_header.haml +6 -0
- data/app/views/wco/headlines/_index.haml +20 -0
- data/app/views/wco/headlines/edit.haml +6 -0
- data/app/views/wco/headlines/new.haml +2 -0
- data/app/views/wco/invoices/_form.haml-trash +29 -0
- data/app/views/wco/invoices/_header.haml +6 -0
- data/app/views/wco/invoices/_index_list.haml +13 -0
- data/app/views/wco/invoices/_index_table.haml +20 -0
- data/app/views/wco/invoices/index.haml +3 -0
- data/app/views/wco/invoices/new_pdf.haml +18 -0
- data/app/views/wco/invoices/new_stripe.haml +50 -0
- data/app/views/wco/invoices/show.haml +23 -0
- data/app/views/wco/kaminari/_first_page.html.erb +11 -0
- data/app/views/wco/kaminari/_gap.html.erb +8 -0
- data/app/views/wco/kaminari/_last_page.html.erb +11 -0
- data/app/views/wco/kaminari/_next_page.html.erb +11 -0
- data/app/views/wco/kaminari/_page.html.erb +13 -0
- data/app/views/wco/kaminari/_paginator.html.erb +25 -0
- data/app/views/wco/kaminari/_prev_page.html.erb +11 -0
- data/app/views/wco/leads/_form.haml +45 -0
- data/app/views/wco/leads/_form_import.haml +11 -0
- data/app/views/wco/leads/_header.haml +7 -0
- data/app/views/wco/leads/_index.haml +75 -0
- data/app/views/wco/leads/_index_rows.haml +11 -0
- data/app/views/wco/leads/edit.haml +22 -0
- data/app/views/wco/leads/index.haml +7 -0
- data/app/views/wco/leads/new.haml +9 -0
- data/app/views/wco/leads/show.haml +85 -0
- data/app/views/wco/leadsets/_form.haml +28 -0
- data/app/views/wco/leadsets/_header.haml +6 -0
- data/app/views/wco/leadsets/edit.haml +4 -0
- data/app/views/wco/leadsets/index.haml +45 -0
- data/app/views/wco/leadsets/index_dataTables.haml +33 -0
- data/app/views/wco/leadsets/new.haml +6 -0
- data/app/views/wco/leadsets/show.haml +52 -0
- data/app/views/wco/logs/_form.haml +17 -0
- data/app/views/wco/logs/_header.haml +6 -0
- data/app/views/wco/logs/_index.haml +23 -0
- data/app/views/wco/logs/edit.haml +6 -0
- data/app/views/wco/logs/new.haml +2 -0
- data/app/views/wco/office_action_templates/_form.haml +46 -0
- data/app/views/wco/office_action_templates/_header.haml +8 -0
- data/app/views/wco/office_action_templates/_ties.haml +18 -0
- data/app/views/wco/office_action_templates/edit.haml +6 -0
- data/app/views/wco/office_action_templates/index.haml +17 -0
- data/app/views/wco/office_action_templates/new.haml +5 -0
- data/app/views/wco/office_action_templates/show.haml +22 -0
- data/app/views/wco/office_actions/_form.haml +22 -0
- data/app/views/wco/office_actions/_header.haml +6 -0
- data/app/views/wco/office_actions/_index.haml +15 -0
- data/app/views/wco/office_actions/edit.haml +5 -0
- data/app/views/wco/office_actions/index.haml +10 -0
- data/app/views/wco/office_actions/new.haml +4 -0
- data/app/views/wco/office_actions/show.haml +5 -0
- data/app/views/wco/photos/_form.haml +0 -0
- data/app/views/wco/photos/_index_thumbs.haml +7 -0
- data/app/views/wco/photos/_meta.haml +7 -0
- data/app/views/wco/photos/_meta_manager.haml +7 -0
- data/app/views/wco/photos/_multinew.haml +6 -0
- data/app/views/wco/photos/index.haml +3 -0
- data/app/views/wco/photos/new.haml +0 -0
- data/app/views/wco/photos/show.haml +6 -0
- data/app/views/wco/photos/without_gallery.haml +11 -0
- data/app/views/wco/prices/_form.haml +1 -1
- data/app/views/wco/products/_header.haml +6 -0
- data/app/views/wco/publishers/_form.haml +28 -0
- data/app/views/wco/publishers/_header.haml +6 -0
- data/app/views/wco/publishers/edit.haml +4 -0
- data/app/views/wco/publishers/index.haml +37 -0
- data/app/views/wco/publishers/new.haml +4 -0
- data/app/views/wco/reports/_form.haml +28 -0
- data/app/views/wco/reports/_header.haml +14 -0
- data/app/views/wco/reports/edit.haml +4 -0
- data/app/views/wco/reports/index.haml +17 -0
- data/app/views/wco/reports/index_table.haml +17 -0
- data/app/views/wco/reports/new.haml +4 -0
- data/app/views/wco/reports/show.haml +8 -0
- data/app/views/wco/sites/_form.haml +21 -0
- data/app/views/wco/sites/_header.haml +6 -0
- data/app/views/wco/sites/edit.haml +4 -0
- data/app/views/wco/sites/index.haml +24 -0
- data/app/views/wco/sites/new.haml +4 -0
- data/app/views/wco/tags/_form.haml +10 -0
- data/app/views/wco/tags/_header.haml +6 -0
- data/app/views/wco/tags/_index.haml +10 -0
- data/app/views/wco/tags/_index_inline.haml +8 -0
- data/app/views/wco/tags/edit.haml +0 -0
- data/app/views/wco/tags/index.haml +9 -0
- data/app/views/wco/tags/new.haml +0 -0
- data/app/views/wco/tags/show.haml +15 -0
- data/config/routes.rb +42 -0
- data/lib/tasks/db_tasks.rake +13 -0
- data/lib/tasks/office_tasks.rake +36 -0
- data/lib/tasks/scrape_tasks.rake-trash +22 -0
- data/lib/wco/ai_writer.rb +55 -0
- data/lib/wco/engine.rb +0 -1
- data/lib/wco/office_worker.rb +4 -0
- data/lib/wco/scrape_wsj.rb +29 -0
- data/lib/wco/scrape_wsj_capy.rb +44 -0
- data/lib/wco_models.rb +19 -2
- metadata +254 -45
- data/app/helpers/ish_models/application_helper.rb +0 -4
- data/app/models/wco_email/message_template.rb +0 -6
- data/lib/tasks/ish_models_tasks.rake +0 -4
- /data/app/views/wco/{application/_alerts_notices.haml → _alerts_notices.haml} +0 -0
metadata
CHANGED
|
@@ -1,57 +1,71 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wco_models
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.1.0.
|
|
4
|
+
version: 3.1.0.39
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Victor Pudeyev
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-01-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
|
-
name:
|
|
14
|
+
name: aws-sdk-s3
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version:
|
|
19
|
+
version: '0'
|
|
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:
|
|
26
|
+
version: '0'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
|
-
name:
|
|
28
|
+
name: business_time
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- - "
|
|
31
|
+
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version:
|
|
33
|
+
version: '0'
|
|
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:
|
|
40
|
+
version: '0'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
|
-
name:
|
|
42
|
+
name: cancancan
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
45
|
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version:
|
|
47
|
+
version: 3.5.0
|
|
48
48
|
type: :runtime
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version:
|
|
54
|
+
version: 3.5.0
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: capybara
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - ">="
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0'
|
|
62
|
+
type: :runtime
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - ">="
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '0'
|
|
55
69
|
- !ruby/object:Gem::Dependency
|
|
56
70
|
name: devise
|
|
57
71
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -67,35 +81,35 @@ dependencies:
|
|
|
67
81
|
- !ruby/object:Gem::Version
|
|
68
82
|
version: 4.9.3
|
|
69
83
|
- !ruby/object:Gem::Dependency
|
|
70
|
-
name:
|
|
84
|
+
name: droplet_kit
|
|
71
85
|
requirement: !ruby/object:Gem::Requirement
|
|
72
86
|
requirements:
|
|
73
87
|
- - "~>"
|
|
74
88
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: 3.
|
|
89
|
+
version: 3.20.0
|
|
76
90
|
type: :runtime
|
|
77
91
|
prerelease: false
|
|
78
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
93
|
requirements:
|
|
80
94
|
- - "~>"
|
|
81
95
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: 3.
|
|
96
|
+
version: 3.20.0
|
|
83
97
|
- !ruby/object:Gem::Dependency
|
|
84
|
-
name:
|
|
98
|
+
name: haml
|
|
85
99
|
requirement: !ruby/object:Gem::Requirement
|
|
86
100
|
requirements:
|
|
87
101
|
- - "~>"
|
|
88
102
|
- !ruby/object:Gem::Version
|
|
89
|
-
version:
|
|
103
|
+
version: 6.3.0
|
|
90
104
|
type: :runtime
|
|
91
105
|
prerelease: false
|
|
92
106
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
107
|
requirements:
|
|
94
108
|
- - "~>"
|
|
95
109
|
- !ruby/object:Gem::Version
|
|
96
|
-
version:
|
|
110
|
+
version: 6.3.0
|
|
97
111
|
- !ruby/object:Gem::Dependency
|
|
98
|
-
name:
|
|
112
|
+
name: httparty
|
|
99
113
|
requirement: !ruby/object:Gem::Requirement
|
|
100
114
|
requirements:
|
|
101
115
|
- - ">="
|
|
@@ -109,21 +123,21 @@ dependencies:
|
|
|
109
123
|
- !ruby/object:Gem::Version
|
|
110
124
|
version: '0'
|
|
111
125
|
- !ruby/object:Gem::Dependency
|
|
112
|
-
name: mongoid
|
|
126
|
+
name: kaminari-mongoid
|
|
113
127
|
requirement: !ruby/object:Gem::Requirement
|
|
114
128
|
requirements:
|
|
115
129
|
- - "~>"
|
|
116
130
|
- !ruby/object:Gem::Version
|
|
117
|
-
version:
|
|
131
|
+
version: 1.0.1
|
|
118
132
|
type: :runtime
|
|
119
133
|
prerelease: false
|
|
120
134
|
version_requirements: !ruby/object:Gem::Requirement
|
|
121
135
|
requirements:
|
|
122
136
|
- - "~>"
|
|
123
137
|
- !ruby/object:Gem::Version
|
|
124
|
-
version:
|
|
138
|
+
version: 1.0.1
|
|
125
139
|
- !ruby/object:Gem::Dependency
|
|
126
|
-
name:
|
|
140
|
+
name: kaminari-actionview
|
|
127
141
|
requirement: !ruby/object:Gem::Requirement
|
|
128
142
|
requirements:
|
|
129
143
|
- - ">="
|
|
@@ -137,47 +151,61 @@ dependencies:
|
|
|
137
151
|
- !ruby/object:Gem::Version
|
|
138
152
|
version: '0'
|
|
139
153
|
- !ruby/object:Gem::Dependency
|
|
140
|
-
name:
|
|
154
|
+
name: mongoid
|
|
141
155
|
requirement: !ruby/object:Gem::Requirement
|
|
142
156
|
requirements:
|
|
143
157
|
- - "~>"
|
|
144
158
|
- !ruby/object:Gem::Version
|
|
145
|
-
version:
|
|
159
|
+
version: 7.3.0
|
|
146
160
|
type: :runtime
|
|
147
161
|
prerelease: false
|
|
148
162
|
version_requirements: !ruby/object:Gem::Requirement
|
|
149
163
|
requirements:
|
|
150
164
|
- - "~>"
|
|
151
165
|
- !ruby/object:Gem::Version
|
|
152
|
-
version:
|
|
166
|
+
version: 7.3.0
|
|
153
167
|
- !ruby/object:Gem::Dependency
|
|
154
|
-
name:
|
|
168
|
+
name: mongoid_paranoia
|
|
155
169
|
requirement: !ruby/object:Gem::Requirement
|
|
156
170
|
requirements:
|
|
157
|
-
- - "
|
|
171
|
+
- - "~>"
|
|
158
172
|
- !ruby/object:Gem::Version
|
|
159
|
-
version:
|
|
173
|
+
version: 0.6.0
|
|
160
174
|
type: :runtime
|
|
161
175
|
prerelease: false
|
|
162
176
|
version_requirements: !ruby/object:Gem::Requirement
|
|
163
177
|
requirements:
|
|
164
|
-
- - "
|
|
178
|
+
- - "~>"
|
|
165
179
|
- !ruby/object:Gem::Version
|
|
166
|
-
version:
|
|
180
|
+
version: 0.6.0
|
|
167
181
|
- !ruby/object:Gem::Dependency
|
|
168
|
-
name:
|
|
182
|
+
name: mongoid-autoinc
|
|
169
183
|
requirement: !ruby/object:Gem::Requirement
|
|
170
184
|
requirements:
|
|
171
185
|
- - "~>"
|
|
172
186
|
- !ruby/object:Gem::Version
|
|
173
|
-
version:
|
|
187
|
+
version: '6.0'
|
|
174
188
|
type: :runtime
|
|
175
189
|
prerelease: false
|
|
176
190
|
version_requirements: !ruby/object:Gem::Requirement
|
|
177
191
|
requirements:
|
|
178
192
|
- - "~>"
|
|
179
193
|
- !ruby/object:Gem::Version
|
|
180
|
-
version:
|
|
194
|
+
version: '6.0'
|
|
195
|
+
- !ruby/object:Gem::Dependency
|
|
196
|
+
name: mongoid-paperclip
|
|
197
|
+
requirement: !ruby/object:Gem::Requirement
|
|
198
|
+
requirements:
|
|
199
|
+
- - ">="
|
|
200
|
+
- !ruby/object:Gem::Version
|
|
201
|
+
version: '0'
|
|
202
|
+
type: :runtime
|
|
203
|
+
prerelease: false
|
|
204
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
205
|
+
requirements:
|
|
206
|
+
- - ">="
|
|
207
|
+
- !ruby/object:Gem::Version
|
|
208
|
+
version: '0'
|
|
181
209
|
- !ruby/object:Gem::Dependency
|
|
182
210
|
name: net-ssh
|
|
183
211
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -207,19 +235,61 @@ dependencies:
|
|
|
207
235
|
- !ruby/object:Gem::Version
|
|
208
236
|
version: 4.0.0
|
|
209
237
|
- !ruby/object:Gem::Dependency
|
|
210
|
-
name:
|
|
238
|
+
name: rails
|
|
211
239
|
requirement: !ruby/object:Gem::Requirement
|
|
212
240
|
requirements:
|
|
213
241
|
- - "~>"
|
|
214
242
|
- !ruby/object:Gem::Version
|
|
215
|
-
version:
|
|
243
|
+
version: 6.1.0
|
|
216
244
|
type: :runtime
|
|
217
245
|
prerelease: false
|
|
218
246
|
version_requirements: !ruby/object:Gem::Requirement
|
|
219
247
|
requirements:
|
|
220
248
|
- - "~>"
|
|
221
249
|
- !ruby/object:Gem::Version
|
|
222
|
-
version:
|
|
250
|
+
version: 6.1.0
|
|
251
|
+
- !ruby/object:Gem::Dependency
|
|
252
|
+
name: sass-rails
|
|
253
|
+
requirement: !ruby/object:Gem::Requirement
|
|
254
|
+
requirements:
|
|
255
|
+
- - "~>"
|
|
256
|
+
- !ruby/object:Gem::Version
|
|
257
|
+
version: '6.0'
|
|
258
|
+
type: :runtime
|
|
259
|
+
prerelease: false
|
|
260
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
261
|
+
requirements:
|
|
262
|
+
- - "~>"
|
|
263
|
+
- !ruby/object:Gem::Version
|
|
264
|
+
version: '6.0'
|
|
265
|
+
- !ruby/object:Gem::Dependency
|
|
266
|
+
name: selenium-webdriver
|
|
267
|
+
requirement: !ruby/object:Gem::Requirement
|
|
268
|
+
requirements:
|
|
269
|
+
- - "~>"
|
|
270
|
+
- !ruby/object:Gem::Version
|
|
271
|
+
version: 4.9.0
|
|
272
|
+
type: :runtime
|
|
273
|
+
prerelease: false
|
|
274
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
275
|
+
requirements:
|
|
276
|
+
- - "~>"
|
|
277
|
+
- !ruby/object:Gem::Version
|
|
278
|
+
version: 4.9.0
|
|
279
|
+
- !ruby/object:Gem::Dependency
|
|
280
|
+
name: sidekiq
|
|
281
|
+
requirement: !ruby/object:Gem::Requirement
|
|
282
|
+
requirements:
|
|
283
|
+
- - "~>"
|
|
284
|
+
- !ruby/object:Gem::Version
|
|
285
|
+
version: 7.2.0
|
|
286
|
+
type: :runtime
|
|
287
|
+
prerelease: false
|
|
288
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
289
|
+
requirements:
|
|
290
|
+
- - "~>"
|
|
291
|
+
- !ruby/object:Gem::Version
|
|
292
|
+
version: 7.2.0
|
|
223
293
|
- !ruby/object:Gem::Dependency
|
|
224
294
|
name: stripe
|
|
225
295
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -256,28 +326,50 @@ files:
|
|
|
256
326
|
- app/assets/javascripts/vendor/test.js
|
|
257
327
|
- app/assets/javascripts/wco/application.js
|
|
258
328
|
- app/assets/javascripts/wco/collapse-expand.js
|
|
329
|
+
- app/assets/javascripts/wco/file_upload.js
|
|
330
|
+
- app/assets/javascripts/wco/shared.js
|
|
259
331
|
- app/assets/stylesheets/vendor/bootstrap-4.6.2.min.css
|
|
260
332
|
- app/assets/stylesheets/wco/application.css
|
|
261
333
|
- app/assets/stylesheets/wco/utils.scss
|
|
262
334
|
- app/controllers/wco/application_controller.rb
|
|
335
|
+
- app/controllers/wco/galleries_controller.rb
|
|
336
|
+
- app/controllers/wco/headlines_controller.rb
|
|
337
|
+
- app/controllers/wco/leads_controller.rb
|
|
338
|
+
- app/controllers/wco/leadsets_controller.rb
|
|
339
|
+
- app/controllers/wco/logs_controller.rb
|
|
340
|
+
- app/controllers/wco/office_action_templates_controller.rb
|
|
341
|
+
- app/controllers/wco/office_actions_controller.rb
|
|
342
|
+
- app/controllers/wco/photos_controller.rb
|
|
263
343
|
- app/controllers/wco/prices_controller.rb
|
|
264
344
|
- app/controllers/wco/products_controller.rb
|
|
345
|
+
- app/controllers/wco/profiles_controller.rb
|
|
346
|
+
- app/controllers/wco/publishers_controller.rb
|
|
347
|
+
- app/controllers/wco/reports_controller.rb
|
|
348
|
+
- app/controllers/wco/sites_controller.rb
|
|
265
349
|
- app/controllers/wco/subscriptions_controller.rb
|
|
266
|
-
- app/
|
|
350
|
+
- app/controllers/wco/tags_controller.rb
|
|
351
|
+
- app/helpers/wco/application_helper.rb
|
|
267
352
|
- app/jobs/wco_hosting/certbot_job.rb
|
|
268
353
|
- app/mailers/ish_models/application_mailer.rb
|
|
269
354
|
- app/models/ability.rb
|
|
355
|
+
- app/models/wco/asset.rb
|
|
270
356
|
- app/models/wco/gallery.rb
|
|
357
|
+
- app/models/wco/headline.rb
|
|
358
|
+
- app/models/wco/invoice.rb
|
|
271
359
|
- app/models/wco/lead.rb
|
|
272
360
|
- app/models/wco/leadset.rb
|
|
361
|
+
- app/models/wco/log.rb
|
|
273
362
|
- app/models/wco/newsitem.rb
|
|
274
363
|
- app/models/wco/office_action.rb
|
|
364
|
+
- app/models/wco/office_action_template.rb
|
|
365
|
+
- app/models/wco/office_action_template_tie.rb
|
|
275
366
|
- app/models/wco/photo.rb
|
|
276
367
|
- app/models/wco/premium_item.rb
|
|
277
368
|
- app/models/wco/price.rb
|
|
278
369
|
- app/models/wco/product.rb
|
|
279
370
|
- app/models/wco/profile.rb
|
|
280
371
|
- app/models/wco/publisher.rb
|
|
372
|
+
- app/models/wco/report.rb
|
|
281
373
|
- app/models/wco/site.rb
|
|
282
374
|
- app/models/wco/subscription.rb
|
|
283
375
|
- app/models/wco/tag.rb
|
|
@@ -285,25 +377,136 @@ files:
|
|
|
285
377
|
- app/models/wco_email/campaign.rb
|
|
286
378
|
- app/models/wco_email/context.rb
|
|
287
379
|
- app/models/wco_email/conversation.rb
|
|
380
|
+
- app/models/wco_email/email_action.rb
|
|
381
|
+
- app/models/wco_email/email_action_template.rb
|
|
288
382
|
- app/models/wco_email/email_filter.rb
|
|
289
|
-
- app/models/wco_email/
|
|
290
|
-
- app/models/wco_email/
|
|
383
|
+
- app/models/wco_email/email_template.rb
|
|
384
|
+
- app/models/wco_email/message.rb
|
|
385
|
+
- app/models/wco_email/message_stub.rb
|
|
386
|
+
- app/models/wco_email/obfuscated_redirect.rb
|
|
387
|
+
- app/models/wco_email/unsubscribe.rb
|
|
291
388
|
- app/models/wco_hosting/appliance.rb
|
|
292
389
|
- app/models/wco_hosting/appliance_tmpl.rb
|
|
293
390
|
- app/models/wco_hosting/domain.rb
|
|
294
391
|
- app/models/wco_hosting/serverhost.rb
|
|
295
392
|
- app/views/layouts/wco/application.haml
|
|
296
|
-
- app/views/wco/
|
|
393
|
+
- app/views/wco/_alerts_notices.haml
|
|
394
|
+
- app/views/wco/_main_footer.haml
|
|
395
|
+
- app/views/wco/_main_header.haml
|
|
396
|
+
- app/views/wco/_main_header.haml-bk
|
|
397
|
+
- app/views/wco/_paginate.haml
|
|
398
|
+
- app/views/wco/_search.haml
|
|
297
399
|
- app/views/wco/application/_auth_widget.haml
|
|
400
|
+
- app/views/wco/application/_debug.haml
|
|
298
401
|
- app/views/wco/application/_meta.haml
|
|
299
402
|
- app/views/wco/application/home.haml
|
|
403
|
+
- app/views/wco/galleries/_form.haml
|
|
404
|
+
- app/views/wco/galleries/_header.haml
|
|
405
|
+
- app/views/wco/galleries/_index.haml
|
|
406
|
+
- app/views/wco/galleries/_menu.haml-trash
|
|
407
|
+
- app/views/wco/galleries/_menu_secondary.haml
|
|
408
|
+
- app/views/wco/galleries/_thumbs.haml
|
|
409
|
+
- app/views/wco/galleries/_title.haml
|
|
410
|
+
- app/views/wco/galleries/edit.haml
|
|
411
|
+
- app/views/wco/galleries/new.haml
|
|
412
|
+
- app/views/wco/galleries/show.haml
|
|
413
|
+
- app/views/wco/headlines/_form.haml
|
|
414
|
+
- app/views/wco/headlines/_header.haml
|
|
415
|
+
- app/views/wco/headlines/_index.haml
|
|
416
|
+
- app/views/wco/headlines/edit.haml
|
|
417
|
+
- app/views/wco/headlines/new.haml
|
|
418
|
+
- app/views/wco/invoices/_form.haml-trash
|
|
419
|
+
- app/views/wco/invoices/_header.haml
|
|
420
|
+
- app/views/wco/invoices/_index_list.haml
|
|
421
|
+
- app/views/wco/invoices/_index_table.haml
|
|
422
|
+
- app/views/wco/invoices/index.haml
|
|
423
|
+
- app/views/wco/invoices/new_pdf.haml
|
|
424
|
+
- app/views/wco/invoices/new_stripe.haml
|
|
425
|
+
- app/views/wco/invoices/show.haml
|
|
426
|
+
- app/views/wco/kaminari/_first_page.html.erb
|
|
427
|
+
- app/views/wco/kaminari/_gap.html.erb
|
|
428
|
+
- app/views/wco/kaminari/_last_page.html.erb
|
|
429
|
+
- app/views/wco/kaminari/_next_page.html.erb
|
|
430
|
+
- app/views/wco/kaminari/_page.html.erb
|
|
431
|
+
- app/views/wco/kaminari/_paginator.html.erb
|
|
432
|
+
- app/views/wco/kaminari/_prev_page.html.erb
|
|
433
|
+
- app/views/wco/leads/_form.haml
|
|
434
|
+
- app/views/wco/leads/_form_import.haml
|
|
435
|
+
- app/views/wco/leads/_header.haml
|
|
436
|
+
- app/views/wco/leads/_index.haml
|
|
437
|
+
- app/views/wco/leads/_index_rows.haml
|
|
438
|
+
- app/views/wco/leads/edit.haml
|
|
439
|
+
- app/views/wco/leads/index.haml
|
|
440
|
+
- app/views/wco/leads/new.haml
|
|
441
|
+
- app/views/wco/leads/show.haml
|
|
442
|
+
- app/views/wco/leadsets/_form.haml
|
|
443
|
+
- app/views/wco/leadsets/_header.haml
|
|
444
|
+
- app/views/wco/leadsets/edit.haml
|
|
445
|
+
- app/views/wco/leadsets/index.haml
|
|
446
|
+
- app/views/wco/leadsets/index_dataTables.haml
|
|
447
|
+
- app/views/wco/leadsets/new.haml
|
|
448
|
+
- app/views/wco/leadsets/show.haml
|
|
449
|
+
- app/views/wco/logs/_form.haml
|
|
450
|
+
- app/views/wco/logs/_header.haml
|
|
451
|
+
- app/views/wco/logs/_index.haml
|
|
452
|
+
- app/views/wco/logs/edit.haml
|
|
453
|
+
- app/views/wco/logs/new.haml
|
|
454
|
+
- app/views/wco/office_action_templates/_form.haml
|
|
455
|
+
- app/views/wco/office_action_templates/_header.haml
|
|
456
|
+
- app/views/wco/office_action_templates/_ties.haml
|
|
457
|
+
- app/views/wco/office_action_templates/edit.haml
|
|
458
|
+
- app/views/wco/office_action_templates/index.haml
|
|
459
|
+
- app/views/wco/office_action_templates/new.haml
|
|
460
|
+
- app/views/wco/office_action_templates/show.haml
|
|
461
|
+
- app/views/wco/office_actions/_form.haml
|
|
462
|
+
- app/views/wco/office_actions/_header.haml
|
|
463
|
+
- app/views/wco/office_actions/_index.haml
|
|
464
|
+
- app/views/wco/office_actions/edit.haml
|
|
465
|
+
- app/views/wco/office_actions/index.haml
|
|
466
|
+
- app/views/wco/office_actions/new.haml
|
|
467
|
+
- app/views/wco/office_actions/show.haml
|
|
468
|
+
- app/views/wco/photos/_form.haml
|
|
469
|
+
- app/views/wco/photos/_index_thumbs.haml
|
|
470
|
+
- app/views/wco/photos/_meta.haml
|
|
471
|
+
- app/views/wco/photos/_meta_manager.haml
|
|
472
|
+
- app/views/wco/photos/_multinew.haml
|
|
473
|
+
- app/views/wco/photos/index.haml
|
|
474
|
+
- app/views/wco/photos/new.haml
|
|
475
|
+
- app/views/wco/photos/show.haml
|
|
476
|
+
- app/views/wco/photos/without_gallery.haml
|
|
300
477
|
- app/views/wco/prices/_form.haml
|
|
301
478
|
- app/views/wco/products/_form.haml
|
|
479
|
+
- app/views/wco/products/_header.haml
|
|
302
480
|
- app/views/wco/products/_list.haml
|
|
303
481
|
- app/views/wco/products/_table.haml
|
|
304
482
|
- app/views/wco/products/edit.haml
|
|
305
483
|
- app/views/wco/products/index.haml
|
|
306
484
|
- app/views/wco/products/show.haml
|
|
485
|
+
- app/views/wco/publishers/_form.haml
|
|
486
|
+
- app/views/wco/publishers/_header.haml
|
|
487
|
+
- app/views/wco/publishers/edit.haml
|
|
488
|
+
- app/views/wco/publishers/index.haml
|
|
489
|
+
- app/views/wco/publishers/new.haml
|
|
490
|
+
- app/views/wco/reports/_form.haml
|
|
491
|
+
- app/views/wco/reports/_header.haml
|
|
492
|
+
- app/views/wco/reports/edit.haml
|
|
493
|
+
- app/views/wco/reports/index.haml
|
|
494
|
+
- app/views/wco/reports/index_table.haml
|
|
495
|
+
- app/views/wco/reports/new.haml
|
|
496
|
+
- app/views/wco/reports/show.haml
|
|
497
|
+
- app/views/wco/sites/_form.haml
|
|
498
|
+
- app/views/wco/sites/_header.haml
|
|
499
|
+
- app/views/wco/sites/edit.haml
|
|
500
|
+
- app/views/wco/sites/index.haml
|
|
501
|
+
- app/views/wco/sites/new.haml
|
|
502
|
+
- app/views/wco/tags/_form.haml
|
|
503
|
+
- app/views/wco/tags/_header.haml
|
|
504
|
+
- app/views/wco/tags/_index.haml
|
|
505
|
+
- app/views/wco/tags/_index_inline.haml
|
|
506
|
+
- app/views/wco/tags/edit.haml
|
|
507
|
+
- app/views/wco/tags/index.haml
|
|
508
|
+
- app/views/wco/tags/new.haml
|
|
509
|
+
- app/views/wco/tags/show.haml
|
|
307
510
|
- app/views/wco_hosting/docker-compose/dc-any.erb
|
|
308
511
|
- app/views/wco_hosting/docker-compose/dc-helloworld.erb
|
|
309
512
|
- app/views/wco_hosting/docker-compose/dc-wordpress.erb
|
|
@@ -312,8 +515,14 @@ files:
|
|
|
312
515
|
- app/views/wco_hosting/scripts/nginx_site.conf.erb
|
|
313
516
|
- config/initializers/assets.rb
|
|
314
517
|
- config/routes.rb
|
|
315
|
-
- lib/tasks/
|
|
518
|
+
- lib/tasks/db_tasks.rake
|
|
519
|
+
- lib/tasks/office_tasks.rake
|
|
520
|
+
- lib/tasks/scrape_tasks.rake-trash
|
|
521
|
+
- lib/wco/ai_writer.rb
|
|
316
522
|
- lib/wco/engine.rb
|
|
523
|
+
- lib/wco/office_worker.rb
|
|
524
|
+
- lib/wco/scrape_wsj.rb
|
|
525
|
+
- lib/wco/scrape_wsj_capy.rb
|
|
317
526
|
- lib/wco_models.rb
|
|
318
527
|
homepage: https://wasya.co
|
|
319
528
|
licenses:
|
|
File without changes
|