phcdevworks_scripts 8.2.0 → 9.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. checksums.yaml +4 -4
  2. data/MIT-LICENSE +20 -20
  3. data/README.md +3 -1
  4. data/Rakefile +8 -8
  5. data/app/assets/config/phcdevworks_scripts_manifest.js +2 -3
  6. data/app/controllers/phcdevworks_scripts/application_controller.rb +0 -0
  7. data/app/controllers/phcdevworks_scripts/script/authors_controller.rb +0 -0
  8. data/app/controllers/phcdevworks_scripts/script/extensions_controller.rb +0 -0
  9. data/app/controllers/phcdevworks_scripts/script/listings_controller.rb +0 -0
  10. data/app/controllers/phcdevworks_scripts/script/urls_controller.rb +0 -0
  11. data/app/controllers/phcdevworks_scripts/script/versions_controller.rb +0 -0
  12. data/app/controllers/phcdevworks_scripts/snippet/posts_controller.rb +0 -0
  13. data/app/controllers/phcdevworks_scripts/snippet/urls_controller.rb +0 -0
  14. data/app/helpers/phcdevworks_scripts/application_helper.rb +0 -0
  15. data/app/helpers/phcdevworks_scripts/script/authors_helper.rb +0 -0
  16. data/app/helpers/phcdevworks_scripts/script/extensions_helper.rb +0 -0
  17. data/app/helpers/phcdevworks_scripts/script/listings_helper.rb +0 -0
  18. data/app/helpers/phcdevworks_scripts/script/urls_helper.rb +0 -0
  19. data/app/helpers/phcdevworks_scripts/script/versions_helper.rb +0 -0
  20. data/app/helpers/phcdevworks_scripts/snippet/posts_helper.rb +0 -0
  21. data/app/helpers/phcdevworks_scripts/snippet/urls_helper.rb +0 -0
  22. data/app/jobs/phcdevworks_scripts/application_job.rb +0 -0
  23. data/app/mailers/phcdevworks_scripts/application_mailer.rb +0 -0
  24. data/app/models/phcdevworks_scripts/application_record.rb +0 -0
  25. data/app/models/phcdevworks_scripts/script/author.rb +0 -0
  26. data/app/models/phcdevworks_scripts/script/extension.rb +0 -0
  27. data/app/models/phcdevworks_scripts/script/listing.rb +0 -0
  28. data/app/models/phcdevworks_scripts/script/url.rb +0 -0
  29. data/app/models/phcdevworks_scripts/script/version.rb +0 -0
  30. data/app/models/phcdevworks_scripts/script.rb +0 -0
  31. data/app/models/phcdevworks_scripts/script_author_versions.rb +0 -0
  32. data/app/models/phcdevworks_scripts/script_extension_versions.rb +0 -0
  33. data/app/models/phcdevworks_scripts/script_listing_versions.rb +0 -0
  34. data/app/models/phcdevworks_scripts/script_url_versions.rb +0 -0
  35. data/app/models/phcdevworks_scripts/script_version_versions.rb +0 -0
  36. data/app/models/phcdevworks_scripts/snippet/post.rb +0 -0
  37. data/app/models/phcdevworks_scripts/snippet/url.rb +0 -0
  38. data/app/models/phcdevworks_scripts/snippet.rb +0 -0
  39. data/app/models/phcdevworks_scripts/snippet_post_versions.rb +0 -0
  40. data/app/models/phcdevworks_scripts/snippet_url_versions.rb +0 -0
  41. data/app/views/layouts/phcdevworks_scripts/application.html.erb +73 -131
  42. data/app/views/layouts/phcdevworks_scripts/components/backend/footer/_footer.html.erb +10 -9
  43. data/app/views/layouts/phcdevworks_scripts/components/backend/navigation/_top_menu.html.erb +26 -25
  44. data/app/views/layouts/phcdevworks_scripts/components/backend/sidebars/_side_menu.html.erb +491 -349
  45. data/app/views/phcdevworks_scripts/script/authors/_form.html.erb +16 -16
  46. data/app/views/phcdevworks_scripts/script/authors/edit.html.erb +23 -31
  47. data/app/views/phcdevworks_scripts/script/authors/index.html.erb +50 -58
  48. data/app/views/phcdevworks_scripts/script/authors/new.html.erb +23 -31
  49. data/app/views/phcdevworks_scripts/script/authors/show.html.erb +13 -13
  50. data/app/views/phcdevworks_scripts/script/extensions/_form.html.erb +14 -14
  51. data/app/views/phcdevworks_scripts/script/extensions/edit.html.erb +23 -31
  52. data/app/views/phcdevworks_scripts/script/extensions/index.html.erb +46 -54
  53. data/app/views/phcdevworks_scripts/script/extensions/new.html.erb +23 -31
  54. data/app/views/phcdevworks_scripts/script/extensions/show.html.erb +13 -13
  55. data/app/views/phcdevworks_scripts/script/listings/_form.html.erb +29 -29
  56. data/app/views/phcdevworks_scripts/script/listings/edit.html.erb +23 -31
  57. data/app/views/phcdevworks_scripts/script/listings/index.html.erb +50 -58
  58. data/app/views/phcdevworks_scripts/script/listings/new.html.erb +23 -31
  59. data/app/views/phcdevworks_scripts/script/listings/show.html.erb +13 -13
  60. data/app/views/phcdevworks_scripts/script/urls/_form.html.erb +18 -18
  61. data/app/views/phcdevworks_scripts/script/urls/edit.html.erb +27 -35
  62. data/app/views/phcdevworks_scripts/script/urls/index.html.erb +48 -56
  63. data/app/views/phcdevworks_scripts/script/urls/new.html.erb +23 -31
  64. data/app/views/phcdevworks_scripts/script/urls/show.html.erb +13 -13
  65. data/app/views/phcdevworks_scripts/script/versions/_form.html.erb +10 -10
  66. data/app/views/phcdevworks_scripts/script/versions/edit.html.erb +23 -31
  67. data/app/views/phcdevworks_scripts/script/versions/index.html.erb +43 -51
  68. data/app/views/phcdevworks_scripts/script/versions/new.html.erb +23 -31
  69. data/app/views/phcdevworks_scripts/script/versions/show.html.erb +13 -13
  70. data/app/views/phcdevworks_scripts/snippet/posts/_form.html.erb +12 -12
  71. data/app/views/phcdevworks_scripts/snippet/posts/edit.html.erb +23 -31
  72. data/app/views/phcdevworks_scripts/snippet/posts/index.html.erb +54 -62
  73. data/app/views/phcdevworks_scripts/snippet/posts/new.html.erb +23 -31
  74. data/app/views/phcdevworks_scripts/snippet/posts/show.html.erb +25 -25
  75. data/app/views/phcdevworks_scripts/snippet/urls/_form.html.erb +10 -10
  76. data/app/views/phcdevworks_scripts/snippet/urls/edit.html.erb +23 -31
  77. data/app/views/phcdevworks_scripts/snippet/urls/index.html.erb +52 -60
  78. data/app/views/phcdevworks_scripts/snippet/urls/new.html.erb +23 -31
  79. data/app/views/phcdevworks_scripts/snippet/urls/show.html.erb +25 -25
  80. data/config/routes.rb +0 -4
  81. data/config/spring.rb +0 -0
  82. data/db/migrate/20170517064030_create_phcdevworks_scripts_script_extension_versions.rb +1 -1
  83. data/db/migrate/20170517064049_create_phcdevworks_scripts_script_listing_versions.rb +1 -1
  84. data/db/migrate/20170517064114_create_phcdevworks_scripts_script_version_versions.rb +1 -1
  85. data/db/migrate/20170517064150_create_phcdevworks_scripts_script_url_versions.rb +1 -1
  86. data/db/migrate/20170517064208_create_phcdevworks_scripts_script_author_versions.rb +1 -1
  87. data/db/migrate/20190818022002_create_phcdevworks_scripts_snippet_posts.rb +1 -1
  88. data/db/migrate/20190818022024_create_phcdevworks_scripts_snippet_urls.rb +1 -1
  89. data/db/migrate/20190818022939_create_phcdevworks_scripts_script_authors.rb +1 -1
  90. data/db/migrate/20190818023353_create_phcdevworks_scripts_script_listings.rb +1 -1
  91. data/db/migrate/20190818023709_create_phcdevworks_scripts_script_extensions.rb +1 -1
  92. data/db/migrate/20190818023911_create_phcdevworks_scripts_script_urls.rb +1 -1
  93. data/db/migrate/20190818031653_create_phcdevworks_scripts_script_versions.rb +1 -1
  94. data/db/migrate/20191102092649_create_phcdevworks_scripts_snippet_url_versions.rb +1 -1
  95. data/db/migrate/20191102092711_create_phcdevworks_scripts_snippet_post_versions.rb +1 -1
  96. data/lib/phcdevworks_scripts/engine.rb +47 -47
  97. data/lib/phcdevworks_scripts/version.rb +1 -1
  98. data/lib/phcdevworks_scripts.rb +6 -6
  99. data/lib/tasks/phcdevworks_scripts_tasks.rake +4 -4
  100. metadata +34 -85
  101. data/app/assets/stylesheets/phcdevworks_scripts/application.scss +0 -15
  102. data/app/assets/stylesheets/phcdevworks_scripts/script/authors.scss +0 -3
  103. data/app/assets/stylesheets/phcdevworks_scripts/script/extensions.scss +0 -3
  104. data/app/assets/stylesheets/phcdevworks_scripts/script/listings.scss +0 -3
  105. data/app/assets/stylesheets/phcdevworks_scripts/script/urls.scss +0 -3
  106. data/app/assets/stylesheets/phcdevworks_scripts/script/versions.scss +0 -3
  107. data/app/assets/stylesheets/phcdevworks_scripts/snippet/posts.scss +0 -3
  108. data/app/assets/stylesheets/phcdevworks_scripts/snippet/urls.scss +0 -3
