phcdevworks_tutorials 6.5.0 → 6.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (56) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/phcdevworks_tutorials/command/items.coffee +3 -0
  3. data/app/assets/javascripts/phcdevworks_tutorials/command/posts.coffee +3 -0
  4. data/app/assets/stylesheets/phcdevworks_tutorials/command/items.scss +3 -0
  5. data/app/assets/stylesheets/phcdevworks_tutorials/command/posts.scss +3 -0
  6. data/app/assets/stylesheets/scaffolds.scss +65 -0
  7. data/app/controllers/phcdevworks_tutorials/command/items_controller.rb +95 -0
  8. data/app/controllers/phcdevworks_tutorials/command/posts_controller.rb +70 -0
  9. data/app/helpers/phcdevworks_tutorials/command/items_helper.rb +4 -0
  10. data/app/helpers/phcdevworks_tutorials/command/posts_helper.rb +4 -0
  11. data/app/models/phcdevworks_tutorials/application_record.rb +3 -3
  12. data/app/models/phcdevworks_tutorials/command/item.rb +16 -0
  13. data/app/models/phcdevworks_tutorials/command/post.rb +33 -0
  14. data/app/models/phcdevworks_tutorials/command.rb +7 -0
  15. data/app/models/phcdevworks_tutorials/command_item_versions.rb +5 -0
  16. data/app/models/phcdevworks_tutorials/command_post_versions.rb +5 -0
  17. data/app/models/phcdevworks_tutorials/tutorial.rb +4 -4
  18. data/app/models/phcdevworks_tutorials/tutorial_category_versions.rb +3 -3
  19. data/app/models/phcdevworks_tutorials/tutorial_post_versions.rb +3 -3
  20. data/app/models/phcdevworks_tutorials/tutorial_step_versions.rb +3 -3
  21. data/app/views/layouts/phcdevworks_tutorials/components/backend/navigation/_top_menu.html.erb +10 -7
  22. data/app/views/layouts/phcdevworks_tutorials/components/backend/sidebars/_side_menu.html.erb +36 -24
  23. data/app/views/phcdevworks_tutorials/command/items/_form.html.erb +41 -0
  24. data/app/views/phcdevworks_tutorials/command/items/edit.html.erb +47 -0
  25. data/app/views/phcdevworks_tutorials/command/items/index.html.erb +84 -0
  26. data/app/views/phcdevworks_tutorials/command/items/new.html.erb +47 -0
  27. data/app/views/phcdevworks_tutorials/command/items/show.html.erb +19 -0
  28. data/app/views/phcdevworks_tutorials/command/posts/_form.html.erb +41 -0
  29. data/app/views/phcdevworks_tutorials/command/posts/edit.html.erb +47 -0
  30. data/app/views/phcdevworks_tutorials/command/posts/index.html.erb +81 -0
  31. data/app/views/phcdevworks_tutorials/command/posts/new.html.erb +49 -0
  32. data/app/views/phcdevworks_tutorials/command/posts/show.html.erb +14 -0
  33. data/app/views/phcdevworks_tutorials/tutorial/categories/_form.html.erb +1 -1
  34. data/app/views/phcdevworks_tutorials/tutorial/posts/_form.html.erb +5 -5
  35. data/app/views/phcdevworks_tutorials/tutorial/posts/edit.html.erb +1 -1
  36. data/app/views/phcdevworks_tutorials/tutorial/posts/new.html.erb +1 -1
  37. data/app/views/phcdevworks_tutorials/tutorial/posts/show.html.erb +2 -2
  38. data/app/views/phcdevworks_tutorials/tutorial/steps/_form.html.erb +5 -5
  39. data/app/views/phcdevworks_tutorials/tutorial/steps/edit.html.erb +1 -1
  40. data/app/views/phcdevworks_tutorials/tutorial/steps/index.html.erb +1 -1
  41. data/config/routes.rb +25 -18
  42. data/db/migrate/20191017235259_create_phcdevworks_tutorials_tutorial_posts.rb +11 -11
  43. data/db/migrate/20191017235421_create_phcdevworks_tutorials_tutorial_steps.rb +12 -12
  44. data/db/migrate/20191018124910_create_phcdevworks_tutorials_tutorial_categories.rb +8 -8
  45. data/db/migrate/20191024232406_create_phcdevworks_tutorials_categories_posts.rb +5 -5
  46. data/db/migrate/20191102093129_create_phcdevworks_tutorials_tutorial_post_versions.rb +11 -14
  47. data/db/migrate/20191102093146_create_phcdevworks_tutorials_tutorial_step_versions.rb +11 -14
  48. data/db/migrate/20191102093157_create_phcdevworks_tutorials_tutorial_category_versions.rb +11 -13
  49. data/db/migrate/20191110232654_add_copy_instructions_to_steps.rb +3 -5
  50. data/db/migrate/20200320110115_create_phcdevworks_tutorials_command_posts.rb +18 -0
  51. data/db/migrate/20200320110553_create_phcdevworks_tutorials_command_items.rb +20 -0
  52. data/db/migrate/20200321122525_create_phcdevworks_tutorials_command_items_versions.rb +16 -0
  53. data/db/migrate/20200321122606_create_phcdevworks_tutorials_command_posts_versions.rb +16 -0
  54. data/lib/phcdevworks_tutorials/engine.rb +26 -26
  55. data/lib/phcdevworks_tutorials/version.rb +1 -1
  56. metadata +50 -22
