phcdevworks_tutorials 6.10.0 → 8.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/phcdevworks_tutorials/command/items_controller.rb +5 -5
  3. data/app/controllers/phcdevworks_tutorials/command/posts_controller.rb +21 -10
  4. data/app/controllers/phcdevworks_tutorials/tutorial/posts_controller.rb +1 -1
  5. data/app/controllers/phcdevworks_tutorials/tutorial/steps_controller.rb +4 -4
  6. data/app/models/phcdevworks_tutorials/command/item.rb +2 -1
  7. data/app/models/phcdevworks_tutorials/command/post.rb +3 -2
  8. data/app/models/phcdevworks_tutorials/tutorial/post.rb +3 -2
  9. data/app/models/phcdevworks_tutorials/tutorial/step.rb +3 -1
  10. data/app/views/layouts/phcdevworks_tutorials/components/backend/sidebars/_side_menu.html.erb +75 -80
  11. data/app/views/phcdevworks_tutorials/command/items/_form.html.erb +5 -0
  12. data/app/views/phcdevworks_tutorials/command/items/index.html.erb +1 -3
  13. data/app/views/phcdevworks_tutorials/command/posts/_form.html.erb +7 -2
  14. data/app/views/phcdevworks_tutorials/command/posts/index.html.erb +1 -1
  15. data/app/views/phcdevworks_tutorials/command/posts/show.html.erb +71 -11
  16. data/app/views/phcdevworks_tutorials/tutorial/posts/_form.html.erb +7 -2
  17. data/app/views/phcdevworks_tutorials/tutorial/posts/index.html.erb +1 -1
  18. data/app/views/phcdevworks_tutorials/tutorial/steps/_form.html.erb +5 -1
  19. data/app/views/phcdevworks_tutorials/tutorial/steps/index.html.erb +1 -0
  20. data/config/routes.rb +2 -2
  21. data/db/migrate/20200702121306_remove_images_cols_from_phcdevworks_tutorials.rb +10 -0
  22. data/db/migrate/20200707115652_create_phcdevworks_tutorials_add_seo.rb +10 -0
  23. data/lib/phcdevworks_tutorials/engine.rb +27 -26
  24. data/lib/phcdevworks_tutorials/version.rb +1 -1
  25. metadata +32 -30
  26. data/app/assets/javascripts/phcdevworks_tutorials/tutorial/categories.coffee +0 -3
  27. data/app/assets/stylesheets/phcdevworks_tutorials/category/posts.css +0 -4
  28. data/app/assets/stylesheets/phcdevworks_tutorials/tutorial/categories.scss +0 -3
  29. data/app/controllers/phcdevworks_tutorials/tutorial/categories_controller.rb +0 -81
  30. data/app/helpers/phcdevworks_tutorials/tutorial/categories_helper.rb +0 -4
  31. data/app/models/phcdevworks_tutorials/tutorial/category.rb +0 -27
  32. data/app/models/phcdevworks_tutorials/tutorial_category_versions.rb +0 -5
  33. data/app/views/phcdevworks_tutorials/tutorial/categories/_form.html.erb +0 -22
  34. data/app/views/phcdevworks_tutorials/tutorial/categories/edit.html.erb +0 -47
  35. data/app/views/phcdevworks_tutorials/tutorial/categories/index.html.erb +0 -80
  36. data/app/views/phcdevworks_tutorials/tutorial/categories/new.html.erb +0 -47
  37. data/app/views/phcdevworks_tutorials/tutorial/categories/show.html.erb +0 -9
  38. data/db/migrate/20191018124910_create_phcdevworks_tutorials_tutorial_categories.rb +0 -15
  39. data/db/migrate/20191102093157_create_phcdevworks_tutorials_tutorial_category_versions.rb +0 -16
@@ -13,7 +13,7 @@
13
13
 
14
14
  <div class="form-group">
15
15
  <%= form.label :post_description, "Command List Description" %>