@@ -1,80 +1,72 @@
1
- <!-- PHCTitleSEO Title Variables -->
1
+ <!-- -PHCDEV- Title Variables -->
2
2
  <% phc_title "Code Snippet Manager" %>
3
3
  <% phc_title_tagline "Update Asset Index" %>
4
4
  <% phc_breadcrumb_one yield(:phc_title_tagline) %>
5
5
  <% phc_breadcrumb_two link_to "Code Snippet Index", phcdevworks_scripts.snippet_posts_path %>
6
- <!-- PHCTitleSEO Title Variables -->
6
+ <!-- -PHCDEV- Title Variables -->
7
7
 
8
- <!-- Page Bradcrumbs -->
9
- <ol class="breadcrumb pull-right">
8
+ <!-- -PHCDEV- Bradcrumbs -->
9
+ <ol class="breadcrumb float-xl-end">
10
10
  <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
11
11
  <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_two) %></li>
12
12
  </ol>
13
- <!-- Page Bradcrumbs -->
13
+ <!-- -PHCDEV- Bradcrumbs -->
14
14
 
15
- <!-- Page Header -->
16
- <h2 class="page-header"><%= yield(:phc_title) %></h2>
17
- <!-- Page Header -->
15
+ <!-- -PHCDEV- Header -->
16
+ <h1 class="page-header"><%= yield(:phc_title) %></h1>
17
+ <!-- -PHCDEV- Header -->
18
18
 
