rails_app_generator 0.2.0 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (224) hide show
  1. checksums.yaml +4 -4
  2. data/.builders/generators/project-plan.rb +6 -3
  3. data/CHANGELOG.md +28 -0
  4. data/after_templates/addons/dotenv/_.rb +21 -0
  5. data/after_templates/addons/dotenv/app/controllers/home_controller.rb +7 -0
  6. data/after_templates/addons/dotenv/app/views/home/index.html.erb +10 -0
  7. data/after_templates/addons/dotenv/app/views/layouts/application.html.erb +19 -0
  8. data/after_templates/addons/rubocop/_.rb +29 -0
  9. data/after_templates/addons/rubocop/app/assets/images/cop-output.png +0 -0
  10. data/after_templates/addons/rubocop/app/controllers/home_controller.rb +21 -0
  11. data/after_templates/addons/rubocop/app/views/home/index.html.erb +46 -0
  12. data/after_templates/addons/rubocop/app/views/layouts/application.html.erb +19 -0
  13. data/after_templates/application/printspeak/_.rb +55 -0
  14. data/after_templates/{rag_tailwind/component-section-begin.html → application/printspeak/app/assets/images/.keep} +0 -0
  15. data/after_templates/application/printspeak/app/assets/images/about/1.jpg +0 -0
  16. data/after_templates/application/printspeak/app/assets/images/about/2.jpg +0 -0
  17. data/after_templates/application/printspeak/app/assets/images/about/3.jpg +0 -0
  18. data/after_templates/application/printspeak/app/assets/images/about/4.jpg +0 -0
  19. data/after_templates/application/printspeak/app/assets/images/close-icon.svg +1 -0
  20. data/after_templates/application/printspeak/app/assets/images/header-bg.jpg +0 -0
  21. data/after_templates/application/printspeak/app/assets/images/logos/facebook.svg +34 -0
  22. data/after_templates/application/printspeak/app/assets/images/logos/google.svg +35 -0
  23. data/after_templates/application/printspeak/app/assets/images/logos/ibm.svg +24 -0
  24. data/after_templates/application/printspeak/app/assets/images/logos/microsoft.svg +42 -0
  25. data/after_templates/application/printspeak/app/assets/images/map-image.png +0 -0
  26. data/after_templates/application/printspeak/app/assets/images/navbar-logo.svg +1 -0
  27. data/after_templates/application/printspeak/app/assets/images/portfolio/1.jpg +0 -0
  28. data/after_templates/application/printspeak/app/assets/images/portfolio/2.jpg +0 -0
  29. data/after_templates/application/printspeak/app/assets/images/portfolio/3.jpg +0 -0
  30. data/after_templates/application/printspeak/app/assets/images/portfolio/4.jpg +0 -0
  31. data/after_templates/application/printspeak/app/assets/images/portfolio/5.jpg +0 -0
  32. data/after_templates/application/printspeak/app/assets/images/portfolio/6.jpg +0 -0
  33. data/after_templates/application/printspeak/app/assets/images/portfolio/alphagraphics.jpeg +0 -0
  34. data/after_templates/application/printspeak/app/assets/images/portfolio/brochure-transformed.jpeg +0 -0
  35. data/after_templates/application/printspeak/app/assets/images/portfolio/brochure.jpeg +0 -0
  36. data/after_templates/application/printspeak/app/assets/images/portfolio/kwikkopy.png +0 -0
  37. data/after_templates/application/printspeak/app/assets/images/portfolio/kwikkopy2.png +0 -0
  38. data/after_templates/application/printspeak/app/assets/images/printspeak-logo.svg +19 -0
  39. data/after_templates/application/printspeak/app/assets/images/team/1.jpg +0 -0
  40. data/after_templates/application/printspeak/app/assets/images/team/2.jpg +0 -0
  41. data/after_templates/application/printspeak/app/assets/images/team/3.jpg +0 -0
  42. data/after_templates/application/printspeak/app/assets/stylesheets/application.bootstrap.scss +3 -0
  43. data/after_templates/application/printspeak/app/assets/stylesheets/home/_global.scss +52 -0
  44. data/after_templates/application/printspeak/app/assets/stylesheets/home/_variables.scss +8 -0
  45. data/after_templates/application/printspeak/app/assets/stylesheets/home/components/_buttons.scss +24 -0
  46. data/after_templates/application/printspeak/app/assets/stylesheets/home/components/_navbar.scss +92 -0
  47. data/after_templates/application/printspeak/app/assets/stylesheets/home/sections/_contact.scss +71 -0
  48. data/after_templates/application/printspeak/app/assets/stylesheets/home/sections/_footer.scss +9 -0
  49. data/after_templates/application/printspeak/app/assets/stylesheets/home/sections/_masthead.scss +52 -0
  50. data/after_templates/application/printspeak/app/assets/stylesheets/home/sections/_portfolio.scss +108 -0
  51. data/after_templates/application/printspeak/app/assets/stylesheets/home/sections/_team.scss +24 -0
  52. data/after_templates/application/printspeak/app/assets/stylesheets/home/sections/_timeline.scss +214 -0
  53. data/after_templates/application/printspeak/app/assets/stylesheets/home/styles.scss +24 -0
  54. data/after_templates/application/printspeak/app/assets/stylesheets/home/variables/_colors.scss +15 -0
  55. data/after_templates/application/printspeak/app/assets/stylesheets/home/variables/_typography.scss +54 -0
  56. data/after_templates/application/printspeak/app/controllers/home_controller.rb +7 -0
  57. data/after_templates/application/printspeak/app/views/home/_modal.erb +23 -0
  58. data/after_templates/application/printspeak/app/views/home/index.html.erb +321 -0
  59. data/after_templates/application/printspeak/app/views/layouts/_alerts.html.erb +2 -0
  60. data/after_templates/application/printspeak/app/views/layouts/_footer.html.erb +16 -0
  61. data/after_templates/application/printspeak/app/views/layouts/_navbar.html.erb +14 -0
  62. data/after_templates/application/printspeak/app/views/layouts/application.html.erb +29 -0
  63. data/after_templates/{rag_printspeak → application/printspeak/app/views}/page/_footer.html.erb +0 -0
  64. data/after_templates/{rag_printspeak → application/printspeak/app/views}/page/architecture.html.erb +0 -0
  65. data/after_templates/{rag_printspeak → application/printspeak/app/views}/page/blog.html.erb +0 -0
  66. data/after_templates/{rag_printspeak → application/printspeak/app/views}/page/faq.html.erb +0 -0
  67. data/after_templates/application/printspeak/app/views/page/page_controller.rb +27 -0
  68. data/after_templates/{rag_printspeak → application/printspeak/app/views}/page/readme.html.erb +0 -0
  69. data/after_templates/application/printspeak/db/seeds.rb +16 -0
  70. data/after_templates/printspeak_bak/_.rb +36 -0
  71. data/after_templates/{rag_printspeak → printspeak_bak}/application_controller.rb +0 -0
  72. data/after_templates/{rag_printspeak → printspeak_bak}/faq.html.erb +0 -0
  73. data/after_templates/{rag_printspeak → printspeak_bak}/layouts/_footer.html.erb +0 -0
  74. data/after_templates/{rag_printspeak → printspeak_bak}/layouts/_head.html.erb +0 -0
  75. data/after_templates/{rag_printspeak → printspeak_bak}/layouts/_navbar.html.erb +0 -0
  76. data/after_templates/{rag_printspeak → printspeak_bak}/layouts/application.html.erb +0 -0
  77. data/after_templates/printspeak_bak/page/_footer.html.erb +184 -0
  78. data/after_templates/printspeak_bak/page/architecture.html.erb +33 -0
  79. data/after_templates/printspeak_bak/page/blog.html.erb +44 -0
  80. data/after_templates/printspeak_bak/page/faq.html.erb +2 -0
  81. data/after_templates/{rag_printspeak → printspeak_bak}/page/home.html.erb +0 -0
  82. data/after_templates/{rag_printspeak → printspeak_bak}/page/page_controller.rb +0 -0
  83. data/after_templates/printspeak_bak/page/readme.html.erb +49 -0
  84. data/after_templates/{rag_bootstrap.rb → rag/bootstrap/_.rb} +1 -1
  85. data/after_templates/{rag_bootstrap → rag/bootstrap}/application-yield.html.erb +0 -0
  86. data/after_templates/{rag_bootstrap → rag/bootstrap}/application.html.erb +0 -0
  87. data/after_templates/{rag_bootstrap → rag/bootstrap}/component-cards-fancy.css +0 -0
  88. data/after_templates/{rag_bootstrap → rag/bootstrap}/component-cards-fancy.html +0 -0
  89. data/after_templates/{rag_bootstrap → rag/bootstrap}/component-cards-staff.css +0 -0
  90. data/after_templates/{rag_bootstrap → rag/bootstrap}/component-cards-staff.html +0 -0
  91. data/after_templates/{rag_bootstrap → rag/bootstrap}/component-cards-styled.html +0 -0
  92. data/after_templates/{rag_bootstrap → rag/bootstrap}/component-footer.html +0 -0
  93. data/after_templates/{rag_bootstrap → rag/bootstrap}/component-hero.html +0 -0
  94. data/after_templates/{rag_bootstrap → rag/bootstrap}/component-modal.html +0 -0
  95. data/after_templates/{rag_bootstrap → rag/bootstrap}/component-nav.html +0 -0
  96. data/after_templates/{rag_bootstrap → rag/bootstrap}/custom-bootstrap-import.scss +0 -0
  97. data/after_templates/{rag_bootstrap → rag/bootstrap}/custom-using-css.css +0 -0
  98. data/after_templates/{rag_bootstrap → rag/bootstrap}/custom-using-scss.scss +0 -0
  99. data/after_templates/{rag_bootstrap → rag/bootstrap}/manifest.js +0 -0
  100. data/after_templates/{rag_devise.rb → rag/devise/_.rb} +1 -1
  101. data/after_templates/{rag_devise → rag/devise}/application.html.erb +0 -0
  102. data/after_templates/{rag_devise → rag/devise}/application_controller.rb +0 -0
  103. data/after_templates/{rag_devise → rag/devise}/config/initializers/devise_turbo.rb +0 -0
  104. data/after_templates/{rag_devise → rag/devise}/layouts/_alerts.html.erb +0 -0
  105. data/after_templates/{rag_devise → rag/devise}/layouts/_footer.html.erb +0 -0
  106. data/after_templates/{rag_devise → rag/devise}/layouts/_navbar.html.erb +0 -0
  107. data/after_templates/{rag_devise → rag/devise}/layouts/application.html.erb +0 -0
  108. data/after_templates/{rag_devise → rag/devise}/post/_post.html.erb +0 -0
  109. data/after_templates/{rag_devise → rag/devise}/post/post.rb +0 -0
  110. data/after_templates/{rag_devise → rag/devise}/post/posts_controller.rb +0 -0
  111. data/after_templates/{rag_devise → rag/devise}/seed_data.rb +0 -0
  112. data/after_templates/{rag_devise → rag/devise}/turbo_controller.rb +0 -0
  113. data/after_templates/{rag_devise → rag/devise}/user.rb +0 -0
  114. data/after_templates/{rag_import_map.rb → rag/import_map/_.rb} +1 -1
  115. data/after_templates/{rag_import_map → rag/import_map}/component-sortable.html +0 -0
  116. data/after_templates/{rag_import_map → rag/import_map}/home.css +0 -0
  117. data/after_templates/{rag_import_map → rag/import_map}/position_controller.js +0 -0
  118. data/after_templates/{rag_simple.rb → rag/simple/_.rb} +1 -1
  119. data/after_templates/{rag_tailwind.rb → rag/tailwind/_.rb} +1 -1
  120. data/after_templates/{rag_tailwind → rag/tailwind}/component-cta.html +0 -0
  121. data/after_templates/{rag_tailwind → rag/tailwind}/component-faq.html +0 -0
  122. data/after_templates/{rag_tailwind → rag/tailwind}/component-footer.html +0 -0
  123. data/after_templates/{rag_tailwind → rag/tailwind}/component-hero.html +0 -0
  124. data/after_templates/{rag_tailwind → rag/tailwind}/component-nav.html +0 -0
  125. data/after_templates/{rag_tailwind/component-section-end.html → rag/tailwind/component-section-begin.html} +0 -0
  126. data/after_templates/{rag_tailwind_emulating_bootstrap/home/index.html.erb → rag/tailwind/component-section-end.html} +0 -0
  127. data/after_templates/{rag_tailwind_daisyui.rb → rag/tailwind_daisyui/_.rb} +1 -1
  128. data/after_templates/{rag_tailwind_daisyui → rag/tailwind_daisyui}/index.html.erb +0 -0
  129. data/after_templates/{rag_tailwind_emulating_bootstrap → rag/tailwind_emulating_bootstrap}/Procfile.dev +0 -0
  130. data/after_templates/{rag_tailwind_emulating_bootstrap.rb → rag/tailwind_emulating_bootstrap/_.rb} +1 -1
  131. data/after_templates/{rag_tailwind_emulating_bootstrap → rag/tailwind_emulating_bootstrap}/application.html.erb +0 -0
  132. data/after_templates/{rag_tailwind_emulating_bootstrap → rag/tailwind_emulating_bootstrap}/application.tailwind.css +0 -0
  133. data/after_templates/{rag_tailwind_emulating_bootstrap → rag/tailwind_emulating_bootstrap}/application_controller.rb +0 -0
  134. data/after_templates/{rag_tailwind_emulating_bootstrap → rag/tailwind_emulating_bootstrap}/home/_example.html.erb +0 -0
  135. data/after_templates/{rag_tailwind_emulating_bootstrap → rag/tailwind_emulating_bootstrap}/home/bootstrap.html.erb +0 -0
  136. data/after_templates/{rag_tailwind_emulating_bootstrap → rag/tailwind_emulating_bootstrap}/home/home_controller.rb +0 -0
  137. data/after_templates/rag/tailwind_emulating_bootstrap/home/index.html.erb +0 -0
  138. data/after_templates/{rag_tailwind_emulating_bootstrap → rag/tailwind_emulating_bootstrap}/home/tailwind.html.erb +0 -0
  139. data/after_templates/{rag_tailwind_hotwire.rb → rag/tailwind_hotwire/_.rb} +1 -1
  140. data/after_templates/{rag_tailwind_hotwire → rag/tailwind_hotwire}/home/controller.rb +0 -0
  141. data/after_templates/{rag_tailwind_hotwire → rag/tailwind_hotwire}/home/helper.rb +0 -0
  142. data/after_templates/{rag_tailwind_hotwire → rag/tailwind_hotwire}/home/increment.html.erb +0 -0
  143. data/after_templates/{rag_tailwind_hotwire → rag/tailwind_hotwire}/home/index.html +0 -0
  144. data/after_templates/{rag_tailwind_hotwire_flash.rb → rag/tailwind_hotwire_flash/_.rb} +1 -1
  145. data/after_templates/{rag_tailwind_hotwire_form.rb → rag/tailwind_hotwire_form/_.rb} +1 -1
  146. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/_contact.html.erb +0 -0
  147. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/_count.html.erb +0 -0
  148. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/_flash.html.erb +0 -0
  149. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/_form.html.erb +0 -0
  150. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/_list.html.erb +0 -0
  151. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/application.html.erb +0 -0
  152. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/application.js +0 -0
  153. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/application.tailwind.css +0 -0
  154. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/application_helper.rb +0 -0
  155. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/contact.rb +0 -0
  156. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/contacts_controller.rb +0 -0
  157. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/create.turbo_stream.erb +0 -0
  158. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/edit.html.erb +0 -0
  159. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/index.html.erb +0 -0
  160. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/new.html.erb +0 -0
  161. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/show.html.erb +0 -0
  162. data/after_templates/{rag_tailwind_hotwire_form → rag/tailwind_hotwire_form}/update.turbo_stream.erb +0 -0
  163. data/after_templates/{rag_tailwind_hotwire_form_search.rb → rag/tailwind_hotwire_form_search/_.rb} +1 -3
  164. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/_contact.html.erb +0 -0
  165. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/_count.html.erb +0 -0
  166. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/_flash.html.erb +0 -0
  167. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/_form.html.erb +0 -0
  168. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/_list.html.erb +0 -0
  169. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/_theme_changer.html.erb +0 -0
  170. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/application.html.erb +0 -0
  171. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/application.js +0 -0
  172. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/application.tailwind.css +0 -0
  173. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/application_helper.rb +0 -0
  174. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/contact.rb +0 -0
  175. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/contacts_controller.rb +0 -0
  176. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/create.turbo_stream.erb +0 -0
  177. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/edit.html.erb +0 -0
  178. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/index.html.erb +0 -0
  179. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/new.html.erb +0 -0
  180. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/search_controller.js +0 -0
  181. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/show.html.erb +0 -0
  182. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/theme_changer_controller.js +0 -0
  183. data/after_templates/{rag_tailwind_hotwire_form_search → rag/tailwind_hotwire_form_search}/update.turbo_stream.erb +0 -0
  184. data/docs/last_run/app_generator_class.json +40 -0
  185. data/docs/last_run/app_generator_data.json +8 -2
  186. data/docs/last_run/rails_options_class.json +40 -0
  187. data/docs/last_run/rails_options_data.json +8 -2
  188. data/docs/project-plan/project.drawio +49 -46
  189. data/docs/project-plan/project_todo.svg +1 -1
  190. data/lib/rails_app_generator/addons/annotate.rb +0 -3
  191. data/lib/rails_app_generator/addons/continuous_integration.rb +1 -0
  192. data/lib/rails_app_generator/addons/devise.rb +1 -0
  193. data/lib/rails_app_generator/addons/docker_compose.rb +1 -0
  194. data/lib/rails_app_generator/addons/dotenv.rb +2 -0
  195. data/lib/rails_app_generator/addons/factory_bot.rb +1 -0
  196. data/lib/rails_app_generator/addons/foreman.rb +1 -0
  197. data/lib/rails_app_generator/addons/rubocop.rb +4 -0
  198. data/lib/rails_app_generator/app_generator.rb +0 -5
  199. data/lib/rails_app_generator/rag_initializer.rb +77 -75
  200. data/lib/rails_app_generator/version.rb +1 -1
  201. data/package-lock.json +2 -2
  202. data/package.json +1 -1
  203. data/profiles/addons/dotenv.json +12 -0
  204. data/profiles/addons/rubocop.json +12 -0
  205. data/profiles/{rag-printspeak.json → application/printspeak.json} +4 -2
  206. data/profiles/{rag-bootstrap.json → rag/bootstrap.json} +1 -1
  207. data/profiles/{rag-devise.json → rag/devise.json} +1 -1
  208. data/profiles/{rag-import-map.json → rag/import-map.json} +1 -1
  209. data/profiles/{rag-simple.json → rag/simple.json} +3 -2
  210. data/profiles/{rag-tailwind-daisyui.json → rag/tailwind-daisyui.json} +1 -1
  211. data/profiles/{rag-tailwind-emulating-bootstrap.json → rag/tailwind-emulating-bootstrap.json} +2 -3
  212. data/profiles/{rag-tailwind-hotwire-flash.json → rag/tailwind-hotwire-flash.json} +1 -1
  213. data/profiles/{rag-tailwind-hotwire-form-search.json → rag/tailwind-hotwire-form-search.json} +1 -1
  214. data/profiles/{rag-tailwind-hotwire-form.json → rag/tailwind-hotwire-form.json} +1 -1
  215. data/profiles/{rag-tailwind-hotwire.json → rag/tailwind-hotwire.json} +1 -1
  216. data/profiles/{rag-tailwind.json → rag/tailwind.json} +3 -2
  217. data/tasks/profile.thor +1 -1
  218. data/templates/addons/rubocop/.rubocop.yml.erb +5 -2
  219. data/templates/thor_task/addon/addon.tt +1 -1
  220. data/templates/thor_task/profile/after_template.rb +1 -0
  221. metadata +196 -130
  222. data/after_templates/rag_printspeak.rb +0 -36
  223. data/profiles/rag-add-some-pages.json +0 -11
  224. data/profiles/rag-sample.json +0 -13
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_app_generator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Cruwys
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-08-08 00:00:00.000000000 Z
11
+ date: 2022-08-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bootsnap
@@ -202,6 +202,10 @@ files:
202
202
  - after_templates/addons/chartkick/app/views/people/_person.html.erb