16
- <%= form.text_area :post_description, class: "form-control" %>
16
+ <%= form.text_area :post_description, class: "form-control editor" %>
17
17
  </div>
18
18
 
19
19
  <div class="form-group">
@@ -33,12 +33,17 @@
33
33
  <div class="form-group">
34
34
  <label>Select a Category</label>
35
35
  <div class="panel-body">
36
- <%= form.collection_check_boxes :category_ids, PhcdevworksTutorials::Tutorial::Category.order(:category_name), :id, :category_name do |post_category| %>
36
+ <%= form.collection_check_boxes :category_ids, PhcdevworksCoreModules::Post::Category.all, :id, :category_name do |post_category| %>
37
37
  <%= post_category.check_box %>
38
38
  <%= post_category.label %><br>
39
39
  <% end %>
40
40
  </div>
41
41
  </div>
42
+
43
+ <div class="form-group">
44
+ <label>Attach SEO Data</label>
45
+ <%= collection_select(:command_post, :optimization_id, PhcdevworksCoreModules::Marketing::Optimization.order("seo_title"), :id, :seo_title, {}, {class: "form-control"}) %>
46
+ </div>
42
47
  <!-- Form Input Fields -->
43
48
 
44
49
  <!-- Form Submition Button -->
@@ -48,7 +48,7 @@
48
48
  <% @command_posts.each do |command_post| %>
49
49
  <tr>
50
50
  <td><%= command_post.post_title %></td>
51
- <td><%= command_post.post_description %></td>
51
+ <td><%= truncate(command_post.post_description, :length => 80, :escape => false) %></td>
52
52
  <td>
53
53
  <div class="btn-group d-flex" role="group">
54
54
  <%= link_to "List Details", command_post, class: "btn btn-purple btn-xs" %>
@@ -1,14 +1,74 @@
1
- <p id="notice"><%= notice %></p>
1
+ <!-- PHCTitleSEO Title Variables -->
2
+ <% phc_title "Command Lists Manager" %>
3
+ <% phc_title_tagline "Command List Details" %>
4
+ <% phc_breadcrumb_one "Home" %>
5
+ <% phc_breadcrumb_two link_to "Command List Index", phcdevworks_tutorials.command_posts_path %>
6
+ <!-- PHCTitleSEO Title Variables -->
2
7
 
3
- <p>
4
- <strong>Post title:</strong>
5
- <%= @command_post.post_title %>
6
- </p>
8
+ <!-- Page Bradcrumbs -->
9
+ <ol class="breadcrumb pull-right">
10
+ <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
11
+ <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_two) %></li>
12
+ </ol>
13
+ <!-- Page Bradcrumbs -->
7
14
 
8
- <p>
9
- <strong>Post description:</strong>
10
- <%= @command_post.post_description %>
11
- </p>
15
+ <!-- Page Header -->
16
+ <h2 class="page-header"><%= yield(:phc_title) %></h2>
17
+ <!-- Page Header -->
12
18
 
13
- <%= link_to 'Edit', edit_command_post_path(@command_post) %> |
14
- <%= link_to 'Back', command_posts_path %>
19
+ <!-- Page Content -->
20
+ <div class="row">
21
+ <div class="col-lg-12">
22
+
23
+ <!-- Panel -->
24
+ <div class="panel panel-inverse">
25
+
26
+ <!-- Panel - Heading -->
27
+ <div class="panel-heading">
28
+ <h4 class="panel-title"><%= yield(:phc_title) %></h4>
29
+ </div>
30
+ <!-- Panel - Heading -->
31
+
32
+ <!-- Panel - Body -->
33
+ <div class="panel-body">
34
+
35
+ <!-- Index - Table -->
36
+ <div class="table-responsive">
37
+ <table class="table table-striped table-bordered">
38
+
39
+ <thead>
40
+ <tr>
41
+ <th>Command Item Title</th>
42
+ <th>Command Item Description</th>
43
+ </tr>
44
+ </thead>
45
+
46
+ <tbody>
47
+ <% @command_post.items.order('item_title ASC').each do |command_item| %>
48
+ <tr>
49
+ <td><%= command_item.item_title %></td>
50
+ <td><%= command_item.item_description %></td>
51
+ </tr>
52
+ <% end %>
53
+ </tbody>
54
+
55
+ </table>
56
+ </div>
57
+ <!-- Index - Table -->
58
+
59
+ <!-- New Button -->
60
+ <%= link_to phcdevworks_tutorials.command_post_items_path(@command_post), class: "btn btn-primary btn-sm" do %>
61
+ <i class="fad fa-plus-circle"></i>
62
+ Add or Update Command Items
63
+ <% end %>
64
+ <!-- New Button -->
65
+
66
+ </div>
67
+ <!-- Panel - Body -->
68
+
69
+ </div>
70
+ <!-- Panel -->
71
+
72
+ </div>
73
+ </div>
74
+ <!-- Page Content -->
@@ -13,7 +13,7 @@
13
13
 