19
- <!-- Page Content -->
20
- <div class="row">
21
- <div class="col-lg-12">
19
+ <!-- -PHCDEV- Panel -->
20
+ <div class="panel panel-inverse">
22
21
 
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>Script Url</th>
42
- <th></th>
43
- </tr>
44
- </thead>
22
+ <!-- -PHCDEV- Panel - Heading -->
23
+ <div class="panel-heading">
24
+ <h4 class="panel-title"><%= yield(:phc_title) %></h4>
25
+ </div>
26
+ <!-- -PHCDEV- Panel - Heading -->
45
27
 
46
- <tbody>
47
- <% @snippet_urls.each do |snippet_url| %>
48
- <tr>
49
- <td><%= snippet_url.snippet_url %></td>
50
- <td>
51
- <div class="btn-group d-flex" role="group">
52
- <%= link_to "URL Details", snippet_post_url_path(snippet_url.post, snippet_url), class: "btn btn-purple btn-xs" %>
53
- <%= link_to "Update URL", edit_snippet_post_url_path(snippet_url.post, snippet_url), class: "btn btn-primary btn-xs" %>
54
- <%= link_to "Remove URL", snippet_post_url_path(snippet_url.post, snippet_url), method: :delete, data: { confirm: "Are you sure? This action cannot be reversed." }, class: "btn btn-danger btn-xs" %>
55
- </div>
56
- </td>
57
- </tr>
58
- <% end %>
59
- </tbody>
28
+ <!-- -PHCDEV- Panel - Body -->
29
+ <div class="panel-body">
60
30
 