203
203
  - after_templates/addons/chartkick/config/initializers/chartkick.rb
204
204
  - after_templates/addons/chartkick/db/seeds.rb
205
+ - after_templates/addons/dotenv/_.rb
206
+ - after_templates/addons/dotenv/app/controllers/home_controller.rb
207
+ - after_templates/addons/dotenv/app/views/home/index.html.erb
208
+ - after_templates/addons/dotenv/app/views/layouts/application.html.erb
205
209
  - after_templates/addons/faker/_.rb
206
210
  - after_templates/addons/faker/app/controllers/home_controller.rb
207
211
  - after_templates/addons/faker/app/views/home/index.html.erb
@@ -244,124 +248,186 @@ files:
244
248
  - after_templates/addons/mini_magick/app/views/layouts/application.html.erb
245
249
  - after_templates/addons/rails_html_sanitizer/_.rb
246
250
  - after_templates/addons/rails_html_sanitizer/home/index.html.erb
251
+ - after_templates/addons/rubocop/_.rb
252
+ - after_templates/addons/rubocop/app/assets/images/cop-output.png
253
+ - after_templates/addons/rubocop/app/controllers/home_controller.rb
254
+ - after_templates/addons/rubocop/app/views/home/index.html.erb
255
+ - after_templates/addons/rubocop/app/views/layouts/application.html.erb
247
256
  - after_templates/addons/twilio_ruby/_.rb
