cybele 1.9.2 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (384) hide show
  1. checksums.yaml +4 -4
  2. data/.fasterer.yml +5 -0
  3. data/.flayignore +3 -0
  4. data/.gitignore +4 -1
  5. data/.haml-lint.yml +5 -0
  6. data/.poper.yml +7 -0
  7. data/.rubocop.yml +59 -0
  8. data/.ruby-version +1 -1
  9. data/CHANGELOG.md +458 -2
  10. data/Gemfile +2 -0
  11. data/README.md +16 -20
  12. data/Rakefile +1 -1
  13. data/USAGE +12 -0
  14. data/bin/build_app +18 -0
  15. data/bin/build_gem +20 -0
  16. data/bin/cybele +21 -6
  17. data/config.reek +29 -0
  18. data/cybele.gemspec +14 -6
  19. data/example.pronto.yml +8 -0
  20. data/lib/cybele.rb +33 -0
  21. data/lib/cybele/app_builder.rb +43 -510
  22. data/lib/cybele/generators/app_generator.rb +240 -180
  23. data/lib/cybele/helpers.rb +104 -0
  24. data/lib/cybele/helpers/app_files/assets_files.rb +43 -0
  25. data/lib/cybele/helpers/app_files/controller_files.rb +23 -0
  26. data/lib/cybele/helpers/app_files/helper_files.rb +15 -0
  27. data/lib/cybele/helpers/app_files/mailer_files.rb +15 -0
  28. data/lib/cybele/helpers/app_files/model_files.rb +16 -0
  29. data/lib/cybele/helpers/app_files/vendor_files.rb +14 -0
  30. data/lib/cybele/helpers/app_files/view_files.rb +62 -0
  31. data/lib/cybele/helpers/app_files/view_gems.rb +20 -0
  32. data/lib/cybele/helpers/audited.rb +12 -0
  33. data/lib/cybele/helpers/basic_authentication.rb +44 -0
  34. data/lib/cybele/helpers/devise.rb +67 -0
  35. data/lib/cybele/helpers/docker.rb +53 -0
  36. data/lib/cybele/helpers/dotenv.rb +23 -0
  37. data/lib/cybele/helpers/error_pages.rb +37 -0
  38. data/lib/cybele/helpers/general.rb +87 -0
  39. data/lib/cybele/helpers/haml.rb +18 -0
  40. data/lib/cybele/helpers/locale_language.rb +23 -0
  41. data/lib/cybele/helpers/mailer.rb +25 -0
  42. data/lib/cybele/helpers/paperclip.rb +33 -0
  43. data/lib/cybele/helpers/pronto.rb +34 -0
  44. data/lib/cybele/helpers/recipient_interceptor.rb +18 -0
  45. data/lib/cybele/helpers/responders.rb +36 -0
  46. data/lib/cybele/helpers/routes.rb +18 -0
  47. data/lib/cybele/helpers/show_for.rb +20 -0
  48. data/lib/cybele/helpers/sidekiq.rb +37 -0
  49. data/lib/cybele/helpers/simple_form.rb +19 -0
  50. data/lib/cybele/helpers/staging.rb +15 -0
  51. data/lib/cybele/version.rb +5 -3
  52. data/spec/features/cli_help_spec.rb +42 -0
  53. data/spec/features/git_and_git_flow_spec.rb +30 -0
  54. data/spec/features/new_default_project_spec.rb +465 -0
  55. data/spec/features/new_not_default_project_spec.rb +412 -0
  56. data/spec/spec_helper.rb +38 -0
  57. data/spec/support/config_test_helper.rb +36 -0
  58. data/spec/support/cybele_test_helpers.rb +115 -0
  59. data/spec/support/devise_test_helper.rb +45 -0
  60. data/spec/support/dotenv_test_helper.rb +31 -0
  61. data/spec/support/error_pages_test_helper.rb +24 -0
  62. data/spec/support/force_ssl_test_helper.rb +24 -0
  63. data/spec/support/git_ignore_test_helper.rb +10 -0
  64. data/spec/support/locale_language_test_helper.rb +43 -0
  65. data/spec/support/mail_test_helpers.rb +15 -0
  66. data/spec/support/paperclip_test_helper.rb +38 -0
  67. data/spec/support/pronto_test_helpers.rb +41 -0
  68. data/spec/support/responder_test_helper.rb +32 -0
  69. data/templates/Gemfile.erb +59 -0
  70. data/templates/README.md.erb +23 -20
  71. data/templates/VERSION.txt +1 -0
  72. data/templates/app_files/app/assets/javascripts/application.js +81 -0
  73. data/templates/app_files/app/assets/javascripts/hq/application.js +80 -0
  74. data/templates/{app/assets/stylesheets/application.css.sass → app_files/app/assets/stylesheets/application.sass} +27 -16
  75. data/templates/app_files/app/assets/stylesheets/hq/_sidebar.sass +89 -0
  76. data/templates/app_files/app/assets/stylesheets/hq/application.sass +74 -0
  77. data/templates/app_files/app/controllers/concerns/activatable.rb +16 -0
  78. data/templates/{app → app_files/app}/controllers/hq/admins_controller.rb +7 -10
  79. data/templates/app_files/app/controllers/hq/application_controller.rb +13 -0
  80. data/templates/{app → app_files/app}/controllers/hq/audits_controller.rb +3 -3
  81. data/templates/app_files/app/controllers/hq/dashboard_controller.rb +7 -0
  82. data/templates/{app → app_files/app}/controllers/hq/passwords_controller.rb +3 -2
  83. data/templates/app_files/app/controllers/hq/registrations_controller.rb +22 -0
  84. data/templates/{app → app_files/app}/controllers/hq/sessions_controller.rb +5 -4
  85. data/templates/{app → app_files/app}/controllers/hq/users_controller.rb +7 -10
  86. data/templates/app_files/app/controllers/user/application_controller.rb +18 -0
  87. data/templates/app_files/app/controllers/user/dashboard_controller.rb +7 -0
  88. data/templates/{app → app_files/app}/controllers/user/passwords_controller.rb +3 -4
  89. data/templates/app_files/app/controllers/user/profile_controller.rb +30 -0
  90. data/templates/{app → app_files/app}/controllers/user/registrations_controller.rb +7 -8
  91. data/templates/{app → app_files/app}/controllers/user/sessions_controller.rb +5 -6
  92. data/templates/app_files/app/controllers/welcome_controller.rb +9 -0
  93. data/templates/app_files/app/helpers/application_helper.rb.erb +61 -0
  94. data/templates/app_files/app/mailers/admin_mailer.rb +10 -0
  95. data/templates/app_files/app/mailers/application_mailer.rb +6 -0
  96. data/templates/app_files/app/mailers/user_mailer.rb +10 -0
  97. data/templates/app_files/app/models/admin.rb +42 -0
  98. data/templates/app_files/app/models/audit.rb +4 -0
  99. data/templates/app_files/app/models/concerns/password_creatable.rb +39 -0
  100. data/templates/app_files/app/models/user.rb +43 -0
  101. data/templates/app_files/app/vendor/assets/javascripts/footable.min.js +10 -0
  102. data/templates/{vendor → app_files/app/vendor}/assets/javascripts/jquery.datetimepicker.js +0 -0
  103. data/templates/{vendor → app_files/app/vendor}/assets/javascripts/jquery.maskedinput.min.js +0 -0
  104. data/templates/{vendor → app_files/app/vendor}/assets/javascripts/nprogress.js +0 -0
  105. data/templates/{vendor → app_files/app/vendor}/assets/javascripts/trix.js +0 -0
  106. data/templates/app_files/app/vendor/assets/stylesheets/footable.bootstrap.min.css +1 -0
  107. data/templates/{vendor → app_files/app/vendor}/assets/stylesheets/jquery.datetimepicker.css +0 -0
  108. data/templates/{vendor → app_files/app/vendor}/assets/stylesheets/nprogress.css +0 -1
  109. data/templates/{vendor → app_files/app/vendor}/assets/stylesheets/trix.css +0 -0
  110. data/templates/app_files/app/views/admin_mailer/login_info.html.haml +13 -0
  111. data/templates/app_files/app/views/hq/admins/_admin.html.haml +38 -0
  112. data/templates/{app → app_files/app}/views/hq/admins/_blank.html.haml +3 -3
  113. data/templates/app_files/app/views/hq/admins/_filters.html.haml +27 -0
  114. data/templates/app_files/app/views/hq/admins/_form.html.haml +17 -0
  115. data/templates/app_files/app/views/hq/admins/_list.html.haml +20 -0
  116. data/templates/app_files/app/views/hq/admins/edit.html.haml +3 -0
  117. data/templates/app_files/app/views/hq/admins/index.html.haml +18 -0
  118. data/templates/{app → app_files/app}/views/hq/admins/new.html.haml +2 -2
  119. data/templates/{app → app_files/app}/views/hq/admins/show.html.haml +8 -8
  120. data/templates/app_files/app/views/hq/audits/_filters.html.haml +48 -0
  121. data/templates/app_files/app/views/hq/audits/_list.html.haml +47 -0
  122. data/templates/{app → app_files/app}/views/hq/audits/index.html.haml +3 -3
  123. data/templates/app_files/app/views/hq/audits/show.html.haml +8 -0
  124. data/templates/app_files/app/views/hq/dashboard/index.html.haml +13 -0
  125. data/templates/app_files/app/views/hq/passwords/edit.html.haml +24 -0
  126. data/templates/app_files/app/views/hq/passwords/new.html.haml +21 -0
  127. data/templates/app_files/app/views/hq/registrations/edit.html.haml +30 -0
  128. data/templates/app_files/app/views/hq/sessions/new.html.haml +20 -0
  129. data/templates/{app → app_files/app}/views/hq/users/_blank.html.haml +3 -3
  130. data/templates/app_files/app/views/hq/users/_filters.html.haml +26 -0
  131. data/templates/app_files/app/views/hq/users/_form.html.haml +17 -0
  132. data/templates/app_files/app/views/hq/users/_list.html.haml +21 -0
  133. data/templates/app_files/app/views/hq/users/_user.html.haml +38 -0
  134. data/templates/app_files/app/views/hq/users/edit.html.haml +3 -0
  135. data/templates/app_files/app/views/hq/users/index.html.haml +18 -0
  136. data/templates/{app → app_files/app}/views/hq/users/new.html.haml +2 -2
  137. data/templates/{app → app_files/app}/views/hq/users/show.html.haml +8 -9
  138. data/templates/app_files/app/views/layouts/application.html.haml.erb +33 -0
  139. data/templates/app_files/app/views/layouts/hq/application.html.haml.erb +57 -0
  140. data/templates/app_files/app/views/layouts/hq/login.html.haml.erb +47 -0
  141. data/templates/app_files/app/views/layouts/hq/partials/_breadcrumb.html.haml +3 -0
  142. data/templates/app_files/app/views/layouts/hq/partials/_dock.html.haml +95 -0
  143. data/templates/{app/views/layouts/hq/partials/_footer.html.haml.erb → app_files/app/views/layouts/hq/partials/_footer.html.haml} +0 -0
  144. data/templates/app_files/app/views/layouts/hq/partials/_navbar.html.haml +35 -0
  145. data/templates/app_files/app/views/layouts/hq/partials/_toolbar.html.haml +3 -0
  146. data/templates/{app/views/layouts/hq/partials/_trackers.html.haml.erb → app_files/app/views/layouts/hq/partials/_trackers.html.haml} +0 -0
  147. data/templates/app_files/app/views/layouts/mailer.html.haml.erb +255 -0
  148. data/templates/app_files/app/views/layouts/partials/_messages.html.haml +11 -0
  149. data/templates/app_files/app/views/layouts/partials/_navbar.html.haml.erb +37 -0
  150. data/templates/{app/views/layouts/partials/_footer.html.haml.erb → app_files/app/views/layouts/partials/_warnings.html.haml} +0 -0
  151. data/templates/app_files/app/views/user/dashboard/index.html.haml +11 -0
  152. data/templates/app_files/app/views/user/passwords/edit.html.haml +18 -0
  153. data/templates/app_files/app/views/user/passwords/new.html.haml +18 -0
  154. data/templates/{app → app_files/app}/views/user/profile/_form.html.haml +5 -5
  155. data/templates/app_files/app/views/user/profile/edit.html.haml +3 -0
  156. data/templates/app_files/app/views/user/profile/show.html.haml +18 -0
  157. data/templates/app_files/app/views/user/registrations/edit.html.haml +30 -0
  158. data/templates/app_files/app/views/user/registrations/new.html.haml +33 -0
  159. data/templates/app_files/app/views/user/sessions/new.html.haml +15 -0
  160. data/templates/app_files/app/views/user_mailer/login_info.html.haml +13 -0
  161. data/templates/app_files/app/views/welcome/about.html.haml +3 -0
  162. data/templates/app_files/app/views/welcome/contact.html.haml +3 -0
  163. data/templates/app_files/app/views/welcome/index.html.haml.erb +19 -0
  164. data/templates/app_files/bootstrap_Gemfile.erb +4 -0
  165. data/templates/app_files/breadcrumb_Gemfile.erb +4 -0
  166. data/templates/app_files/jquery_Gemfile.erb +4 -0
  167. data/templates/{public → app_files/public}/images/favicon.png +0 -0
  168. data/templates/{public → app_files/public}/images/mail-logo.png +0 -0
  169. data/templates/basic_authentication/basic_authentication.rb +22 -0
  170. data/templates/basic_authentication/basic_authentication_settings.yml.erb +3 -0
  171. data/templates/basic_authentication/include_module.erb +2 -0
  172. data/templates/basic_authentication/no_basic_authentication.erb +2 -0
  173. data/templates/basic_authentication/yes_basic_authentication.erb +2 -0
  174. data/templates/bullet/bullet_settings.rb.erb +9 -0
  175. data/templates/config/config_application.rb.erb +4 -0
  176. data/templates/config/locales/devise.en.yml +99 -0
  177. data/templates/config/locales/devise.tr.yml +97 -0
  178. data/templates/config/locales/en.yml +34 -0
  179. data/templates/config/locales/mailer.en.yml +32 -0
  180. data/templates/config/locales/{email.tr.yml → mailer.tr.yml} +6 -2
  181. data/templates/config/locales/models.en.yml +74 -0
  182. data/templates/config/locales/models.tr.yml +11 -27
  183. data/templates/config/locales/responders.en.yml +15 -0
  184. data/templates/config/locales/responders.tr.yml +3 -2
  185. data/templates/config/locales/show_for.tr.yml +3 -3
  186. data/templates/config/locales/view.en.yml +73 -0
  187. data/templates/config/locales/view.tr.yml +55 -82
  188. data/templates/config/routes.rb.erb +63 -0
  189. data/templates/cybele_gitignore +4 -3
  190. data/templates/devise/devise_authenticate_admin.rb.erb +2 -0
  191. data/templates/devise/devise_before_action_strong_parameter.rb.erb +3 -0
  192. data/templates/devise/devise_mailer.rb.erb +1 -0
  193. data/templates/devise/devise_strong_parameter.rb.erb +13 -0
  194. data/templates/{app/views/devise → devise/devise_views}/confirmations/new.html.haml +4 -1
  195. data/templates/devise/devise_views/mailer/confirmation_instructions.html.haml +5 -0
  196. data/templates/devise/devise_views/mailer/reset_password_instructions.html.haml +7 -0
  197. data/templates/{app/views/devise → devise/devise_views}/mailer/unlock_instructions.html.haml +1 -1
  198. data/templates/devise/devise_views/passwords/edit.html.haml +19 -0
  199. data/templates/devise/devise_views/passwords/new.html.haml +14 -0
  200. data/templates/devise/devise_views/registrations/edit.html.haml +21 -0
  201. data/templates/devise/devise_views/registrations/new.html.haml +32 -0
  202. data/templates/{app/views/devise → devise/devise_views}/sessions/new.html.haml +8 -3
  203. data/templates/devise/devise_views/shared/_links.haml +29 -0
  204. data/templates/{app/views/devise → devise/devise_views}/unlocks/new.html.haml +4 -1
  205. data/templates/devise/seeds.rb.erb +1 -0
  206. data/templates/docker/Dockerfile.erb +48 -0
  207. data/templates/docker/docker-compose.yml.erb +46 -0
  208. data/templates/docker/docker_env_local_sample.erb +6 -0
  209. data/templates/docker/docker_env_local_sample_host.erb +1 -0
  210. data/templates/docker/docker_env_local_sample_sidekiq.erb +2 -0
  211. data/templates/docker/docker_env_staging_production_sidekiq.erb +2 -0
  212. data/templates/docker/start-app.sh.erb +7 -0
  213. data/templates/docker/start-sidekiq.sh.erb +27 -0
  214. data/templates/dotenv/.env.local.erb +5 -0
  215. data/templates/dotenv/.env.production.erb +5 -0
  216. data/templates/dotenv/.env.sample.erb +5 -0
  217. data/templates/dotenv/.env.staging.erb +5 -0
  218. data/templates/dotenv/dotenv_Gemfile.erb +2 -0
  219. data/templates/error_pages/error_control.erb +7 -0
  220. data/templates/error_pages/error_method.erb +10 -0
  221. data/templates/error_pages/error_route.erb.rb +2 -0
  222. data/templates/error_pages/internal_server_error.html.haml +2 -0
  223. data/templates/error_pages/not_found.html.haml +2 -0
  224. data/templates/guardfile/guardfile_settings.rb.erb +49 -0
  225. data/templates/haml/haml_Gemfile.erb +5 -0
  226. data/templates/mailer/.env.local.erb +7 -0
  227. data/templates/mailer/host.rb.erb +2 -0
  228. data/templates/mailer/mailer_settings.yml.erb +8 -0
  229. data/templates/mailer/smtp.rb.erb +10 -0
  230. data/templates/paperclip/paperclip.rb.erb +11 -0
  231. data/templates/paperclip/paperclip_Gemfile.erb +4 -0
  232. data/templates/paperclip/paperclip_env_local.erb +6 -0
  233. data/templates/paperclip/paperclip_env_production.erb +6 -0
  234. data/templates/paperclip/paperclip_env_sample.erb +6 -0
  235. data/templates/paperclip/paperclip_env_staging.erb +6 -0
  236. data/templates/paperclip/paperclip_settings.yml.erb +10 -0
  237. data/templates/postgresql_database.yml.erb +24 -0
  238. data/templates/pronto/.flayignore.erb +5 -0
  239. data/templates/pronto/.haml-lint.yml.erb +5 -0
  240. data/templates/pronto/.rubocop.yml.erb +38 -0
  241. data/templates/pronto/config.reek.erb +42 -0
  242. data/templates/pronto/example.pronto.yml.erb +27 -0
  243. data/templates/pronto/rubo.erb +24 -0
  244. data/templates/recipient_interceptor/recipient_interceptor_settings.yml.erb +4 -0
  245. data/templates/recipient_interceptor/recipient_interceptor_staging.rb.erb +2 -0
  246. data/templates/responders/responders_Gemfile.erb +3 -0
  247. data/templates/ruby-version +1 -1
  248. data/templates/secrets.yml.erb +3 -0
  249. data/templates/settings.yml.erb +1 -0
  250. data/templates/show_for/show_for_Gemfile.erb +3 -0
  251. data/templates/sidekiq/sidekiq.rake.erb +42 -0
  252. data/templates/sidekiq/sidekiq.rb.erb +18 -0
  253. data/templates/sidekiq/sidekiq.yml.erb +18 -0
  254. data/templates/sidekiq/sidekiq_Gemfile.erb +8 -0
  255. data/templates/{Procfile.erb → sidekiq/sidekiq_Procfile.erb} +0 -0
  256. data/templates/sidekiq/sidekiq_application.rb.erb +3 -0
  257. data/templates/sidekiq/sidekiq_routes_mount.erb +8 -0
  258. data/templates/sidekiq/sidekiq_routes_require.erb +3 -0
  259. data/templates/{config/schedule.yml → sidekiq/sidekiq_schedule.yml.erb} +6 -4
  260. data/templates/simple_form/simple_form_Gemfile.erb +3 -0
  261. data/templates/ssl/ssl_env_all.erb +2 -0
  262. metadata +369 -179
  263. data/templates/.env.local.erb +0 -11
  264. data/templates/.env.production.erb +0 -11
  265. data/templates/.env.staging.erb +0 -11
  266. data/templates/app/assets/javascripts/application.js.coffee +0 -81
  267. data/templates/app/assets/javascripts/hq/application.js.coffee +0 -94
  268. data/templates/app/assets/stylesheets/hq/application.css.sass +0 -92
  269. data/templates/app/controllers/application_controller.rb.erb +0 -48
  270. data/templates/app/controllers/concerns/basic_authentication.rb +0 -18
  271. data/templates/app/controllers/hq/application_controller.rb +0 -18
  272. data/templates/app/controllers/hq/cities_controller.rb +0 -54
  273. data/templates/app/controllers/hq/countries_controller.rb +0 -54
  274. data/templates/app/controllers/hq/dashboard_controller.rb +0 -8
  275. data/templates/app/controllers/hq/registrations_controller.rb +0 -21
  276. data/templates/app/controllers/user/dashboard_controller.rb +0 -8
  277. data/templates/app/controllers/user/profile_controller.rb +0 -34
  278. data/templates/app/controllers/user/user_application_controller.rb +0 -26
  279. data/templates/app/controllers/welcome_controller.rb +0 -4
  280. data/templates/app/helpers/application_helper.rb.erb +0 -27
  281. data/templates/app/mailers/admin_mailer.rb +0 -10
  282. data/templates/app/mailers/base_mailer.rb +0 -4
  283. data/templates/app/mailers/user_mailer.rb +0 -10
  284. data/templates/app/models/admin.rb +0 -51
  285. data/templates/app/models/audit.rb +0 -3
  286. data/templates/app/models/city.rb +0 -12
  287. data/templates/app/models/country.rb +0 -12
  288. data/templates/app/models/user.rb +0 -54
  289. data/templates/app/views/admin_mailer/login_info.html.haml +0 -13
  290. data/templates/app/views/devise/mailer/confirmation_instructions.html.haml +0 -6
  291. data/templates/app/views/devise/mailer/reset_password_instructions.html.haml +0 -9
  292. data/templates/app/views/devise/passwords/edit.html.haml +0 -11
  293. data/templates/app/views/devise/passwords/new.html.haml +0 -9
  294. data/templates/app/views/devise/registrations/edit.html.haml +0 -12
  295. data/templates/app/views/devise/registrations/new.html.haml +0 -24
  296. data/templates/app/views/devise/shared/_links.haml +0 -22
  297. data/templates/app/views/errors/internal_server_error.html.haml +0 -2
  298. data/templates/app/views/errors/not_found.html.haml +0 -2
  299. data/templates/app/views/hq/admins/_admin.html.haml +0 -21
  300. data/templates/app/views/hq/admins/_filters.html.haml +0 -20
  301. data/templates/app/views/hq/admins/_form.html.haml +0 -17
  302. data/templates/app/views/hq/admins/_list.html.haml +0 -15
  303. data/templates/app/views/hq/admins/edit.html.haml +0 -3
  304. data/templates/app/views/hq/admins/index.html.haml +0 -18
  305. data/templates/app/views/hq/audits/_filters.html.haml +0 -32
  306. data/templates/app/views/hq/audits/_list.html.haml +0 -37
  307. data/templates/app/views/hq/audits/show.html.haml +0 -5
  308. data/templates/app/views/hq/cities/_blank.html.haml +0 -9
  309. data/templates/app/views/hq/cities/_city.html.haml +0 -12
  310. data/templates/app/views/hq/cities/_filters.html.haml +0 -15
  311. data/templates/app/views/hq/cities/_form.html.haml +0 -15
  312. data/templates/app/views/hq/cities/_list.html.haml +0 -13
  313. data/templates/app/views/hq/cities/edit.html.haml +0 -3
  314. data/templates/app/views/hq/cities/index.html.haml +0 -18
  315. data/templates/app/views/hq/cities/new.html.haml +0 -3
  316. data/templates/app/views/hq/cities/show.html.haml +0 -13
  317. data/templates/app/views/hq/countries/_blank.html.haml +0 -9
  318. data/templates/app/views/hq/countries/_country.html.haml +0 -11
  319. data/templates/app/views/hq/countries/_filters.html.haml +0 -14
  320. data/templates/app/views/hq/countries/_form.html.haml +0 -14
  321. data/templates/app/views/hq/countries/_list.html.haml +0 -12
  322. data/templates/app/views/hq/countries/edit.html.haml +0 -3
  323. data/templates/app/views/hq/countries/index.html.haml +0 -18
  324. data/templates/app/views/hq/countries/new.html.haml +0 -3
  325. data/templates/app/views/hq/countries/show.html.haml +0 -14
  326. data/templates/app/views/hq/dashboard/index.html.haml +0 -8
  327. data/templates/app/views/hq/passwords/edit.html.haml +0 -12
  328. data/templates/app/views/hq/passwords/new.html.haml +0 -9
  329. data/templates/app/views/hq/registrations/edit.html.haml +0 -19
  330. data/templates/app/views/hq/sessions/new.html.haml +0 -11
  331. data/templates/app/views/hq/users/_filters.html.haml +0 -20
  332. data/templates/app/views/hq/users/_form.html.haml +0 -18
  333. data/templates/app/views/hq/users/_list.html.haml +0 -15
  334. data/templates/app/views/hq/users/_user.html.haml +0 -20
  335. data/templates/app/views/hq/users/edit.html.haml +0 -3
  336. data/templates/app/views/hq/users/index.html.haml +0 -18
  337. data/templates/app/views/layouts/application.html.haml.erb +0 -56
  338. data/templates/app/views/layouts/hq/application.html.haml.erb +0 -55
  339. data/templates/app/views/layouts/hq/login.html.haml.erb +0 -35
  340. data/templates/app/views/layouts/hq/partials/_dock.html.haml.erb +0 -36
  341. data/templates/app/views/layouts/hq/partials/_navbar.html.haml.erb +0 -22
  342. data/templates/app/views/layouts/mailer.html.haml.erb +0 -321
  343. data/templates/app/views/layouts/mailer.text.haml +0 -1
  344. data/templates/app/views/layouts/partials/_trackers.html.haml.erb +0 -0
  345. data/templates/app/views/layouts/partials/_warnings.html.haml.erb +0 -3
  346. data/templates/app/views/user/dashboard/index.html.haml +0 -8
  347. data/templates/app/views/user/passwords/edit.html.haml +0 -12
  348. data/templates/app/views/user/passwords/new.html.haml +0 -10
  349. data/templates/app/views/user/profile/edit.html.haml +0 -3
  350. data/templates/app/views/user/profile/show.html.haml +0 -18
  351. data/templates/app/views/user/registrations/edit.html.haml +0 -19
  352. data/templates/app/views/user/sessions/new.html.haml +0 -11
  353. data/templates/app/views/user_mailer/login_info.html.haml +0 -13
  354. data/templates/app/views/welcome/index.html.haml.erb +0 -16
  355. data/templates/config/database.yml.erb +0 -21
  356. data/templates/config/deploy.rb +0 -56
  357. data/templates/config/initializers/devise_async.rb +0 -6
  358. data/templates/config/initializers/disable_xml_params.rb +0 -3
  359. data/templates/config/initializers/mail.rb +0 -13
  360. data/templates/config/initializers/paperclip.rb +0 -10
  361. data/templates/config/initializers/secret_token.erb +0 -25
  362. data/templates/config/initializers/show_for.rb +0 -3
  363. data/templates/config/initializers/sidekiq.rb +0 -13
  364. data/templates/config/initializers/simple_form.rb +0 -142
  365. data/templates/config/initializers/simple_form_bootstrap.rb +0 -207
  366. data/templates/config/routes.erb +0 -51
  367. data/templates/config/settings.yml +0 -0
  368. data/templates/config/settings/production.yml +0 -0
  369. data/templates/config/settings/staging.yml +0 -0
  370. data/templates/config/sidekiq.yml +0 -13
  371. data/templates/cybele_Gemfile +0 -106
  372. data/templates/cybele_version.txt +0 -1
  373. data/templates/env.sample.erb +0 -11
  374. data/templates/lib/application_responder.rb +0 -8
  375. data/templates/lib/data/cities.yml +0 -163
  376. data/templates/lib/tasks/annotate.rake +0 -6
  377. data/templates/lib/tasks/dev.rake +0 -56
  378. data/templates/lib/tasks/sidekiq.rake +0 -26
  379. data/templates/lib/templates/rails/responders_controller/controller.rb +0 -56
  380. data/templates/public/images/missing_cover.png +0 -0
  381. data/templates/public/images/missing_cover@2x.png +0 -0
  382. data/templates/public/images/missing_logo.png +0 -0
  383. data/templates/public/images/missing_logo@2x.png +0 -0
  384. data/templates/public/images/sprite.png +0 -0