61
- </table>
62
- </div>
63
- <!-- Index - Table -->
31
+ <!-- -PHCDEV- Index - Table -->
32
+ <div class="table-responsive">
33
+ <table class="table table-striped table-bordered">
64
34
 
65
- <!-- New Button -->
66
- <%= link_to phcdevworks_scripts.new_snippet_post_url_path, class: "btn btn-primary btn-sm" do %>
67
- <i class="fad fa-plus-circle"></i>
68
- Add a New Script URL
69
- <% end %>
70
- <!-- New Button -->
35
+ <thead>
36
+ <tr>
37
+ <th>Script Url</th>
38
+ <th></th>
39
+ </tr>
40
+ </thead>
71
41
 
72
- </div>
73
- <!-- Panel - Body -->
42
+ <tbody>
43
+ <% @snippet_urls.each do |snippet_url| %>
44
+ <tr>
45
+ <td><%= snippet_url.snippet_url %></td>
46
+ <td>
47
+ <div class="btn-group d-flex" role="group">
48
+ <%= link_to "URL Details", snippet_post_url_path(snippet_url.post, snippet_url), class: "btn btn-purple btn-xs" %>
49
+ <%= link_to "Update URL", edit_snippet_post_url_path(snippet_url.post, snippet_url), class: "btn btn-primary btn-xs" %>
50
+ <%= link_to "Remove URL", snippet_post_url_path(snippet_url.post, snippet_url), method: :delete, data: { confirm: "Are you sure? This action cannot be reversed." }, class: "btn btn-danger btn-xs" %>
51
+ </div>
52
+ </td>
53
+ </tr>
54
+ <% end %>
55
+ </tbody>
74
56
 
57
+ </table>
75
58
  </div>
76
- <!-- Panel -->
59
+ <!-- -PHCDEV- Index - Table -->
60
+
61
+ <!-- -PHCDEV- New Button -->
62
+ <%= link_to phcdevworks_scripts.new_snippet_post_url_path, class: "btn btn-primary btn-sm" do %>
63
+ <i class="fad fa-plus-circle"></i>
64
+ Add a New Script URL
65
+ <% end %>
66
+ <!-- -PHCDEV- New Button -->
77
67
 
78
68
  </div>
69
+ <!-- -PHCDEV- Panel - Body -->
70
+
79
71
  </div>
80
- <!-- Page Content -->
72
+ <!-- -PHCDEV- Panel -->
@@ -1,47 +1,39 @@
1
- <!-- PHCTitleSEO Title Variables -->
1
+ <!-- -PHCDEV- Title Variables -->
2
2
  <% phc_title "Code Snippet Manager" %>
3
3
  <% phc_title_tagline "Create a New Asset URL" %>
4
4
  <% phc_breadcrumb_one link_to "Code Snippet Index", phcdevworks_scripts.snippet_posts_path %>
5
5
  <% phc_breadcrumb_two yield(:phc_title_tagline) %>
6
- <!-- PHCTitleSEO Title Variables -->
6
+ <!-- -PHCDEV- Title Variables -->
7
7
 
8
- <!-- Page Bradcrumbs -->
9
- <ol class="breadcrumb pull-right">
8
+ <!-- -PHCDEV- Bradcrumbs -->
9
+ <ol class="breadcrumb float-xl-end">
10
10
  <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
11
11
  <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_two) %></li>