@@ -1,20 +1,20 @@
1
1
  class CreatePhcdevworksTutorialsTutorialSteps < ActiveRecord::Migration[6.0]
2
- def change
3
- create_table :phcdevworks_tutorials_tutorial_steps do |t|
2
+ def change
3
+ create_table :phcdevworks_tutorials_tutorial_steps do |t|
4
4
 
5
- t.string :step_number
6
- t.string :step_title
7
- t.text :step_description
8
- t.string :step_image
5
+ t.string :step_number
6
+ t.string :step_title
7
+ t.text :step_description
8
+ t.string :step_image
9
9
 
10
- t.string :slug
11
- t.string :user_id
12
- t.string :org_id
10
+ t.string :slug
11
+ t.string :user_id
12
+ t.string :org_id
13
13
 
14
- t.references :post
14
+ t.references :post
15
15
 
16
- t.timestamps
16
+ t.timestamps
17
17
 
18
+ end
18
19
  end
19
- end
20
20
  end
@@ -1,15 +1,15 @@
1
1
  class CreatePhcdevworksTutorialsTutorialCategories < ActiveRecord::Migration[6.0]
2
- def change
3
- create_table :phcdevworks_tutorials_tutorial_categories do |t|
2
+ def change
3
+ create_table :phcdevworks_tutorials_tutorial_categories do |t|
4
4
 
5
- t.string :category_name
5
+ t.string :category_name
6
6
 
7
- t.string :slug
8
- t.string :user_id
9
- t.string :org_id
7
+ t.string :slug
8
+ t.string :user_id
9
+ t.string :org_id
10
10
 
11
- t.timestamps
11
+ t.timestamps
12
12
 
13
+ end
13
14
  end
14
- end
15
15
  end
@@ -1,10 +1,10 @@
1
1
  class CreatePhcdevworksTutorialsCategoriesPosts < ActiveRecord::Migration[6.0]
2
- def change
3
- create_table :phcdevworks_tutorials_categories_posts do |t|
2
+ def change
3
+ create_table :phcdevworks_tutorials_categories_posts do |t|
4
4
 
5
- t.integer :category_id
6
- t.integer :post_id
5
+ t.integer :category_id
6
+ t.integer :post_id
7
7
 
8
+ end
8
9
  end
9
- end
10
10
  end
@@ -1,19 +1,16 @@
1
1
  class CreatePhcdevworksTutorialsTutorialPostVersions < ActiveRecord::Migration[6.0]
2
- TEXT_BYTES = 1_073_741_823
3
- def change
2
+ TEXT_BYTES = 1_073_741_823
3
+ def change
4
+ create_table :phcdevworks_tutorials_tutorial_post_versions do |t|
4
5
 