248
257
  - after_templates/addons/twilio_ruby/app/controllers/home_controller.rb
249
258
  - after_templates/addons/twilio_ruby/app/views/home/index.html.erb
250
259
  - after_templates/addons/twilio_ruby/config/initializers/twilio.rb
251
- - after_templates/rag_bootstrap.rb
252
- - after_templates/rag_bootstrap/application-yield.html.erb
253
- - after_templates/rag_bootstrap/application.html.erb
254
- - after_templates/rag_bootstrap/component-cards-fancy.css
255
- - after_templates/rag_bootstrap/component-cards-fancy.html
256
- - after_templates/rag_bootstrap/component-cards-staff.css
257
- - after_templates/rag_bootstrap/component-cards-staff.html
258
- - after_templates/rag_bootstrap/component-cards-styled.html
259
- - after_templates/rag_bootstrap/component-footer.html
260
- - after_templates/rag_bootstrap/component-hero.html
261
- - after_templates/rag_bootstrap/component-modal.html
262
- - after_templates/rag_bootstrap/component-nav.html
263
- - after_templates/rag_bootstrap/custom-bootstrap-import.scss
264
- - after_templates/rag_bootstrap/custom-using-css.css
265
- - after_templates/rag_bootstrap/custom-using-scss.scss
266
- - after_templates/rag_bootstrap/manifest.js
267
- - after_templates/rag_devise.rb
268
- - after_templates/rag_devise/application.html.erb
269
- - after_templates/rag_devise/application_controller.rb
270
- - after_templates/rag_devise/config/initializers/devise_turbo.rb
271
- - after_templates/rag_devise/layouts/_alerts.html.erb
272
- - after_templates/rag_devise/layouts/_footer.html.erb
273
- - after_templates/rag_devise/layouts/_navbar.html.erb
274
- - after_templates/rag_devise/layouts/application.html.erb
275
- - after_templates/rag_devise/post/_post.html.erb
276
- - after_templates/rag_devise/post/post.rb
277
- - after_templates/rag_devise/post/posts_controller.rb
278
- - after_templates/rag_devise/seed_data.rb
279
- - after_templates/rag_devise/turbo_controller.rb
280
- - after_templates/rag_devise/user.rb
281
- - after_templates/rag_import_map.rb
282
- - after_templates/rag_import_map/component-sortable.html
283
- - after_templates/rag_import_map/home.css
284
- - after_templates/rag_import_map/position_controller.js
285
- - after_templates/rag_printspeak.rb
286
- - after_templates/rag_printspeak/application_controller.rb
287
- - after_templates/rag_printspeak/faq.html.erb
288
- - after_templates/rag_printspeak/layouts/_footer.html.erb
289
- - after_templates/rag_printspeak/layouts/_head.html.erb
290
- - after_templates/rag_printspeak/layouts/_navbar.html.erb
291
- - after_templates/rag_printspeak/layouts/application.html.erb
292
- - after_templates/rag_printspeak/page/_footer.html.erb
293
- - after_templates/rag_printspeak/page/architecture.html.erb
294
- - after_templates/rag_printspeak/page/blog.html.erb
295
- - after_templates/rag_printspeak/page/faq.html.erb
296
- - after_templates/rag_printspeak/page/home.html.erb
297
- - after_templates/rag_printspeak/page/page_controller.rb
298
- - after_templates/rag_printspeak/page/readme.html.erb
299
- - after_templates/rag_simple.rb
300
- - after_templates/rag_tailwind.rb
301
- - after_templates/rag_tailwind/component-cta.html
302
- - after_templates/rag_tailwind/component-faq.html
303
- - after_templates/rag_tailwind/component-footer.html
304
- - after_templates/rag_tailwind/component-hero.html
305
- - after_templates/rag_tailwind/component-nav.html
306
- - after_templates/rag_tailwind/component-section-begin.html
307
- - after_templates/rag_tailwind/component-section-end.html
308
- - after_templates/rag_tailwind_daisyui.rb
309
- - after_templates/rag_tailwind_daisyui/index.html.erb
310
- - after_templates/rag_tailwind_emulating_bootstrap.rb
311
- - after_templates/rag_tailwind_emulating_bootstrap/Procfile.dev
312
- - after_templates/rag_tailwind_emulating_bootstrap/application.html.erb
313
- - after_templates/rag_tailwind_emulating_bootstrap/application.tailwind.css
314
- - after_templates/rag_tailwind_emulating_bootstrap/application_controller.rb
315
- - after_templates/rag_tailwind_emulating_bootstrap/home/_example.html.erb
316
- - after_templates/rag_tailwind_emulating_bootstrap/home/bootstrap.html.erb
317
- - after_templates/rag_tailwind_emulating_bootstrap/home/home_controller.rb
318
- - after_templates/rag_tailwind_emulating_bootstrap/home/index.html.erb
319
- - after_templates/rag_tailwind_emulating_bootstrap/home/tailwind.html.erb
320
- - after_templates/rag_tailwind_hotwire.rb
321
- - after_templates/rag_tailwind_hotwire/home/controller.rb
322
- - after_templates/rag_tailwind_hotwire/home/helper.rb
323
- - after_templates/rag_tailwind_hotwire/home/increment.html.erb
324
- - after_templates/rag_tailwind_hotwire/home/index.html
325
- - after_templates/rag_tailwind_hotwire_flash.rb
326
- - after_templates/rag_tailwind_hotwire_form.rb
327
- - after_templates/rag_tailwind_hotwire_form/_contact.html.erb
328
- - after_templates/rag_tailwind_hotwire_form/_count.html.erb
329
- - after_templates/rag_tailwind_hotwire_form/_flash.html.erb
330
- - after_templates/rag_tailwind_hotwire_form/_form.html.erb
331
- - after_templates/rag_tailwind_hotwire_form/_list.html.erb
332
- - after_templates/rag_tailwind_hotwire_form/application.html.erb
333
- - after_templates/rag_tailwind_hotwire_form/application.js
334
- - after_templates/rag_tailwind_hotwire_form/application.tailwind.css
335
- - after_templates/rag_tailwind_hotwire_form/application_helper.rb
336
- - after_templates/rag_tailwind_hotwire_form/contact.rb
337
- - after_templates/rag_tailwind_hotwire_form/contacts_controller.rb
338
- - after_templates/rag_tailwind_hotwire_form/create.turbo_stream.erb
339
- - after_templates/rag_tailwind_hotwire_form/edit.html.erb
340
- - after_templates/rag_tailwind_hotwire_form/index.html.erb
341
- - after_templates/rag_tailwind_hotwire_form/new.html.erb
342
- - after_templates/rag_tailwind_hotwire_form/show.html.erb
343
- - after_templates/rag_tailwind_hotwire_form/update.turbo_stream.erb
344
- - after_templates/rag_tailwind_hotwire_form_search.rb
345
- - after_templates/rag_tailwind_hotwire_form_search/_contact.html.erb
346
- - after_templates/rag_tailwind_hotwire_form_search/_count.html.erb
347
- - after_templates/rag_tailwind_hotwire_form_search/_flash.html.erb
348
- - after_templates/rag_tailwind_hotwire_form_search/_form.html.erb
349
- - after_templates/rag_tailwind_hotwire_form_search/_list.html.erb
350
- - after_templates/rag_tailwind_hotwire_form_search/_theme_changer.html.erb
351
- - after_templates/rag_tailwind_hotwire_form_search/application.html.erb
352
- - after_templates/rag_tailwind_hotwire_form_search/application.js
353
- - after_templates/rag_tailwind_hotwire_form_search/application.tailwind.css
354
- - after_templates/rag_tailwind_hotwire_form_search/application_helper.rb
355
- - after_templates/rag_tailwind_hotwire_form_search/contact.rb
356
- - after_templates/rag_tailwind_hotwire_form_search/contacts_controller.rb
357
- - after_templates/rag_tailwind_hotwire_form_search/create.turbo_stream.erb
358
- - after_templates/rag_tailwind_hotwire_form_search/edit.html.erb
359
- - after_templates/rag_tailwind_hotwire_form_search/index.html.erb
360
- - after_templates/rag_tailwind_hotwire_form_search/new.html.erb
361
- - after_templates/rag_tailwind_hotwire_form_search/search_controller.js
362
- - after_templates/rag_tailwind_hotwire_form_search/show.html.erb
363
- - after_templates/rag_tailwind_hotwire_form_search/theme_changer_controller.js
364
- - after_templates/rag_tailwind_hotwire_form_search/update.turbo_stream.erb
260
+ - after_templates/application/printspeak/_.rb
261
+ - after_templates/application/printspeak/app/assets/images/.keep
262
+ - after_templates/application/printspeak/app/assets/images/about/1.jpg
263
+ - after_templates/application/printspeak/app/assets/images/about/2.jpg
264
+ - after_templates/application/printspeak/app/assets/images/about/3.jpg
265
+ - after_templates/application/printspeak/app/assets/images/about/4.jpg
266
+ - after_templates/application/printspeak/app/assets/images/close-icon.svg
267
+ - after_templates/application/printspeak/app/assets/images/header-bg.jpg
268
+ - after_templates/application/printspeak/app/assets/images/logos/facebook.svg
269
+ - after_templates/application/printspeak/app/assets/images/logos/google.svg
270
+ - after_templates/application/printspeak/app/assets/images/logos/ibm.svg
271
+ - after_templates/application/printspeak/app/assets/images/logos/microsoft.svg
272
+ - after_templates/application/printspeak/app/assets/images/map-image.png
273
+ - after_templates/application/printspeak/app/assets/images/navbar-logo.svg
274
+ - after_templates/application/printspeak/app/assets/images/portfolio/1.jpg
275
+ - after_templates/application/printspeak/app/assets/images/portfolio/2.jpg
276
+ - after_templates/application/printspeak/app/assets/images/portfolio/3.jpg
277
+ - after_templates/application/printspeak/app/assets/images/portfolio/4.jpg
278
+ - after_templates/application/printspeak/app/assets/images/portfolio/5.jpg
279
+ - after_templates/application/printspeak/app/assets/images/portfolio/6.jpg
280
+ - after_templates/application/printspeak/app/assets/images/portfolio/alphagraphics.jpeg
281
+ - after_templates/application/printspeak/app/assets/images/portfolio/brochure-transformed.jpeg
282
+ - after_templates/application/printspeak/app/assets/images/portfolio/brochure.jpeg
283
+ - after_templates/application/printspeak/app/assets/images/portfolio/kwikkopy.png
284
+ - after_templates/application/printspeak/app/assets/images/portfolio/kwikkopy2.png
285
+ - after_templates/application/printspeak/app/assets/images/printspeak-logo.svg
286
+ - after_templates/application/printspeak/app/assets/images/team/1.jpg
287
+ - after_templates/application/printspeak/app/assets/images/team/2.jpg
288
+ - after_templates/application/printspeak/app/assets/images/team/3.jpg
289
+ - after_templates/application/printspeak/app/assets/stylesheets/application.bootstrap.scss
290
+ - after_templates/application/printspeak/app/assets/stylesheets/home/_global.scss
291
+ - after_templates/application/printspeak/app/assets/stylesheets/home/_variables.scss
292
+ - after_templates/application/printspeak/app/assets/stylesheets/home/components/_buttons.scss
293
+ - after_templates/application/printspeak/app/assets/stylesheets/home/components/_navbar.scss
294
+ - after_templates/application/printspeak/app/assets/stylesheets/home/sections/_contact.scss
295
+ - after_templates/application/printspeak/app/assets/stylesheets/home/sections/_footer.scss
296
+ - after_templates/application/printspeak/app/assets/stylesheets/home/sections/_masthead.scss
297
+ - after_templates/application/printspeak/app/assets/stylesheets/home/sections/_portfolio.scss
298
+ - after_templates/application/printspeak/app/assets/stylesheets/home/sections/_team.scss
299
+ - after_templates/application/printspeak/app/assets/stylesheets/home/sections/_timeline.scss
300
+ - after_templates/application/printspeak/app/assets/stylesheets/home/styles.scss
301
+ - after_templates/application/printspeak/app/assets/stylesheets/home/variables/_colors.scss
302
+ - after_templates/application/printspeak/app/assets/stylesheets/home/variables/_typography.scss
303
+ - after_templates/application/printspeak/app/controllers/home_controller.rb
304
+ - after_templates/application/printspeak/app/views/home/_modal.erb
305
+ - after_templates/application/printspeak/app/views/home/index.html.erb
306
+ - after_templates/application/printspeak/app/views/layouts/_alerts.html.erb
307
+ - after_templates/application/printspeak/app/views/layouts/_footer.html.erb
308
+ - after_templates/application/printspeak/app/views/layouts/_navbar.html.erb
309
+ - after_templates/application/printspeak/app/views/layouts/application.html.erb
310
+ - after_templates/application/printspeak/app/views/page/_footer.html.erb
311
+ - after_templates/application/printspeak/app/views/page/architecture.html.erb
312
+ - after_templates/application/printspeak/app/views/page/blog.html.erb
313
+ - after_templates/application/printspeak/app/views/page/faq.html.erb
314
+ - after_templates/application/printspeak/app/views/page/page_controller.rb
315
+ - after_templates/application/printspeak/app/views/page/readme.html.erb
316
+ - after_templates/application/printspeak/db/seeds.rb
317
+ - after_templates/printspeak_bak/_.rb
318
+ - after_templates/printspeak_bak/application_controller.rb
319
+ - after_templates/printspeak_bak/faq.html.erb
320
+ - after_templates/printspeak_bak/layouts/_footer.html.erb
321
+ - after_templates/printspeak_bak/layouts/_head.html.erb
322
+ - after_templates/printspeak_bak/layouts/_navbar.html.erb
323
+ - after_templates/printspeak_bak/layouts/application.html.erb
324
+ - after_templates/printspeak_bak/page/_footer.html.erb
325
+ - after_templates/printspeak_bak/page/architecture.html.erb
326
+ - after_templates/printspeak_bak/page/blog.html.erb
327
+ - after_templates/printspeak_bak/page/faq.html.erb
328
+ - after_templates/printspeak_bak/page/home.html.erb
329
+ - after_templates/printspeak_bak/page/page_controller.rb
330
+ - after_templates/printspeak_bak/page/readme.html.erb
331
+ - after_templates/rag/bootstrap/_.rb
332
+ - after_templates/rag/bootstrap/application-yield.html.erb
333
+ - after_templates/rag/bootstrap/application.html.erb
334
+ - after_templates/rag/bootstrap/component-cards-fancy.css
335
+ - after_templates/rag/bootstrap/component-cards-fancy.html
336
+ - after_templates/rag/bootstrap/component-cards-staff.css
337
+ - after_templates/rag/bootstrap/component-cards-staff.html
338
+ - after_templates/rag/bootstrap/component-cards-styled.html
339
+ - after_templates/rag/bootstrap/component-footer.html
340
+ - after_templates/rag/bootstrap/component-hero.html
341
+ - after_templates/rag/bootstrap/component-modal.html
342
+ - after_templates/rag/bootstrap/component-nav.html
343
+ - after_templates/rag/bootstrap/custom-bootstrap-import.scss
344
+ - after_templates/rag/bootstrap/custom-using-css.css
345
+ - after_templates/rag/bootstrap/custom-using-scss.scss
346
+ - after_templates/rag/bootstrap/manifest.js
347
+ - after_templates/rag/devise/_.rb
348
+ - after_templates/rag/devise/application.html.erb
349
+ - after_templates/rag/devise/application_controller.rb
350
+ - after_templates/rag/devise/config/initializers/devise_turbo.rb
351
+ - after_templates/rag/devise/layouts/_alerts.html.erb
352
+ - after_templates/rag/devise/layouts/_footer.html.erb
353
+ - after_templates/rag/devise/layouts/_navbar.html.erb
354
+ - after_templates/rag/devise/layouts/application.html.erb
355
+ - after_templates/rag/devise/post/_post.html.erb
356
+ - after_templates/rag/devise/post/post.rb
357
+ - after_templates/rag/devise/post/posts_controller.rb
358
+ - after_templates/rag/devise/seed_data.rb
359
+ - after_templates/rag/devise/turbo_controller.rb
360
+ - after_templates/rag/devise/user.rb
361
+ - after_templates/rag/import_map/_.rb
362
+ - after_templates/rag/import_map/component-sortable.html
363
+ - after_templates/rag/import_map/home.css
364
+ - after_templates/rag/import_map/position_controller.js
365
+ - after_templates/rag/simple/_.rb
366
+ - after_templates/rag/tailwind/_.rb
367
+ - after_templates/rag/tailwind/component-cta.html
368
+ - after_templates/rag/tailwind/component-faq.html
369
+ - after_templates/rag/tailwind/component-footer.html
370
+ - after_templates/rag/tailwind/component-hero.html
371
+ - after_templates/rag/tailwind/component-nav.html
372
+ - after_templates/rag/tailwind/component-section-begin.html
373
+ - after_templates/rag/tailwind/component-section-end.html
374
+ - after_templates/rag/tailwind_daisyui/_.rb
375
+ - after_templates/rag/tailwind_daisyui/index.html.erb
376
+ - after_templates/rag/tailwind_emulating_bootstrap/Procfile.dev
377
+ - after_templates/rag/tailwind_emulating_bootstrap/_.rb
378
+ - after_templates/rag/tailwind_emulating_bootstrap/application.html.erb
379
+ - after_templates/rag/tailwind_emulating_bootstrap/application.tailwind.css
380
+ - after_templates/rag/tailwind_emulating_bootstrap/application_controller.rb
381
+ - after_templates/rag/tailwind_emulating_bootstrap/home/_example.html.erb
382
+ - after_templates/rag/tailwind_emulating_bootstrap/home/bootstrap.html.erb
383
+ - after_templates/rag/tailwind_emulating_bootstrap/home/home_controller.rb
384
+ - after_templates/rag/tailwind_emulating_bootstrap/home/index.html.erb
385
+ - after_templates/rag/tailwind_emulating_bootstrap/home/tailwind.html.erb
386
+ - after_templates/rag/tailwind_hotwire/_.rb
387
+ - after_templates/rag/tailwind_hotwire/home/controller.rb
388
+ - after_templates/rag/tailwind_hotwire/home/helper.rb
389
+ - after_templates/rag/tailwind_hotwire/home/increment.html.erb
390
+ - after_templates/rag/tailwind_hotwire/home/index.html
391
+ - after_templates/rag/tailwind_hotwire_flash/_.rb
392
+ - after_templates/rag/tailwind_hotwire_form/_.rb
393
+ - after_templates/rag/tailwind_hotwire_form/_contact.html.erb
394
+ - after_templates/rag/tailwind_hotwire_form/_count.html.erb
395
+ - after_templates/rag/tailwind_hotwire_form/_flash.html.erb
396
+ - after_templates/rag/tailwind_hotwire_form/_form.html.erb
397
+ - after_templates/rag/tailwind_hotwire_form/_list.html.erb
398
+ - after_templates/rag/tailwind_hotwire_form/application.html.erb
399
+ - after_templates/rag/tailwind_hotwire_form/application.js
400
+ - after_templates/rag/tailwind_hotwire_form/application.tailwind.css
401
+ - after_templates/rag/tailwind_hotwire_form/application_helper.rb
402
+ - after_templates/rag/tailwind_hotwire_form/contact.rb
403
+ - after_templates/rag/tailwind_hotwire_form/contacts_controller.rb
404
+ - after_templates/rag/tailwind_hotwire_form/create.turbo_stream.erb
405
+ - after_templates/rag/tailwind_hotwire_form/edit.html.erb
406
+ - after_templates/rag/tailwind_hotwire_form/index.html.erb
407
+ - after_templates/rag/tailwind_hotwire_form/new.html.erb
408
+ - after_templates/rag/tailwind_hotwire_form/show.html.erb
409
+ - after_templates/rag/tailwind_hotwire_form/update.turbo_stream.erb
410
+ - after_templates/rag/tailwind_hotwire_form_search/_.rb
411
+ - after_templates/rag/tailwind_hotwire_form_search/_contact.html.erb
412
+ - after_templates/rag/tailwind_hotwire_form_search/_count.html.erb
413
+ - after_templates/rag/tailwind_hotwire_form_search/_flash.html.erb
414
+ - after_templates/rag/tailwind_hotwire_form_search/_form.html.erb
415
+ - after_templates/rag/tailwind_hotwire_form_search/_list.html.erb
416
+ - after_templates/rag/tailwind_hotwire_form_search/_theme_changer.html.erb
417
+ - after_templates/rag/tailwind_hotwire_form_search/application.html.erb
418
+ - after_templates/rag/tailwind_hotwire_form_search/application.js
419
+ - after_templates/rag/tailwind_hotwire_form_search/application.tailwind.css
420
+ - after_templates/rag/tailwind_hotwire_form_search/application_helper.rb
421
+ - after_templates/rag/tailwind_hotwire_form_search/contact.rb
422
+ - after_templates/rag/tailwind_hotwire_form_search/contacts_controller.rb
423
+ - after_templates/rag/tailwind_hotwire_form_search/create.turbo_stream.erb
424
+ - after_templates/rag/tailwind_hotwire_form_search/edit.html.erb
425
+ - after_templates/rag/tailwind_hotwire_form_search/index.html.erb
426
+ - after_templates/rag/tailwind_hotwire_form_search/new.html.erb
427
+ - after_templates/rag/tailwind_hotwire_form_search/search_controller.js
428
+ - after_templates/rag/tailwind_hotwire_form_search/show.html.erb
429
+ - after_templates/rag/tailwind_hotwire_form_search/theme_changer_controller.js
430
+ - after_templates/rag/tailwind_hotwire_form_search/update.turbo_stream.erb
365
431
  - app:template