12
12
  </ol>
13
- <!-- Page Bradcrumbs -->
13
+ <!-- -PHCDEV- Bradcrumbs -->
14
14
 
15
- <!-- Page Header -->
16
- <h2 class="page-header"><%= yield(:phc_title) %></h2>
17
- <!-- Page Header -->
15
+ <!-- -PHCDEV- Header -->
16
+ <h1 class="page-header"><%= yield(:phc_title) %></h1>
17
+ <!-- -PHCDEV- Header -->
18
18
 
19
- <!-- Page Content -->
20
- <div class="row">
21
- <div class="col-lg-12">
19
+ <!-- -PHCDEV- Panel -->
20
+ <div class="panel panel-inverse">
22
21
 
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
- <!-- New Form -->
36
- <%= render "form", { form_url: snippet_post_urls_path } %>
37
- <!-- New Form -->
22
+ <!-- -PHCDEV- Panel - Heading -->
23
+ <div class="panel-heading">
24
+ <h4 class="panel-title"><%= yield(:phc_title) %></h4>
25
+ </div>
26
+ <!-- -PHCDEV- Panel - Heading -->
38
27
 
39
- </div>
40
- <!-- Panel - Body -->
28
+ <!-- -PHCDEV- Panel - Body -->
29
+ <div class="panel-body">
41
30
 
42
- </div>
43
- <!-- Panel -->
31
+ <!-- -PHCDEV- New Form -->
32
+ <%= render "form", { form_url: snippet_post_urls_path } %>
33
+ <!-- -PHCDEV- New Form -->
44
34
 
45
35
  </div>
36
+ <!-- -PHCDEV- Panel - Body -->
37
+
46
38
  </div>
47
- <!-- Page Content -->
39
+ <!-- -PHCDEV- Panel -->
@@ -1,51 +1,51 @@
1
- <!-- Title System -->
1
+ <!-- -PHCDEV- Title System -->
2
2
  <% phc_title "Code Snippet Manager" %>
3
3
  <% phc_title_tagline "Asset URL Details" %>
4
4
  <% phc_breadcrumb_one link_to "Code Snippet Index", phcdevworks_scripts.snippet_posts_path %>
5
5
  <% phc_breadcrumb_two yield(:phc_title_tagline) %>
6
- <!-- Title System -->
6
+ <!-- -PHCDEV- Title System -->
7
7
 
8
- <!-- Page Bradcrumbs -->
9
- <ol class="breadcrumb pull-right">
8
+ <!-- -PHCDEV- Bradcrumbs -->
9
+ <ol class="breadcrumb float-xl-end">
10
10
  <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
11
11
  <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_two) %></li>
12
12
  </ol>
13
- <!-- Page Bradcrumbs -->
13
+ <!-- -PHCDEV- Bradcrumbs -->
14
14
 
15
- <!-- Page Header -->
15
+ <!-- -PHCDEV- Header -->
16
16
  <h1 class="page-header"><%= yield(:phc_title) %></h1>
17
- <!-- Page Header -->
17
+ <!-- -PHCDEV- Header -->
18
18
 
19
- <!-- Page Content -->
19
+ <!-- -PHCDEV- Page Content -->
20
20
  <div class="row">
21
21
 
22
- <!-- Button Area -->
22
+ <!-- -PHCDEV- Button Area -->
23
23
  <div class="col-lg-4">
24
- <!-- Button Panel -->
24
+ <!-- -PHCDEV- Button Panel -->
25
25
  <div class="panel panel-inverse">
26
- <!-- Panel Heading -->
26
+ <!-- -PHCDEV- Panel Heading -->
27
27
  <div class="panel-heading">
28
28
  <h4 class="panel-title">Options Panel</h4>
29
29
  </div>
30
- <!-- Panel Heading -->
31
- <!-- Panel Body -->
30
+ <!-- -PHCDEV- Panel Heading -->
31
+ <!-- -PHCDEV- Panel Body -->
32
32
  <div class="panel-body">
33
33
  <div class="btn-group d-flex" role="group">
34
34
  <%= link_to 'Update', phcdevworks_scripts.edit_snippet_post_url_path, class: "btn btn-primary" %>