5
- create_table :phcdevworks_tutorials_tutorial_post_versions do |t|
6
-
7
- t.string :item_type, {:null=>false}
8
- t.integer :item_id, null: false
9
- t.string :event, null: false
10
- t.string :whodunnit
11
- t.text :object, limit: TEXT_BYTES
12
- t.datetime :created_at
6
+ t.string :item_type, {:null=>false}
7
+ t.integer :item_id, null: false
8
+ t.string :event, null: false
9
+ t.string :whodunnit
10
+ t.text :object, limit: TEXT_BYTES
11
+ t.datetime :created_at
13
12
 
13
+ end
14
+ add_index :phcdevworks_tutorials_tutorial_post_versions, %i(item_type item_id), :name => 'tutorial_post_versions'
14
15
  end
15
-
16
- add_index :phcdevworks_tutorials_tutorial_post_versions, %i(item_type item_id), :name => 'tutorial_post_versions'
17
-
18
- end
19
16
  end
@@ -1,19 +1,16 @@
1
1
  class CreatePhcdevworksTutorialsTutorialStepVersions < ActiveRecord::Migration[6.0]
2
- TEXT_BYTES = 1_073_741_823
3
- def change
2
+ TEXT_BYTES = 1_073_741_823
3
+ def change
4
+ create_table :phcdevworks_tutorials_tutorial_step_versions do |t|
4
5
 
5
- create_table :phcdevworks_tutorials_tutorial_step_versions do |t|
6
-
7
- t.string :item_type, {:null=>false}
8
- t.integer :item_id, null: false
9
- t.string :event, null: false
10
- t.string :whodunnit
11
- t.text :object, limit: TEXT_BYTES
12
- t.datetime :created_at
6
+ t.string :item_type, {:null=>false}
7
+ t.integer :item_id, null: false
8
+ t.string :event, null: false
9
+ t.string :whodunnit
10
+ t.text :object, limit: TEXT_BYTES
11
+ t.datetime :created_at
13
12
 
13
+ end
14
+ add_index :phcdevworks_tutorials_tutorial_step_versions, %i(item_type item_id), :name => 'tutorial_step_versions'
14
15
  end
15
-
16
- add_index :phcdevworks_tutorials_tutorial_step_versions, %i(item_type item_id), :name => 'tutorial_step_versions'
17
-
18
- end
19
16
  end
@@ -1,18 +1,16 @@
1
1
  class CreatePhcdevworksTutorialsTutorialCategoryVersions < ActiveRecord::Migration[6.0]
2
- TEXT_BYTES = 1_073_741_823
3
- def change
4
-
5
- create_table :phcdevworks_tutorials_tutorial_category_versions do |t|
2
+ TEXT_BYTES = 1_073_741_823
3
+ def change
4
+ create_table :phcdevworks_tutorials_tutorial_category_versions do |t|
6
5
 
7
- t.string :item_type, {:null=>false}
8
- t.integer :item_id, null: false
9
- t.string :event, null: false
10
- t.string :whodunnit
11
- t.text :object, limit: TEXT_BYTES
12
- t.datetime :created_at
6
+ t.string :item_type, {:null=>false}
7
+ t.integer :item_id, null: false
8
+ t.string :event, null: false
9
+ t.string :whodunnit
10
+ t.text :object, limit: TEXT_BYTES
11
+ t.datetime :created_at
13
12
 
13
+ end
14
+ add_index :phcdevworks_tutorials_tutorial_category_versions, %i(item_type item_id), :name => 'tutorial_category_versions'
14
15
  end
15
-
16
- add_index :phcdevworks_tutorials_tutorial_category_versions, %i(item_type item_id), :name => 'tutorial_category_versions'
17
- end
18
16
  end
@@ -1,7 +1,5 @@
1
1
  class AddCopyInstructionsToSteps < ActiveRecord::Migration[6.0]
2
- def change
3
-
4
- add_column :phcdevworks_tutorials_tutorial_steps, :step_copy_instruction, :text
5
-
6
- end
2
+ def change
3
+ add_column :phcdevworks_tutorials_tutorial_steps, :step_copy_instruction, :text
4
+ end
7
5
  end