366
432
  - bin/console
367
433
  - bin/setup
@@ -456,27 +522,27 @@ files:
456
522
  - profiles/addons/acts_as_list.json
457
523
  - profiles/addons/browser.json
458
524
  - profiles/addons/chartkick.json
525
+ - profiles/addons/dotenv.json
459
526
  - profiles/addons/faker.json
460
527
  - profiles/addons/hexapdf.json
461
528
  - profiles/addons/honeybadger.json
462
529
  - profiles/addons/httparty.json
463
530
  - profiles/addons/mini_magick.json
464
531
  - profiles/addons/rails-html-sanitizer.json
532
+ - profiles/addons/rubocop.json
465
533
  - profiles/addons/twilio_ruby.json
466
- - profiles/rag-add-some-pages.json
467
- - profiles/rag-bootstrap.json
468
- - profiles/rag-devise.json
469
- - profiles/rag-import-map.json
470
- - profiles/rag-printspeak.json
471
- - profiles/rag-sample.json
472
- - profiles/rag-simple.json
473
- - profiles/rag-tailwind-daisyui.json
474
- - profiles/rag-tailwind-emulating-bootstrap.json
475
- - profiles/rag-tailwind-hotwire-flash.json
476
- - profiles/rag-tailwind-hotwire-form-search.json
477
- - profiles/rag-tailwind-hotwire-form.json
478
- - profiles/rag-tailwind-hotwire.json
479
- - profiles/rag-tailwind.json
534
+ - profiles/application/printspeak.json
535
+ - profiles/rag/bootstrap.json
536
+ - profiles/rag/devise.json
537
+ - profiles/rag/import-map.json
538
+ - profiles/rag/simple.json
539
+ - profiles/rag/tailwind-daisyui.json
540
+ - profiles/rag/tailwind-emulating-bootstrap.json
541
+ - profiles/rag/tailwind-hotwire-flash.json
542
+ - profiles/rag/tailwind-hotwire-form-search.json
543
+ - profiles/rag/tailwind-hotwire-form.json
544
+ - profiles/rag/tailwind-hotwire.json
545
+ - profiles/rag/tailwind.json
480
546
  - sig/rails_app_generator.rbs