35
35
  <%= link_to 'Remove', phcdevworks_scripts.snippet_post_urls_path, method: :delete, data: { confirm: 'Are you sure?' }, class: "btn btn-danger" %>
36
36
  </div>
37
37
  </div>
38
- <!-- Panel Body -->
38
+ <!-- -PHCDEV- Panel Body -->
39
39
  </div>
40
- <!-- Button Panel -->
40
+ <!-- -PHCDEV- Button Panel -->
41
41
  </div>
42
- <!-- Button Area -->
42
+ <!-- -PHCDEV- Button Area -->
43
43
 
44
- <!-- Main Area -->
44
+ <!-- -PHCDEV- Main Area -->
45
45
  <div class="col-lg-8">
46
- <!-- Main Panel -->
46
+ <!-- -PHCDEV- Main Panel -->
47
47
  <div class="panel panel-inverse">
48
- <!-- Panel Heading -->
48
+ <!-- -PHCDEV- Panel Heading -->
49
49
  <div class="panel-heading">
50
50
  <div class="panel-heading-btn">
51
51
  <a href="javascript:;" class="btn btn-xs btn-icon btn-circle btn-default" data-click="panel-expand"><i class="fa fa-expand"></i></a>
@@ -54,18 +54,18 @@
54
54
  </div>
55
55
  <h4 class="panel-title"><%= yield(:phc_title_tagline) %></h4>
56
56
  </div>
57
- <!-- Panel Heading -->
58
- <!-- Panel Body -->
57
+ <!-- -PHCDEV- Panel Heading -->
58
+ <!-- -PHCDEV- Panel Body -->
59
59
  <div class="panel-body">
60
60
  <p class="h3">Script Snippet URL</p>
61
61
  <hr>
62
62
  <pre><code><%= @snippet_url.snippet_url %></code></pre>
63
63
  </div>
64
- <!-- Panel Body -->
64
+ <!-- -PHCDEV- Panel Body -->
65
65
  </div>
66
- <!-- Main Panel -->
66
+ <!-- -PHCDEV- Main Panel -->
67
67
  </div>
68
- <!-- Main Area -->
68
+ <!-- -PHCDEV- Main Area -->
69
69
 
70
70
  </div>
71
- <!-- Page Content -->
71
+ <!-- -PHCDEV- Page Content -->
data/config/routes.rb CHANGED
@@ -26,8 +26,4 @@ PhcdevworksScripts::Engine.routes.draw do
26
26
  end
27
27
  end
28
28
 
29
- # Mount Routes
30
- mount PhcdevworksAccounts::Engine, :at => '/'
31
- mount PhcdevworksCoreModules::Engine, :at => '/'
32
-
33
29
  end
data/config/spring.rb CHANGED
File without changes
@@ -1,4 +1,4 @@
1
- class CreatePhcdevworksScriptsScriptExtensionVersions < ActiveRecord::Migration[6.0]
1
+ class CreatePhcdevworksScriptsScriptExtensionVersions < ActiveRecord::Migration[7.0]
2
2
  TEXT_BYTES = 1_073_741_823
3
3
  def change
4
4
  create_table :phcdevworks_scripts_script_extension_versions do |t|
@@ -1,4 +1,4 @@
1
- class CreatePhcdevworksScriptsScriptListingVersions < ActiveRecord::Migration[6.0]
1
+ class CreatePhcdevworksScriptsScriptListingVersions < ActiveRecord::Migration[7.0]
2
2
  TEXT_BYTES = 1_073_741_823
3
3
  def change
4
4
  create_table :phcdevworks_scripts_script_listing_versions do |t|
@@ -1,4 +1,4 @@
1
- class CreatePhcdevworksScriptsScriptVersionVersions < ActiveRecord::Migration[6.0]
1
+ class CreatePhcdevworksScriptsScriptVersionVersions < ActiveRecord::Migration[7.0]
2
2
  TEXT_BYTES = 1_073_741_823
3
3
  def change
4
4
  create_table :phcdevworks_scripts_script_version_versions do |t|