@@ -0,0 +1,18 @@
1
+ class CreatePhcdevworksTutorialsCommandPosts < ActiveRecord::Migration[6.0]
2
+ def change
3
+ create_table :phcdevworks_tutorials_command_posts do |t|
4
+
5
+ t.string :post_title
6
+ t.text :post_description
7
+ t.string :post_status
8
+ t.string :post_image
9
+
10
+ t.string :slug
11
+ t.string :user_id
12
+ t.string :org_id
13
+
14
+ t.timestamps
15
+
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,20 @@
1
+ class CreatePhcdevworksTutorialsCommandItems < ActiveRecord::Migration[6.0]
2
+ def change
3
+ create_table :phcdevworks_tutorials_command_items do |t|
4
+
5
+ t.string :item_name
6
+ t.text :item_description
7
+ t.string :item_copy_command
8
+ t.string :item_image
9
+
10
+ t.string :slug
11
+ t.string :user_id
12
+ t.string :org_id
13
+
14
+ t.references :post
15
+
16
+ t.timestamps
17
+
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,16 @@
1
+ class CreatePhcdevworksTutorialsCommandItemsVersions < ActiveRecord::Migration[6.0]
2
+ TEXT_BYTES = 1_073_741_823
3
+ def change
4
+ create_table :phcdevworks_tutorials_command_items_versions do |t|
5
+
6
+ t.string :item_type, {:null=>false}
7
+ t.integer :item_id, null: false
8
+ t.string :event, null: false
9
+ t.string :whodunnit
10
+ t.text :object, limit: TEXT_BYTES
11
+ t.datetime :created_at
12
+
13
+ end
14
+ add_index :phcdevworks_tutorials_command_items_versions, %i(item_type item_id), :name => 'command_item_versions'
15
+ end
16
+ end
@@ -0,0 +1,16 @@
1
+ class CreatePhcdevworksTutorialsCommandPostsVersions < ActiveRecord::Migration[6.0]
2
+ TEXT_BYTES = 1_073_741_823
3
+ def change
4
+ create_table :phcdevworks_tutorials_command_posts_versions do |t|
5
+
6
+ t.string :item_type, {:null=>false}
7
+ t.integer :item_id, null: false
8
+ t.string :event, null: false
9
+ t.string :whodunnit
10
+ t.text :object, limit: TEXT_BYTES
11
+ t.datetime :created_at
12
+
13
+ end
14
+ add_index :phcdevworks_tutorials_command_posts_versions, %i(item_type item_id), :name => 'command_post_versions'
15
+ end
16
+ end
@@ -1,36 +1,36 @@
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
31
 
32
- # Engine Namespace
33
- isolate_namespace PhcdevworksTutorials
32
+ # Engine Namespace
33
+ isolate_namespace PhcdevworksTutorials
34
34
 
35
- end
35
+ end
36
36
  end
@@ -1,3 +1,3 @@
1
1
  module PhcdevworksTutorials
2
- VERSION = "6.5.0"
2
+ VERSION = "6.6.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.5.0
4
+ version: 6.6.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-03-19 00:00:00.000000000 Z
11
+ date: 2020-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '6.0'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 6.0.2.1
22
+ version: 6.0.2.2
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '6.0'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 6.0.2.1
32
+ version: 6.0.2.2
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: jbuilder
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -64,84 +64,84 @@ dependencies:
64
64
  requirements:
65
65
  - - "~>"
66
66
  - !ruby/object:Gem::Version
67
- version: '1.5'
67
+ version: '1.6'
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.5'
74
+ version: '1.6'
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.3'
81
+ version: '1.6'
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.3'
88
+ version: '1.6'
89
89
  - !ruby/object:Gem::Dependency
90
- name: phcdevworks_core
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.0.6
95
+ version: '1.1'
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.0.6
102
+ version: '1.1'
103
103
  - !ruby/object:Gem::Dependency
104
- name: phcdevworks_active_menus
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.0.6
109
+ version: '1.1'
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.0.6
116
+ version: '1.1'
117
117
  - !ruby/object:Gem::Dependency
118
118
  name: phcdevworks_notifications
119
119
  requirement: !ruby/object:Gem::Requirement
120
120
  requirements:
121
121
  - - "~>"
122
122
  - !ruby/object:Gem::Version