14
14
  <div class="form-group">
15
15
  <%= form.label :post_description, "Tutorial Description" %>
16
- <%= form.text_area :post_description, class: "form-control", class: "editor" %>
16
+ <%= form.text_area :post_description, class: "form-control editor" %>
17
17
  <div id="word-count" class="mt-3"></div>
18
18
  </div>
19
19
 
@@ -33,12 +33,17 @@
33
33
  <div class="form-group">
34
34
  <label>Select a Category</label>
35
35
  <div class="panel-body">
36
- <%= form.collection_check_boxes :category_ids, PhcdevworksTutorials::Tutorial::Category.order(:category_name), :id, :category_name do |post_category| %>
36
+ <%= form.collection_check_boxes :category_ids, PhcdevworksCoreModules::Post::Category.all, :id, :category_name do |post_category| %>
37
37
  <%= post_category.check_box %>
38
38
  <%= post_category.label %><br>
39
39
  <% end %>
40
40
  </div>
41
41
  </div>
42
+
43
+ <div class="form-group">
44
+ <label>Attach SEO Data</label>
45
+ <%= collection_select(:tutorial_post, :optimization_id, PhcdevworksCoreModules::Marketing::Optimization.order("seo_title"), :id, :seo_title, {}, {class: "form-control"}) %>
46
+ </div>
42
47
  <!-- Form Input Fields -->
43
48
 
44
49
  <!-- Form Submition Button -->
@@ -49,7 +49,7 @@
49
49
  <% @tutorial_posts.each do |tutorial_post| %>
50
50
  <tr>
51
51
  <td><%= tutorial_post.post_title %></td>
52
- <td><%= tutorial_post.post_description %></td>
52
+ <td><%= truncate(tutorial_post.post_description, :length => 80, :escape => false) %></td>
53
53
  <td><%= tutorial_post.post_status.capitalize %></td>
54
54
  <td>
55
55
  <div class="btn-group d-flex" role="group">
@@ -31,7 +31,11 @@
31
31
  <%= form.label :step_image, "Step Image" %>
32
32
  <%= form.file_field :step_image, class: "form-control" %>
33
33
  </div>
34
-
34
+
35
+ <div class="form-group">
36
+ <label>Attach SEO Data</label>
37
+ <%= collection_select(:tutorial_step, :optimization_id, PhcdevworksCoreModules::Marketing::Optimization.order("seo_title"), :id, :seo_title, {}, {class: "form-control"}) %>
38
+ </div>
35
39
  <!-- Form Input Fields -->
36
40
 
37
41
  <!-- Form Submition Button -->
@@ -49,6 +49,7 @@
49
49
  <tr>
50
50
  <td><%= tutorial_step.step_number %></td>
51
51
  <td><%= tutorial_step.step_title %></td>
52
+ <td><%= truncate(tutorial_step.step_description, :length => 80, :escape => false) %></td>
52
53
  <td>
53
54
  <div class="btn-group d-flex" role="group">