@@ -1,4 +1,4 @@
1
- class CreatePhcdevworksScriptsScriptUrlVersions < ActiveRecord::Migration[6.0]
1
+ class CreatePhcdevworksScriptsScriptUrlVersions < ActiveRecord::Migration[7.0]
2
2
  TEXT_BYTES = 1_073_741_823
3
3
  def change
4
4
  create_table :phcdevworks_scripts_script_url_versions do |t|
@@ -1,4 +1,4 @@
1
- class CreatePhcdevworksScriptsScriptAuthorVersions < ActiveRecord::Migration[6.0]
1
+ class CreatePhcdevworksScriptsScriptAuthorVersions < ActiveRecord::Migration[7.0]
2
2
  TEXT_BYTES = 1_073_741_823
3
3
  def change
4
4
  create_table :phcdevworks_scripts_script_author_versions do |t|
@@ -1,4 +1,4 @@
1
- class CreatePhcdevworksScriptsSnippetPosts < ActiveRecord::Migration[6.0]
1
+ class CreatePhcdevworksScriptsSnippetPosts < ActiveRecord::Migration[7.0]
2
2
  def change
3
3
  create_table :phcdevworks_scripts_snippet_posts do |t|
4
4
 
@@ -1,4 +1,4 @@
1
- class CreatePhcdevworksScriptsSnippetUrls < ActiveRecord::Migration[6.0]
1
+ class CreatePhcdevworksScriptsSnippetUrls < ActiveRecord::Migration[7.0]
2
2
  def change
3
3
  create_table :phcdevworks_scripts_snippet_urls do |t|
4
4
 
@@ -1,4 +1,4 @@
1
- class CreatePhcdevworksScriptsScriptAuthors < ActiveRecord::Migration[6.0]
1
+ class CreatePhcdevworksScriptsScriptAuthors < ActiveRecord::Migration[7.0]
2
2
  def change
3
3
  create_table :phcdevworks_scripts_script_authors do |t|
4
4
 
@@ -1,4 +1,4 @@
1
- class CreatePhcdevworksScriptsScriptListings < ActiveRecord::Migration[6.0]
1
+ class CreatePhcdevworksScriptsScriptListings < ActiveRecord::Migration[7.0]
2
2
  def change
3
3
  create_table :phcdevworks_scripts_script_listings do |t|
4
4
 
@@ -1,4 +1,4 @@
1
- class CreatePhcdevworksScriptsScriptExtensions < ActiveRecord::Migration[6.0]
1
+ class CreatePhcdevworksScriptsScriptExtensions < ActiveRecord::Migration[7.0]
2
2
  def change
3
3
  create_table :phcdevworks_scripts_script_extensions do |t|
4
4
 
@@ -1,4 +1,4 @@
1
- class CreatePhcdevworksScriptsScriptUrls < ActiveRecord::Migration[6.0]
1
+ class CreatePhcdevworksScriptsScriptUrls < ActiveRecord::Migration[7.0]
2
2
  def change
3
3
  create_table :phcdevworks_scripts_script_urls do |t|
4
4
 
@@ -1,4 +1,4 @@
1
- class CreatePhcdevworksScriptsScriptVersions < ActiveRecord::Migration[6.0]
1
+ class CreatePhcdevworksScriptsScriptVersions < ActiveRecord::Migration[7.0]
2
2
  def change
3
3
  create_table :phcdevworks_scripts_script_versions do |t|
4
4
 
@@ -1,4 +1,4 @@
1
- class CreatePhcdevworksScriptsSnippetUrlVersions < ActiveRecord::Migration[6.0]
1
+ class CreatePhcdevworksScriptsSnippetUrlVersions < ActiveRecord::Migration[7.0]
2
2
  TEXT_BYTES = 1_073_741_823
3
3
  def change
4
4
  create_table :phcdevworks_scripts_snippet_url_versions do |t|
@@ -1,4 +1,4 @@
1
- class CreatePhcdevworksScriptsSnippetPostVersions < ActiveRecord::Migration[6.0]
1
+ class CreatePhcdevworksScriptsSnippetPostVersions < ActiveRecord::Migration[7.0]
2
2
  TEXT_BYTES = 1_073_741_823