123
- version: 1.0.6
123
+ version: '1.1'
124
124
  type: :runtime
125
125
  prerelease: false
126
126
  version_requirements: !ruby/object:Gem::Requirement
127
127
  requirements:
128
128
  - - "~>"
129
129
  - !ruby/object:Gem::Version
130
- version: 1.0.6
130
+ version: '1.1'
131
131
  - !ruby/object:Gem::Dependency
132
132
  name: phcdevworks_titleseo
133
133
  requirement: !ruby/object:Gem::Requirement
134
134
  requirements:
135
135
  - - "~>"
136
136
  - !ruby/object:Gem::Version
137
- version: 1.0.6
137
+ version: '1.1'
138
138
  type: :runtime
139
139
  prerelease: false
140
140
  version_requirements: !ruby/object:Gem::Requirement
141
141
  requirements:
142
142
  - - "~>"
143
143
  - !ruby/object:Gem::Version
144
- version: 1.0.6
144
+ version: '1.1'
145
145
  - !ruby/object:Gem::Dependency
146
146
  name: wicked
147
147
  requirement: !ruby/object:Gem::Requirement
@@ -190,14 +190,14 @@ dependencies:
190
190
  requirements:
191
191
  - - "~>"
192
192
  - !ruby/object:Gem::Version
193
- version: '1.60'
193
+ version: '1.61'
194
194
  type: :runtime
195
195
  prerelease: false
196
196
  version_requirements: !ruby/object:Gem::Requirement
197
197
  requirements:
198
198
  - - "~>"
199
199
  - !ruby/object:Gem::Version
200
- version: '1.60'
200
+ version: '1.61'
201
201
  - !ruby/object:Gem::Dependency
202
202
  name: google-cloud-storage
203
203
  requirement: !ruby/object:Gem::Requirement
@@ -232,14 +232,14 @@ dependencies:
232
232
  requirements:
233
233
  - - "~>"
234
234
  - !ruby/object:Gem::Version
235
- version: '1.5'
235
+ version: '1.6'
236
236
  type: :runtime
237
237
  prerelease: false
238
238
  version_requirements: !ruby/object:Gem::Requirement
239
239
  requirements:
240
240
  - - "~>"
241
241
  - !ruby/object:Gem::Version
242
- version: '1.5'
242
+ version: '1.6'
243
243
  - !ruby/object:Gem::Dependency
244
244
  name: sqlite3
245
245
  requirement: !ruby/object:Gem::Requirement
@@ -267,26 +267,40 @@ files:
267
267
  - app/assets/config/phcdevworks_tutorials_manifest.js
268
268
  - app/assets/javascripts/phcdevworks_tutorials/application.js
269
269
  - app/assets/javascripts/phcdevworks_tutorials/blog/tutorials.coffee
270
+ - app/assets/javascripts/phcdevworks_tutorials/command/items.coffee
271
+ - app/assets/javascripts/phcdevworks_tutorials/command/posts.coffee
270
272
  - app/assets/javascripts/phcdevworks_tutorials/tutorial/categories.coffee
271
273
  - app/assets/stylesheets/phcdevworks_tutorials/application.scss
272
274
  - app/assets/stylesheets/phcdevworks_tutorials/blog/tutorials.scss
273
275
  - app/assets/stylesheets/phcdevworks_tutorials/category/posts.css
276
+ - app/assets/stylesheets/phcdevworks_tutorials/command/items.scss
277
+ - app/assets/stylesheets/phcdevworks_tutorials/command/posts.scss
274
278
  - app/assets/stylesheets/phcdevworks_tutorials/tutorial/categories.scss
275
279
  - app/assets/stylesheets/phcdevworks_tutorials/tutorial/posts.css
276
280
  - app/assets/stylesheets/phcdevworks_tutorials/tutorial/steps.css
281
+ - app/assets/stylesheets/scaffolds.scss
277
282
  - app/controllers/phcdevworks_tutorials/application_controller.rb
278
283
  - app/controllers/phcdevworks_tutorials/blog/tutorials_controller.rb
284
+ - app/controllers/phcdevworks_tutorials/command/items_controller.rb
285
+ - app/controllers/phcdevworks_tutorials/command/posts_controller.rb
279
286
  - app/controllers/phcdevworks_tutorials/tutorial/categories_controller.rb