54
55
  <%= link_to "Update Step", edit_tutorial_post_step_path(tutorial_step.post, tutorial_step), class: "btn btn-primary btn-xs" %>
@@ -5,7 +5,6 @@ PhcdevworksTutorials::Engine.routes.draw do
5
5
  resources :posts, class_name: "Tutorial::Post" do
6
6
  resources :steps, class_name: "Tutorial::Step"
7
7
  end
8
- resources :categories, class_name: "Tutorial::Category"
9
8
  end
10
9
 
11
10
  # Command Routes
@@ -30,6 +29,7 @@ PhcdevworksTutorials::Engine.routes.draw do
30
29
  end
31
30
 
32
31
  # Mount Routes
33
- mount PhcdevworksAccounts::Engine, :at => "/"
32
+ mount PhcdevworksAccounts::Engine, :at => '/'
33
+ mount PhcdevworksCoreModules::Engine, :at => '/'
34
34
 
35
35
  end
@@ -0,0 +1,10 @@
1
+ class RemoveImagesColsFromPhcdevworksTutorials < ActiveRecord::Migration[6.0]
2
+ def change
3
+
4
+ remove_column :phcdevworks_tutorials_tutorial_posts, :post_image, :string
5
+ remove_column :phcdevworks_tutorials_tutorial_steps, :step_image, :string
6
+ remove_column :phcdevworks_tutorials_command_posts, :post_image, :string
7
+ remove_column :phcdevworks_tutorials_command_items, :item_image, :string
8
+
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ class CreatePhcdevworksTutorialsAddSeo < ActiveRecord::Migration[6.0]
2
+ def change
3
+
4
+ add_column :phcdevworks_tutorials_tutorial_posts, :optimization_id, :string
5
+ add_column :phcdevworks_tutorials_tutorial_steps, :optimization_id, :string
6
+ add_column :phcdevworks_tutorials_command_posts, :optimization_id, :string
7
+ add_column :phcdevworks_tutorials_command_items, :optimization_id, :string
8
+
9
+ end
10
+ end
@@ -1,36 +1,37 @@
1
1
  module PhcdevworksTutorials
2
- class Engine < ::Rails::Engine
2
+ class Engine < ::Rails::Engine
3
3
 
4
- # Load Main Dependencies
5
- require "jbuilder"
6
- require "paper_trail"
7
- require "friendly_id"
4
+ # Load Main Dependencies
5
+ require "jbuilder"
6
+ require "paper_trail"
7
+ require "friendly_id"
8
8
 
9
- # Load Theme Dependencies
10
- require "phcthemes_admin_panel_pack"
11
- require "phcthemes_web_theme_pack"
9
+ # Load Theme Dependencies
10
+ require "phcthemes_admin_panel_pack"
11
+ require "phcthemes_web_theme_pack"
12
12
 
13
- # Load Helper Dependencies
14
- require "phcdevworks_core"
15
- require "phcdevworks_active_menus"
16
- require "phcdevworks_notifications"
17
- require "phcdevworks_titleseo"
13
+ # Load Helper Dependencies
14
+ require "phcdevworks_core"
15
+ require "phcdevworks_active_menus"
16
+ require "phcdevworks_notifications"
17
+ require "phcdevworks_titleseo"
18
18
 
19
- # Load Upload Dependencies
20
- require "aws-sdk-s3"
21
- require "google-cloud-storage"
22
- require "mini_magick"
19
+ # Load Upload Dependencies
20
+ require "aws-sdk-s3"
21
+ require "google-cloud-storage"
22
+ require "mini_magick"
23
23
 
24
- # Frontend Dependencies
25
- require "wicked"
26
- require "gravtastic"
27
- require "friendly_id"
24
+ # Frontend Dependencies
25
+ require "wicked"
26
+ require "gravtastic"
27
+ require "friendly_id"
28
28
 