3
3
  def change
4
4
  create_table :phcdevworks_scripts_snippet_post_versions do |t|
@@ -1,47 +1,47 @@
1
- module PhcdevworksScripts
2
- class Engine < ::Rails::Engine
3
-
4
- # Load Main Dependencies
5
- require "jbuilder"
6
- require "paper_trail"
7
- require "friendly_id"
8
-
9
- # Load Theme Dependencies
10
- require "phcthemes_admin_panel_pack"
11
- require "phcthemes_web_theme_pack"
12
-
13
- # Load Helper Dependencies
14
- require "phcdevworks_core"
15
- require "phcdevworks_active_menus"
16
- require "phcdevworks_notifications"
17
- require "phcdevworks_titleseo"
18
-
19
- # Load Upload Dependencies
20
- require "aws-sdk-s3"
21
- require "google-cloud-storage"
22
- require "mini_magick"
23
-
24
- # Frontend Dependencies
25
- require "wicked"
26
- require "gravtastic"
27
- require "friendly_id"
28
-
29
- # Mailer Dependencies
30
- require "mail_form"
31
-
32
- # Load Required PHC Plugins
33
- require "phcdevworks_accounts"
34
- require "phcdevworks_core_modules"
35
-
36
- # Engine Namespace
37
- isolate_namespace PhcdevworksScripts
38
-
39
- # Rspec Generators
40
- config.generators do |g|
41
- g.test_framework :rspec
42
- g.fixture_replacement :factory_bot
43
- g.factory_bot dir: 'spec/factories'
44
- end
45
-
46
- end
47
- end
1
+ module PhcdevworksScripts
2
+ class Engine < ::Rails::Engine
3
+
4
+ # Load Main Dependencies
5
+ require "jbuilder"
6
+ require "paper_trail"
7
+ require "friendly_id"
8
+
9
+ # Load Theme Dependencies
10
+ require "phcthemes_admin_panel_pack"
11
+ require "phcthemes_web_theme_pack"
12
+
13
+ # Load Helper Dependencies
14
+ require "phcdevworks_core"
15
+ require "phcdevworks_active_menus"
16
+ require "phcdevworks_notifications"
17
+ require "phcdevworks_titleseo"
18
+
19
+ # Load Upload Dependencies
20
+ require "aws-sdk-s3"
21
+ require "google-cloud-storage"
22
+ require "mini_magick"
23
+
24
+ # Frontend Dependencies
25
+ require "wicked"
26
+ require "gravtastic"
27
+ require "friendly_id"
28
+
29
+ # Mailer Dependencies
30
+ require "mail_form"
31
+
32
+ # PHCDevworks Plugins
33
+ require "phcdevworks_core_modules"
34
+
35
+ # Engine Namespace
36
+ isolate_namespace PhcdevworksScripts
37
+
38
+ # Rspec Generators
39
+ config.generators do |g|
40
+ g.test_framework :rspec
41
+ g.fixture_replacement :factory_bot
42
+ g.factory_bot dir: 'spec/factories'
43
+ g.factory_bot suffix: "factory"
44
+ end
45
+
46
+ end
47
+ end
@@ -1,3 +1,3 @@
1
1
  module PhcdevworksScripts
2
- VERSION = "8.2.0"
2
+ VERSION = "9.0.2"
3
3
  end
@@ -1,6 +1,6 @@
1
- require "phcdevworks_scripts/version"
2
- require "phcdevworks_scripts/engine"
3
-
4
- module PhcdevworksScripts
5
- # Your code goes here...
6
- end
1
+ require "phcdevworks_scripts/version"
2
+ require "phcdevworks_scripts/engine"
3
+
4
+ module PhcdevworksScripts
5
+ # Your code goes here...
6
+ end
@@ -1,4 +1,4 @@
1
- # desc "Explaining what the task does"
2
- # task :phcdevworks_scripts do
3
- # # Task goes here
4
- # end
1
+ # desc "Explaining what the task does"
2
+ # task :phcdevworks_scripts do
3
+ # # Task goes here
4
+ # end