@@ -1,3 +0,0 @@
1
- - if Rails.env.staging?
2
- #warnings.alert.alert-warning.panel-reset.text-center{style: 'margin-bottom: 10px;' }
3
- = t('staging_warning').html_safe
@@ -1,8 +0,0 @@
1
- .panel.panel-default
2
- .panel-body
3
- .row
4
- .col-lg-12
5
- .alert.alert-info
6
- = t('view.hello', user: current_user.email)
7
- = link_to t('navbar.sign_out'), destroy_user_session_path, method: :delete, class: 'btn btn-danger'
8
- = link_to t('navbar.edit_login_info'), edit_user_registration_path, class: 'btn btn-primary'
@@ -1,12 +0,0 @@
1
- %h2= t('devise.password.edit.title')
2
- = simple_form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f|
3
- = f.error_notification
4
- = f.input :reset_password_token, as: :hidden
5
- = f.full_error :reset_password_token
6
- .form-inputs
7
- = f.input :password, required: true, autofocus: true
8
- = f.input :password_confirmation, required: true
9
- .form-actions
10
- = f.button :submit, t('devise.password.edit.button') , class: 'btn btn-primary'
11
- %hr
12
- = render 'devise/shared/links'
@@ -1,10 +0,0 @@
1
- %h2= t('devise.password.new.title')
2
- = simple_form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f|
3
- = f.error_notification
4
- .form-inputs
5
- = f.input :email, required: true, autofocus: true
6
- .form-actions
7
- = f.button :submit, t('devise.password.reset.instructions'), class: 'btn btn-primary'
8
-
9
- %hr
10
- = render 'devise/shared/links'
@@ -1,3 +0,0 @@
1
- - content_for :form_title do
2
- = t('tt.edit', resource_name: User.model_name.human)
3
- = render 'form'
@@ -1,18 +0,0 @@
1
- .panel.panel-default
2
- .panel-heading
3
- %i.icon-edit.icon-large
4
- = t('tt.show', resource_name: User.model_name.human)
5
- .panel-body
6
- = show_for @profile do |s|
7
- = s.attribute :name
8
- = s.attribute :surname
9
- = s.attribute :email
10
- = s.attribute :created_at
11
- = s.attribute :updated_at
12
- .panel-footer
13
- = link_to root_path, class: 'btn-link' do
14
- %i.fa.fa-arrow-left
15
- = t('btn.back')
16
- = link_to edit_user_profile_path(@profile), class: 'btn btn-link' do
17
- %i.fa.fa-pencil
18
- = t('navbar.edit_profile_info')
@@ -1,19 +0,0 @@
1
- .panel.panel-default
2
- .panel-heading
3
- %i.icon-edit.icon-large
4
- = t('devise.registration.edit.title', model: resource.class.model_name.human)
5
- .panel-body
6
- = simple_form_for(resource, as: resource_name, url: user_registration_path, html: { method: :put }) do |f|
7
- = f.error_notification
8
- .form-inputs
9
- = f.input :email, required: true, autofocus: true
10
- - if devise_mapping.confirmable? && resource.pending_reconfirmation?
11
- %p
12
- = t('devise.registration.waiting_confirmation', email: resource.unconfirmed_email )
13
- %hr
14
- = f.input :password, label: t('activerecord.attributes.user.password'), autocomplete: 'off', hint: t('devise.registration.hint_password'), required: false
15
- = f.input :password_confirmation, label: t('activerecord.attributes.user.password_confirmation'), required: false
16
- %hr
17
- = f.input :current_password, label: t('activerecord.attributes.user.current_password'), hint: t('devise.registration.hint_current_password'), required: true
18
- .form-actions
19
- = f.button :submit, t('btn.update'), class: 'btn btn-primary'
@@ -1,11 +0,0 @@
1
- %h2
2
- = t('devise.session.title', model: resource.class.model_name.human )
3
- = simple_form_for(resource, as: resource_name, url: session_path(resource_name)) do |f|
4
- .form-inputs
5
- = f.input :email, required: false, autofocus: true
6
- = f.input :password, required: false
7
- = f.input :remember_me, as: :boolean,label: t('devise.session.remember_me') if devise_mapping.rememberable?
8
- .form-actions
9
- = f.button :submit, t('devise.session.button'), class: 'btn btn-primary'
10
- %hr
11
- = render 'devise/shared/links'
@@ -1,13 +0,0 @@
1
- %h2= t('email.hello')
2
-
3
- %p= t('email.user.login_info.first_info')
4
- %p= t('email.user.login_info.second_info')
5
- %p
6
- %strong= "#{t('activerecord.attributes.user.email')} :"
7
- = @user.email
8
- %p
9
- %strong= "#{t('activerecord.attributes.user.password')} :"
10
- = @password
11
- %p= link_to t('email.user.login_info.btn_login'), new_user_session_url
12
-
13
- %p= t('email.user.login_info.last_info', link: new_user_session_url ).html_safe
@@ -1,16 +0,0 @@
1
- .jumbotron
2
- %h1 Welcome to <%= app_name.capitalize %>
3
- - if current_user
4
- = link_to t('navbar.sign_out'), destroy_user_session_path, class: 'btn btn-large', method: :delete
5
- .row-fluid.marketing
6
- %p
7
- %strong Name:
8
- = current_user.name
9
- %p
10
- %strong Email:
11
- = current_user.email
12
- = link_to t('navbar.edit_login_info'), edit_user_registration_path, class: 'btn btn-large'
13
- = link_to t('navbar.profile'), user_profile_path(current_user), class: 'btn btn-link'
14
- - else
15
- = link_to t('navbar.signup'), new_user_registration_path, class: 'btn btn-large btn-success'
16
- = link_to t('navbar.signin'), new_user_session_path, class: 'btn btn-large'
@@ -1,21 +0,0 @@
1
- development: &default
2
- adapter: postgresql
3
- database: <%= app_name %>_development
4
- encoding: utf8
5
- min_messages: warning
6
- pool: 5
7
- timeout: 5000
8
- host: localhost
9
- port: 5432
10
-
11
- test:
12
- <<: *default
13
- database: <%= app_name %>_test
14
-
15
- production:
16
- <<: *default
17
- database: <%= app_name %>_production
18
-
19
- staging:
20
- <<: *default
21
- database: <%= app_name %>_staging
@@ -1,56 +0,0 @@
1
- # config valid only for current version of Capistrano
2
- lock '3.4.0'
3
-
4
- set :application, 'my_app_name'
5
- set :local_user, 'deploy'
6
- set :stages, %w(staging production)
7
- set :default_stage, 'production'
8
- set :repo_url, 'git@example.com:me/my_repo.git'
9
-
10
- # Default branch is :master
11
- # ask :branch, `git rev-parse --abbrev-ref HEAD`.chomp
12
-
13
- # Default deploy_to directory is /var/www/blog2
14
- set :deploy_to, "/home/#{fetch(:local_user)}/apps/#{fetch(:application)}"
15
-
16
- # Default value for :scm is :git
17
- set :scm, :git
18
-
19
- # Default value for :format is :pretty
20
- # set :format, :pretty
21
-
22
- # Default value for :log_level is :debug
23
- # set :log_level, :debug
24
-
25
- # Default value for :pty is false
26
- set :pty, true
27
-
28
- # Default value for :linked_files is []
29
- set :linked_files, fetch(:linked_files, []).push('config/database.yml')
30
-
31
- # Default value for linked_dirs is []
32
- set :linked_dirs, fetch(:linked_dirs, []).push('log', 'tmp/pids', 'tmp/cache', 'tmp/sockets', 'vendor/bundle', 'public/system', 'public/upload', 'public/images')
33
-
34
- # Default value for default_env is {}
35
- # set :default_env, { path: "/opt/ruby/bin:$PATH" }
36
- set :default_env, { path: '$HOME/.rbenv/shims:$HOME/.rbenv/bin:$PATH' }
37
-
38
- # Default value for keep_releases is 5
39
- # set :keep_releases, 5
40
-
41
- # Look our recipes
42
- # https://github.com/lab2023/recipes_matic
43
- load 'config/deploy/recipes/base.rb'
44
-
45
- namespace :deploy do
46
-
47
- after :restart, :clear_cache do
48
- on roles(:web), in: :groups, limit: 3, wait: 10 do
49
- # Here we can do anything such as:
50
- # within release_path do
51
- # execute :rake, 'cache:clear'
52
- # end
53
- end
54
- end
55
-
56
- end
@@ -1,6 +0,0 @@
1
- # Supported options: :resque, :sidekiq, :delayed_job, :queue_classic, :torquebox, :backburner, :que, :sucker_punch
2
- Devise::Async.setup do |config|
3
- config.enabled = true
4
- config.backend = :sidekiq
5
- config.queue = :mailers
6
- end
@@ -1,3 +0,0 @@
1
- # Protect against injection attacks
2
- # http://www.kb.cert.org/vuls/id/380039
3
- ActionDispatch::ParamsParser::DEFAULT_PARSERS.delete(Mime::XML)
@@ -1,13 +0,0 @@
1
- if Rails.env.production?
2
- MAIL_SETTING = {
3
- address: ENV['MAIL_ADDRESS'], # example 'smtp.mandrillapp.com'
4
- port: '587',
5
- enable_starttls_auto: true,
6
- domain: ENV['MAIL_DOMAIN'], # example 'domain.com'
7
- user_name: ENV['MAIL_USERNAME'], # example 'email@gmail.com'
8
- password: ENV['MAIL_PASSWORD'],
9
- authentication: 'plain'
10
- }
11
- end
12
-
13
-
@@ -1,10 +0,0 @@
1
- #Remove command lines
2
-
3
- #Paperclip::Attachment.default_options[:storage] = :s3
4
- #Paperclip::Attachment.default_options[:s3_host_name] = Settings.AWS.S3.end_point
5
- #Paperclip::Attachment.default_options[:s3_host_alias] = Settings.AWS.S3.aws_raw_url
6
- #Paperclip::Attachment.default_options[:bucket] = Settings.AWS.S3.bucket
7
- #Paperclip::Attachment.default_options[:s3_credentials] = {
8
- # access_key_id: Settings.AWS.S3.access_key_id,
9
- # secret_access_key: Settings.AWS.S3.secret_access_key
10
- #}
@@ -1,25 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Your secret key is used for verifying the integrity of signed cookies.
4
- # If you change this key, all old signed cookies will become invalid!
5
-
6
- # Make sure the secret is at least 30 characters and all random,
7
- # no regular words or you'll be exposed to dictionary attacks.
8
- # You can use `rake secret` to generate a secure secret key.
9
-
10
- # Make sure your secret_key_base is kept private
11
- # if you're sharing your code publicly.
12
- def find_secure_token
13
- token_file = Rails.root.join('.secret')
14
- if File.exist? token_file
15
- # Use the existing token.
16
- File.read(token_file).chomp
17
- else
18
- # Generate a new token of 64 random hexadecimal characters and store it in token_file.
19
- token = SecureRandom.hex(64)
20
- File.write(token_file, token)
21
- token
22
- end
23
- end
24
-
25
- <%= app_name.classify %>::Application.config.secret_key_base = find_secure_token
@@ -1,3 +0,0 @@
1
- ShowFor.setup do |config|
2
- config.label_class = nil
3
- end
@@ -1,13 +0,0 @@
1
- Sidekiq.configure_server do |config|
2
- config.redis = {url: ENV['REDISTOGO_URL'] }
3
- end unless ENV['REDISTOGO_URL'].blank?
4
-
5
- Sidekiq.configure_client do |config|
6
- config.redis = { url: ENV['REDISTOGO_URL']}
7
- end unless ENV['REDISTOGO_URL'].blank?
8
-
9
- # Open this if you have scheduled jobs
10
- # schedule_file = 'config/schedule.yml'
11
- # if File.exists?(schedule_file) && Sidekiq.server?
12
- # Sidekiq::Cron::Job.load_from_hash YAML.load_file(schedule_file)
13
- # end
@@ -1,142 +0,0 @@
1
- # Use this setup block to configure all options available in SimpleForm.
2
- SimpleForm.setup do |config|
3
- # Wrappers are used by the form builder to generate a
4
- # complete input. You can remove any component from the
5
- # wrapper, change the order or even add your own to the
6
- # stack. The options given below are used to wrap the
7
- # whole input.
8
- config.wrappers :default, class: :input,
9
- hint_class: :field_with_hint, error_class: :field_with_errors do |b|
10
- ## Extensions enabled by default
11
- # Any of these extensions can be disabled for a
12
- # given input by passing: `f.input EXTENSION_NAME => false`.
13
- # You can make any of these extensions optional by
14
- # renaming `b.use` to `b.optional`.
15
-
16
- # Determines whether to use HTML5 (:email, :url, ...)
17
- # and required attributes
18
- b.use :html5
19
-
20
- # Calculates placeholders automatically from I18n
21
- # You can also pass a string as f.input placeholder: "Placeholder"
22
- b.use :placeholder
23
-
24
- ## Optional extensions
25
- # They are disabled unless you pass `f.input EXTENSION_NAME => :lookup`
26
- # to the input. If so, they will retrieve the values from the model
27
- # if any exists. If you want to enable the lookup for any of those
28
- # extensions by default, you can change `b.optional` to `b.use`.
29
-
30
- # Calculates maxlength from length validations for string inputs
31
- b.optional :maxlength
32
-
33
- # Calculates pattern from format validations for string inputs
34
- b.optional :pattern
35
-
36
- # Calculates min and max from length validations for numeric inputs
37
- b.optional :min_max
38
-
39
- # Calculates readonly automatically from readonly attributes
40
- b.optional :readonly
41
-
42
- ## Inputs
43
- b.use :label_input
44
- b.use :hint, wrap_with: { tag: :span, class: :hint }
45
- b.use :error, wrap_with: { tag: :span, class: :error }
46
- end
47
-
48
- # The default wrapper to be used by the FormBuilder.
49
- config.default_wrapper = :default
50
-
51
- # Define the way to render check boxes / radio buttons with labels.
52
- # Defaults to :nested for bootstrap config.
53
- # inline: input + label
54
- # nested: label > input
55
- config.boolean_style = :nested
56
-
57
- # Default class for buttons
58
- config.button_class = 'btn'
59
-
60
- # Method used to tidy up errors. Specify any Rails Array method.
61
- # :first lists the first message for each field.
62
- # Use :to_sentence to list all errors for each field.
63
- # config.error_method = :first
64
-
65
- # Default tag used for error notification helper.
66
- config.error_notification_tag = :div
67
-
68
- # CSS class to add for error notification helper.
69
- config.error_notification_class = 'alert alert-error'
70
-
71
- # ID to add for error notification helper.
72
- # config.error_notification_id = nil
73
-
74
- # Series of attempts to detect a default label method for collection.
75
- # config.collection_label_methods = [ :to_label, :name, :title, :to_s ]
76
-
77
- # Series of attempts to detect a default value method for collection.
78
- # config.collection_value_methods = [ :id, :to_s ]
79
-
80
- # You can wrap a collection of radio/check boxes in a pre-defined tag, defaulting to none.
81
- # config.collection_wrapper_tag = nil
82
-
83
- # You can define the class to use on all collection wrappers. Defaulting to none.
84
- # config.collection_wrapper_class = nil
85
-
86
- # You can wrap each item in a collection of radio/check boxes with a tag,
87
- # defaulting to :span. Please note that when using :boolean_style = :nested,
88
- # SimpleForm will force this option to be a label.
89
- # config.item_wrapper_tag = :span
90
-
91
- # You can define a class to use in all item wrappers. Defaulting to none.
92
- # config.item_wrapper_class = nil
93
-
94
- # How the label text should be generated altogether with the required text.
95
- # config.label_text = lambda { |label, required| "#{required} #{label}" }
96
-
97
- # You can define the class to use on all labels. Default is nil.
98
- config.label_class = 'control-label'
99
-
100
- # You can define the class to use on all forms. Default is simple_form.
101
- # config.form_class = :simple_form
102
-
103
- # You can define which elements should obtain additional classes
104
- # config.generate_additional_classes_for = [:wrapper, :label, :input]
105
-
106
- # Whether attributes are required by default (or not). Default is true.
107
- # config.required_by_default = true
108
-
109
- # Tell browsers whether to use the native HTML5 validations (novalidate form option).
110
- # These validations are enabled in SimpleForm's internal config but disabled by default
111
- # in this configuration, which is recommended due to some quirks from different browsers.
112
- # To stop SimpleForm from generating the novalidate option, enabling the HTML5 validations,
113
- # change this configuration to true.
114
- config.browser_validations = false
115
-
116
- # Collection of methods to detect if a file type was given.
117
- # config.file_methods = [ :mounted_as, :file?, :public_filename ]
118
-
119
- # Custom mappings for input types. This should be a hash containing a regexp
120
- # to match as key, and the input type that will be used when the field name
121
- # matches the regexp as value.
122
- # config.input_mappings = { /count/ => :integer }
123
-
124
- # Custom wrappers for input types. This should be a hash containing an input
125
- # type as key and the wrapper that will be used for all inputs with specified type.
126
- # config.wrapper_mappings = { string: :prepend }
127
-
128
- # Default priority for time_zone inputs.
129
- # config.time_zone_priority = nil
130
-
131
- # Default priority for country inputs.
132
- # config.country_priority = nil
133
-
134
- # When false, do not use translations for labels.
135
- # config.translate_labels = true
136
-
137
- # Automatically discover new inputs in Rails' autoload path.
138
- # config.inputs_discovery = true
139
-
140
- # Cache SimpleForm inputs discovery
141
- # config.cache_discovery = !Rails.env.development?
142
- end
@@ -1,207 +0,0 @@
1
- # Use this setup block to configure all options available in SimpleForm.
2
- SimpleForm.setup do |config|
3
- config.error_notification_class = 'alert alert-danger'
4
- config.button_class = 'btn btn-default'
5
- config.boolean_label_class = nil
6
-
7
- config.wrappers :vertical_form, tag: 'div', class: 'form-group', error_class: 'has-error' do |b|
8
- b.use :html5
9
- b.use :placeholder
10
- b.optional :maxlength
11
- b.optional :pattern
12
- b.optional :min_max
13
- b.optional :readonly
14
- b.use :label, class: 'control-label'
15
-
16
- b.use :input, class: 'form-control'
17
- b.use :error, wrap_with: { tag: 'span', class: 'help-block' }
18
- b.use :hint, wrap_with: { tag: 'p', class: 'help-block' }
19
- end
20
-
21
- config.wrappers :vertical_file_input, tag: 'div', class: 'form-group', error_class: 'has-error' do |b|
22
- b.use :html5
23
- b.use :placeholder
24
- b.optional :maxlength
25
- b.optional :readonly
26
- b.use :label, class: 'control-label'
27
-
28
- b.use :input
29
- b.use :error, wrap_with: { tag: 'span', class: 'help-block' }
30
- b.use :hint, wrap_with: { tag: 'p', class: 'help-block' }
31
- end
32
-
33
- config.wrappers :vertical_boolean, tag: 'div', class: 'form-group', error_class: 'has-error' do |b|
34
- b.use :html5
35
- b.optional :readonly
36
-
37
- b.wrapper tag: 'div', class: 'checkbox checkbox-primary' do |ba|
38
- ba.use :label_input
39
- end
40
-
41
- b.use :error, wrap_with: { tag: 'span', class: 'help-block' }
42
- b.use :hint, wrap_with: { tag: 'p', class: 'help-block' }
43
- end
44
-
45
- config.wrappers :vertical_radio_and_checkboxes, tag: 'div', class: 'form-group', error_class: 'has-error' do |b|
46
- b.use :html5
47
- b.optional :readonly
48
- b.use :label, class: 'control-label'
49
- b.use :input
50
- b.use :error, wrap_with: { tag: 'span', class: 'help-block' }
51
- b.use :hint, wrap_with: { tag: 'p', class: 'help-block' }
52
- end
53
-
54
- config.wrappers :horizontal_form, tag: 'div', class: 'form-group', error_class: 'has-error' do |b|
55
- b.use :html5
56
- b.use :placeholder
57
- b.optional :maxlength
58
- b.optional :pattern
59
- b.optional :min_max
60
- b.optional :readonly
61
- b.use :label, class: 'col-sm-3 control-label'
62
-
63
- b.wrapper tag: 'div', class: 'col-sm-9' do |ba|
64
- ba.use :input, class: 'form-control'
65
- ba.use :error, wrap_with: { tag: 'span', class: 'help-block' }
66
- ba.use :hint, wrap_with: { tag: 'p', class: 'help-block' }
67
- end
68
- end
69
-
70
- config.wrappers :horizontal_file_input, tag: 'div', class: 'form-group', error_class: 'has-error' do |b|
71
- b.use :html5
72
- b.use :placeholder
73
- b.optional :maxlength
74
- b.optional :readonly
75
- b.use :label, class: 'col-sm-3 control-label'
76
-
77
- b.wrapper tag: 'div', class: 'col-sm-9' do |ba|
78
- ba.use :input
79
- ba.use :error, wrap_with: { tag: 'span', class: 'help-block' }
80
- ba.use :hint, wrap_with: { tag: 'p', class: 'help-block' }
81
- end
82
- end
83
-
84
- config.wrappers :horizontal_boolean, tag: 'div', class: 'form-group', error_class: 'has-error' do |b|
85
- b.use :html5
86
- b.optional :readonly
87
-
88
- b.wrapper tag: 'div', class: 'col-sm-offset-3 col-sm-9' do |wr|
89
- wr.wrapper tag: 'div', class: 'checkbox' do |ba|
90
- ba.use :label_input, class: 'col-sm-9'
91
- end
92
-
93
- wr.use :error, wrap_with: { tag: 'span', class: 'help-block' }
94
- wr.use :hint, wrap_with: { tag: 'p', class: 'help-block' }
95
- end
96
- end
97
-
98
- config.wrappers :horizontal_radio_and_checkboxes, tag: 'div', class: 'form-group', error_class: 'has-error' do |b|
99
- b.use :html5
100
- b.optional :readonly
101
-
102
- b.use :label, class: 'col-sm-3 control-label'
103
-
104
- b.wrapper tag: 'div', class: 'col-sm-9' do |ba|
105
- ba.use :input
106
- ba.use :error, wrap_with: { tag: 'span', class: 'help-block' }
107
- ba.use :hint, wrap_with: { tag: 'p', class: 'help-block' }
108
- end
109
- end
110
-
111
- config.wrappers :inline_form, tag: 'div', class: 'form-group', error_class: 'has-error' do |b|
112
- b.use :html5
113
- b.use :placeholder
114
- b.optional :maxlength
115
- b.optional :pattern
116
- b.optional :min_max
117
- b.optional :readonly
118
- b.use :label, class: 'sr-only'
119
-
120
- b.use :input, class: 'form-control'
121
- b.use :error, wrap_with: { tag: 'span', class: 'help-block' }
122
- b.use :hint, wrap_with: { tag: 'p', class: 'help-block' }
123
- end
124
-
125
- # Wrappers for forms and inputs using the Bootstrap toolkit.
126
- # Check the Bootstrap docs (http://getbootstrap.com)
127
- # to learn about the different styles for forms and inputs,
128
- # buttons and other elements.
129
- config.default_wrapper = :vertical_form
130
- config.wrapper_mappings = {
131
- check_boxes: :vertical_radio_and_checkboxes,
132
- radio_buttons: :vertical_radio_and_checkboxes,
133
- file: :vertical_file_input,
134
- boolean: :vertical_boolean,
135
- }
136
- end
137
-
138
- # # Use this setup block to configure all options available in SimpleForm.
139
- # # File Path: RAILS_ROOT/config/initializers/simple_form_bootstrap.rb
140
- # SimpleForm.setup do |config|
141
- # config.wrappers :bootstrap, tag: 'div', class: 'form-group', error_class: 'has-error' do |b|
142
- # b.use :html5
143
- # b.use :placeholder
144
- # b.use :label, class: 'control-label'
145
- # b.use :input
146
- # b.use :error, wrap_with: { tag: 'span', class: 'help-block' }
147
- # b.use :hint, wrap_with: { tag: 'p', class: 'help-block' }
148
- # end
149
- #
150
- # config.wrappers :prepend, tag: 'div', class: 'form-group', error_class: 'has-error' do |b|
151
- # b.use :html5
152
- # b.use :placeholder
153
- # b.use :label, class: 'control-label'
154
- # b.wrapper tag: 'div', class: 'input-group' do |input|
155
- # input.wrapper tag: 'div', class: 'input-prepend' do |prepend|
156
- # prepend.use :input
157
- # end
158
- # input.use :hint, wrap_with: { tag: 'span', class: 'help-block' }
159
- # input.use :error, wrap_with: { tag: 'span', class: 'help-inline' }
160
- # end
161
- # end
162
- #
163
- # config.wrappers :append, tag: 'div', class: 'form-group', error_class: 'has-error' do |b|
164
- # b.use :html5
165
- # b.use :placeholder
166
- # b.use :label
167
- # b.wrapper tag: 'div', class: 'input-group' do |input|
168
- # input.wrapper tag: 'div', class: 'input-append' do |append|
169
- # append.use :input
170
- # end
171
- # input.use :hint, wrap_with: { tag: 'span', class: 'help-block' }
172
- # input.use :error, wrap_with: { tag: 'span', class: 'help-inline' }
173
- # end
174
- # end
175
- # config.error_notification_class = 'alert alert-danger'
176
- #
177
- # # Wrappers for forms and inputs using the Twitter Bootstrap toolkit.
178
- # # Check the Bootstrap docs (http://twitter.github.com/bootstrap)
179
- # # to learn about the different styles for forms and inputs,
180
- # # buttons and other elements.
181
- # config.default_wrapper = :bootstrap
182
- # end
183
- #
184
- #
185
- # inputs = %w[
186
- # CollectionSelectInput
187
- # DateTimeInput
188
- # FileInput
189
- # GroupedCollectionSelectInput
190
- # NumericInput
191
- # PasswordInput
192
- # RangeInput
193
- # StringInput
194
- # TextInput
195
- # ]
196
- #
197
- # inputs.each do |input_type|
198
- # superclass = "SimpleForm::Inputs::#{input_type}".constantize
199
- #
200
- # new_class = Class.new(superclass) do
201
- # def input_html_classes
202
- # super.push('form-control')
203
- # end
204
- # end
205
- #
206
- # Object.const_set(input_type, new_class)
207
- # end