29
- # Load User Accounts
30
- require "phcdevworks_accounts"
29
+ # Load User Accounts
30
+ require "phcdevworks_accounts"
31
+ require "phcdevworks_core_modules"
31
32
 
32
- # Engine Namespace
33
- isolate_namespace PhcdevworksTutorials
33
+ # Engine Namespace
34
+ isolate_namespace PhcdevworksTutorials
34
35
 
35
- end
36
+ end
36
37
  end
@@ -1,3 +1,3 @@
1
1
  module PhcdevworksTutorials
2
- VERSION = "6.10.0"
2
+ VERSION = "8.0.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phcdevworks_tutorials
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.10.0
4
+ version: 8.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - PHCDevworks
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-25 00:00:00.000000000 Z
11
+ date: 2020-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -64,84 +64,98 @@ dependencies:
64
64
  requirements:
65
65
  - - "~>"
66
66
  - !ruby/object:Gem::Version
67
- version: '1.9'
67
+ version: '1.10'
68
68
  type: :runtime
69
69
  prerelease: false
70
70
  version_requirements: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - "~>"
73
73
  - !ruby/object:Gem::Version
74
- version: '1.9'
74
+ version: '1.10'
75
75
  - !ruby/object:Gem::Dependency
76
76
  name: phcthemes_web_theme_pack
77
77
  requirement: !ruby/object:Gem::Requirement
78
78
  requirements:
79
79
  - - "~>"
80
80
  - !ruby/object:Gem::Version
81
- version: '1.9'
81
+ version: '1.10'
82
82
  type: :runtime
83
83
  prerelease: false
84
84
  version_requirements: !ruby/object:Gem::Requirement
85
85
  requirements:
86
86
  - - "~>"
87
87
  - !ruby/object:Gem::Version
88
- version: '1.9'
88
+ version: '1.10'
89
89
  - !ruby/object:Gem::Dependency
90
90
  name: phcdevworks_active_menus
91
91
  requirement: !ruby/object:Gem::Requirement
92
92
  requirements:
93
93
  - - "~>"
94
94
  - !ruby/object:Gem::Version
95
- version: '1.4'
95
+ version: '1.5'
96
96
  type: :runtime
97
97
  prerelease: false
98
98
  version_requirements: !ruby/object:Gem::Requirement
99
99
  requirements:
100
100
  - - "~>"
101
101
  - !ruby/object:Gem::Version
102
- version: '1.4'
102
+ version: '1.5'
103
103
  - !ruby/object:Gem::Dependency
104
104
  name: phcdevworks_core
105
105
  requirement: !ruby/object:Gem::Requirement
106
106
  requirements:
107
107
  - - "~>"
108
108
  - !ruby/object:Gem::Version
109
- version: '1.4'
109
+ version: '1.5'
110
110
  type: :runtime
111
111
  prerelease: false
112
112
  version_requirements: !ruby/object:Gem::Requirement
113
113
  requirements:
114
114
  - - "~>"
115
115
  - !ruby/object:Gem::Version
116
- version: '1.4'
116
+ version: '1.5'
117
+ - !ruby/object:Gem::Dependency
118
+ name: phcdevworks_core_modules
119
+ requirement: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - "~>"
122
+ - !ruby/object:Gem::Version
123
+ version: '3.0'
124
+ type: :runtime
125
+ prerelease: false
126
+ version_requirements: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - "~>"
129
+ - !ruby/object:Gem::Version
130
+ version: '3.0'
117
131
  - !ruby/object:Gem::Dependency
118
132
  name: phcdevworks_notifications
119
133
  requirement: !ruby/object:Gem::Requirement
120
134
  requirements:
121
135
  - - "~>"
122
136
  - !ruby/object:Gem::Version
123
- version: '1.4'
137
+ version: '1.5'
124
138
  type: :runtime
125
139
  prerelease: false
126
140
  version_requirements: !ruby/object:Gem::Requirement
127
141
  requirements:
128
142
  - - "~>"
129
143
  - !ruby/object:Gem::Version