280
287
  - app/controllers/phcdevworks_tutorials/tutorial/posts_controller.rb
281
288
  - app/controllers/phcdevworks_tutorials/tutorial/steps_controller.rb
282
289
  - app/helpers/phcdevworks_tutorials/application_helper.rb
283
290
  - app/helpers/phcdevworks_tutorials/blog/tutorials_helper.rb
291
+ - app/helpers/phcdevworks_tutorials/command/items_helper.rb
292
+ - app/helpers/phcdevworks_tutorials/command/posts_helper.rb
284
293
  - app/helpers/phcdevworks_tutorials/tutorial/categories_helper.rb
285
294
  - app/helpers/phcdevworks_tutorials/tutorial/posts_helper.rb
286
295
  - app/helpers/phcdevworks_tutorials/tutorial/steps_helper.rb
287
296
  - app/jobs/phcdevworks_tutorials/application_job.rb
288
297
  - app/mailers/phcdevworks_tutorials/application_mailer.rb
289
298
  - app/models/phcdevworks_tutorials/application_record.rb
299
+ - app/models/phcdevworks_tutorials/command.rb
300
+ - app/models/phcdevworks_tutorials/command/item.rb
301
+ - app/models/phcdevworks_tutorials/command/post.rb
302
+ - app/models/phcdevworks_tutorials/command_item_versions.rb
303
+ - app/models/phcdevworks_tutorials/command_post_versions.rb
290
304
  - app/models/phcdevworks_tutorials/tutorial.rb
291
305
  - app/models/phcdevworks_tutorials/tutorial/category.rb
292
306
  - app/models/phcdevworks_tutorials/tutorial/post.rb
@@ -301,6 +315,16 @@ files:
301
315
  - app/views/layouts/phcdevworks_tutorials/frontend.html.erb
302
316
  - app/views/phcdevworks_tutorials/blog/tutorials/index.html.erb
303
317
  - app/views/phcdevworks_tutorials/blog/tutorials/show.html.erb
318
+ - app/views/phcdevworks_tutorials/command/items/_form.html.erb
319
+ - app/views/phcdevworks_tutorials/command/items/edit.html.erb
320
+ - app/views/phcdevworks_tutorials/command/items/index.html.erb
321
+ - app/views/phcdevworks_tutorials/command/items/new.html.erb
322
+ - app/views/phcdevworks_tutorials/command/items/show.html.erb
323
+ - app/views/phcdevworks_tutorials/command/posts/_form.html.erb
324
+ - app/views/phcdevworks_tutorials/command/posts/edit.html.erb
325
+ - app/views/phcdevworks_tutorials/command/posts/index.html.erb
326
+ - app/views/phcdevworks_tutorials/command/posts/new.html.erb
327
+ - app/views/phcdevworks_tutorials/command/posts/show.html.erb
304
328
  - app/views/phcdevworks_tutorials/tutorial/categories/_form.html.erb
305
329
  - app/views/phcdevworks_tutorials/tutorial/categories/edit.html.erb
306
330
  - app/views/phcdevworks_tutorials/tutorial/categories/index.html.erb
@@ -324,6 +348,10 @@ files:
324
348
  - db/migrate/20191102093146_create_phcdevworks_tutorials_tutorial_step_versions.rb
325
349
  - db/migrate/20191102093157_create_phcdevworks_tutorials_tutorial_category_versions.rb
326
350
  - db/migrate/20191110232654_add_copy_instructions_to_steps.rb
351
+ - db/migrate/20200320110115_create_phcdevworks_tutorials_command_posts.rb
352
+ - db/migrate/20200320110553_create_phcdevworks_tutorials_command_items.rb
353
+ - db/migrate/20200321122525_create_phcdevworks_tutorials_command_items_versions.rb
354
+ - db/migrate/20200321122606_create_phcdevworks_tutorials_command_posts_versions.rb
327
355
  - lib/phcdevworks_tutorials.rb
328
356
  - lib/phcdevworks_tutorials/engine.rb
329
357
  - lib/phcdevworks_tutorials/version.rb