481
547
  - tasks/addon.thor
482
548
  - tasks/gem_info.rb
@@ -1,36 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Rails 7 with Bootstrap CSS and custom CSS
4
- # https://www.youtube.com/watch?v=tYr8yn7yRKw
5
-
6
- require 'pry'
7
-
8
- self.local_template_path = local_template_base(__FILE__)
9
-
10
- gac 'base rails 7 image created'
11
-
12
- css_install('tailwind')
13
-
14
- add_controller('page', 'home', 'blog', 'readme', 'about', 'contact', 'faq', 'terms', 'privacy')
15
- route("root 'page#home'")
16
-
17
- force_copy
18
-
19
- copy_file 'application_controller.rb' , 'app/controllers/application_controller.rb'
20
-
21
- copy_file 'page/page_controller.rb' , 'app/controllers/page_controller.rb'
22
- copy_file 'page/_footer.html.erb' , 'app/views/page/_footer.html.erb'
23
- template 'page/home.html.erb' , 'app/views/page/home.html.erb'
24
- template 'page/faq.html.erb' , 'app/views/page/faq.html.erb'
25
- copy_file 'page/blog.html.erb' , 'app/views/page/blog.html.erb'
26
- copy_file 'page/readme.html.erb' , 'app/views/page/readme.html.erb'
27
-
28
- # DON'T THINK _HEAD is needed anymore, check it out
29
- copy_file 'layouts/_head.html.erb' , 'app/views/layouts/_head.html.erb'
30
- template 'layouts/_navbar.html.erb' , 'app/views/layouts/_navbar.html.erb'
31
- copy_file 'layouts/_footer.html.erb' , 'app/views/layouts/_footer.html.erb'
32
- template 'layouts/application.html.erb' , 'app/views/layouts/application.html.erb'
33
-
34
- after_bundle do
35
- # if needed
36
- end
@@ -1,11 +0,0 @@
1
- {
2
- "args": {
3
- "app_path": "add-some-pages",
4
- "destination_root": "/Users/davidcruwys/dev/kgems/rails_app_generator/a/rag"
5
- },
6
- "opts": {
7
- "skip_git": true,
8
- "skip_bundle": true,
9
- "template": "/Users/davidcruwys/dev/kgems/rails_app_generator/after_templates/test.rb"
10
- }
11
- }
@@ -1,13 +0,0 @@
1
- {
2
- "args": {
3
- "app_path": "sample",
4
- "destination_root": "/Users/davidcruwys/dev/kgems/rails_app_generator/a/rag"
5
- },
6
- "opts": {
7
- "capture_output": false,
8
- "skip_test": true,
9
- "skip_bundle": true,
10
- "XXX_template": "/Users/davidcruwys/dev/kgems/rails_app_generator/after_templates/rag_simple.rb",
11
- "add_annotate": true
12
- }
13
- }