130
- version: '1.4'
144
+ version: '1.5'
131
145
  - !ruby/object:Gem::Dependency
132
146
  name: phcdevworks_titleseo
133
147
  requirement: !ruby/object:Gem::Requirement
134
148
  requirements:
135
149
  - - "~>"
136
150
  - !ruby/object:Gem::Version
137
- version: '2.3'
151
+ version: '2.4'
138
152
  type: :runtime
139
153
  prerelease: false
140
154
  version_requirements: !ruby/object:Gem::Requirement
141
155
  requirements:
142
156
  - - "~>"
143
157
  - !ruby/object:Gem::Version
144
- version: '2.3'
158
+ version: '2.4'
145
159
  - !ruby/object:Gem::Dependency
146
160
  name: wicked
147
161
  requirement: !ruby/object:Gem::Requirement
@@ -232,14 +246,14 @@ dependencies:
232
246
  requirements:
233
247
  - - "~>"
234
248
  - !ruby/object:Gem::Version
235
- version: '1.10'
249
+ version: '1.13'
236
250
  type: :runtime
237
251
  prerelease: false
238
252
  version_requirements: !ruby/object:Gem::Requirement
239
253
  requirements:
240
254
  - - "~>"
241
255
  - !ruby/object:Gem::Version
242
- version: '1.10'
256
+ version: '1.13'
243
257
  - !ruby/object:Gem::Dependency
244
258
  name: sqlite3
245
259
  requirement: !ruby/object:Gem::Requirement
@@ -270,14 +284,11 @@ files:
270
284
  - app/assets/javascripts/phcdevworks_tutorials/blog/tutorials.coffee
271
285
  - app/assets/javascripts/phcdevworks_tutorials/command/items.coffee
272
286
  - app/assets/javascripts/phcdevworks_tutorials/command/posts.coffee
273
- - app/assets/javascripts/phcdevworks_tutorials/tutorial/categories.coffee
274
287
  - app/assets/stylesheets/phcdevworks_tutorials/application.scss
275
288
  - app/assets/stylesheets/phcdevworks_tutorials/blog/commands.scss
276
289
  - app/assets/stylesheets/phcdevworks_tutorials/blog/tutorials.scss
277
- - app/assets/stylesheets/phcdevworks_tutorials/category/posts.css
278
290
  - app/assets/stylesheets/phcdevworks_tutorials/command/items.scss
279
291
  - app/assets/stylesheets/phcdevworks_tutorials/command/posts.scss
280
- - app/assets/stylesheets/phcdevworks_tutorials/tutorial/categories.scss
281
292
  - app/assets/stylesheets/phcdevworks_tutorials/tutorial/posts.css
282
293
  - app/assets/stylesheets/phcdevworks_tutorials/tutorial/steps.css
283
294
  - app/assets/stylesheets/scaffolds.scss
@@ -286,7 +297,6 @@ files:
286
297
  - app/controllers/phcdevworks_tutorials/blog/tutorials_controller.rb
287
298
  - app/controllers/phcdevworks_tutorials/command/items_controller.rb
288
299
  - app/controllers/phcdevworks_tutorials/command/posts_controller.rb
289
- - app/controllers/phcdevworks_tutorials/tutorial/categories_controller.rb
290
300
  - app/controllers/phcdevworks_tutorials/tutorial/posts_controller.rb
291
301
  - app/controllers/phcdevworks_tutorials/tutorial/steps_controller.rb
292
302
  - app/helpers/phcdevworks_tutorials/application_helper.rb
@@ -294,7 +304,6 @@ files:
294
304
  - app/helpers/phcdevworks_tutorials/blog/tutorials_helper.rb
295
305
  - app/helpers/phcdevworks_tutorials/command/items_helper.rb
296
306
  - app/helpers/phcdevworks_tutorials/command/posts_helper.rb
297
- - app/helpers/phcdevworks_tutorials/tutorial/categories_helper.rb
298
307
  - app/helpers/phcdevworks_tutorials/tutorial/posts_helper.rb
299
308
  - app/helpers/phcdevworks_tutorials/tutorial/steps_helper.rb
300
309
  - app/jobs/phcdevworks_tutorials/application_job.rb
@@ -306,10 +315,8 @@ files:
306
315
  - app/models/phcdevworks_tutorials/command_item_versions.rb
307
316
  - app/models/phcdevworks_tutorials/command_post_versions.rb
308
317
  - app/models/phcdevworks_tutorials/tutorial.rb
309
- - app/models/phcdevworks_tutorials/tutorial/category.rb
310
318
  - app/models/phcdevworks_tutorials/tutorial/post.rb
311
319
  - app/models/phcdevworks_tutorials/tutorial/step.rb
312
- - app/models/phcdevworks_tutorials/tutorial_category_versions.rb
313
320
  - app/models/phcdevworks_tutorials/tutorial_post_versions.rb
314
321
  - app/models/phcdevworks_tutorials/tutorial_step_versions.rb
315
322
  - app/views/layouts/phcdevworks_tutorials/application.html.erb
@@ -331,11 +338,6 @@ files:
331
338
  - app/views/phcdevworks_tutorials/command/posts/index.html.erb
332
339
  - app/views/phcdevworks_tutorials/command/posts/new.html.erb
333
340
  - app/views/phcdevworks_tutorials/command/posts/show.html.erb
334
- - app/views/phcdevworks_tutorials/tutorial/categories/_form.html.erb
335
- - app/views/phcdevworks_tutorials/tutorial/categories/edit.html.erb
336
- - app/views/phcdevworks_tutorials/tutorial/categories/index.html.erb
337
- - app/views/phcdevworks_tutorials/tutorial/categories/new.html.erb
338
- - app/views/phcdevworks_tutorials/tutorial/categories/show.html.erb
339
341
  - app/views/phcdevworks_tutorials/tutorial/posts/_form.html.erb
340
342
  - app/views/phcdevworks_tutorials/tutorial/posts/edit.html.erb
341
343
  - app/views/phcdevworks_tutorials/tutorial/posts/index.html.erb
@@ -348,17 +350,17 @@ files:
348
350
  - config/routes.rb
349
351
  - db/migrate/20191017235259_create_phcdevworks_tutorials_tutorial_posts.rb
350
352
  - db/migrate/20191017235421_create_phcdevworks_tutorials_tutorial_steps.rb
351
- - db/migrate/20191018124910_create_phcdevworks_tutorials_tutorial_categories.rb
352
353
  - db/migrate/20191024232406_create_phcdevworks_tutorials_categories_posts.rb
353
354
  - db/migrate/20191102093129_create_phcdevworks_tutorials_tutorial_post_versions.rb
354
355
  - db/migrate/20191102093146_create_phcdevworks_tutorials_tutorial_step_versions.rb
355
- - db/migrate/20191102093157_create_phcdevworks_tutorials_tutorial_category_versions.rb
356
356
  - db/migrate/20191110232654_add_copy_instructions_to_steps.rb
357
357
  - db/migrate/20200320110115_create_phcdevworks_tutorials_command_posts.rb
358
358
  - db/migrate/20200320110553_create_phcdevworks_tutorials_command_items.rb
359
359
  - db/migrate/20200321122525_create_phcdevworks_tutorials_command_items_versions.rb
360
360
  - db/migrate/20200321122606_create_phcdevworks_tutorials_command_posts_versions.rb
361
361
  - db/migrate/20200328012248_phcdevworks_tutorials_categories_commands.rb
362
+ - db/migrate/20200702121306_remove_images_cols_from_phcdevworks_tutorials.rb
363
+ - db/migrate/20200707115652_create_phcdevworks_tutorials_add_seo.rb
362
364
  - lib/phcdevworks_tutorials.rb
363
365
  - lib/phcdevworks_tutorials/engine.rb
364
366
  - lib/phcdevworks_tutorials/version.rb