cybele 1.9.2 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.fasterer.yml +5 -0
- data/.flayignore +3 -0
- data/.gitignore +4 -1
- data/.haml-lint.yml +5 -0
- data/.poper.yml +7 -0
- data/.rubocop.yml +59 -0
- data/.ruby-version +1 -1
- data/CHANGELOG.md +458 -2
- data/Gemfile +2 -0
- data/README.md +16 -20
- data/Rakefile +1 -1
- data/USAGE +12 -0
- data/bin/build_app +18 -0
- data/bin/build_gem +20 -0
- data/bin/cybele +21 -6
- data/config.reek +29 -0
- data/cybele.gemspec +14 -6
- data/example.pronto.yml +8 -0
- data/lib/cybele.rb +33 -0
- data/lib/cybele/app_builder.rb +43 -510
- data/lib/cybele/generators/app_generator.rb +240 -180
- data/lib/cybele/helpers.rb +104 -0
- data/lib/cybele/helpers/app_files/assets_files.rb +43 -0
- data/lib/cybele/helpers/app_files/controller_files.rb +23 -0
- data/lib/cybele/helpers/app_files/helper_files.rb +15 -0
- data/lib/cybele/helpers/app_files/mailer_files.rb +15 -0
- data/lib/cybele/helpers/app_files/model_files.rb +16 -0
- data/lib/cybele/helpers/app_files/vendor_files.rb +14 -0
- data/lib/cybele/helpers/app_files/view_files.rb +62 -0
- data/lib/cybele/helpers/app_files/view_gems.rb +20 -0
- data/lib/cybele/helpers/audited.rb +12 -0
- data/lib/cybele/helpers/basic_authentication.rb +44 -0
- data/lib/cybele/helpers/devise.rb +67 -0
- data/lib/cybele/helpers/docker.rb +53 -0
- data/lib/cybele/helpers/dotenv.rb +23 -0
- data/lib/cybele/helpers/error_pages.rb +37 -0
- data/lib/cybele/helpers/general.rb +87 -0
- data/lib/cybele/helpers/haml.rb +18 -0
- data/lib/cybele/helpers/locale_language.rb +23 -0
- data/lib/cybele/helpers/mailer.rb +25 -0
- data/lib/cybele/helpers/paperclip.rb +33 -0
- data/lib/cybele/helpers/pronto.rb +34 -0
- data/lib/cybele/helpers/recipient_interceptor.rb +18 -0
- data/lib/cybele/helpers/responders.rb +36 -0
- data/lib/cybele/helpers/routes.rb +18 -0
- data/lib/cybele/helpers/show_for.rb +20 -0
- data/lib/cybele/helpers/sidekiq.rb +37 -0
- data/lib/cybele/helpers/simple_form.rb +19 -0
- data/lib/cybele/helpers/staging.rb +15 -0
- data/lib/cybele/version.rb +5 -3
- data/spec/features/cli_help_spec.rb +42 -0
- data/spec/features/git_and_git_flow_spec.rb +30 -0
- data/spec/features/new_default_project_spec.rb +465 -0
- data/spec/features/new_not_default_project_spec.rb +412 -0
- data/spec/spec_helper.rb +38 -0
- data/spec/support/config_test_helper.rb +36 -0
- data/spec/support/cybele_test_helpers.rb +115 -0
- data/spec/support/devise_test_helper.rb +45 -0
- data/spec/support/dotenv_test_helper.rb +31 -0
- data/spec/support/error_pages_test_helper.rb +24 -0
- data/spec/support/force_ssl_test_helper.rb +24 -0
- data/spec/support/git_ignore_test_helper.rb +10 -0
- data/spec/support/locale_language_test_helper.rb +43 -0
- data/spec/support/mail_test_helpers.rb +15 -0
- data/spec/support/paperclip_test_helper.rb +38 -0
- data/spec/support/pronto_test_helpers.rb +41 -0
- data/spec/support/responder_test_helper.rb +32 -0
- data/templates/Gemfile.erb +59 -0
- data/templates/README.md.erb +23 -20
- data/templates/VERSION.txt +1 -0
- data/templates/app_files/app/assets/javascripts/application.js +81 -0
- data/templates/app_files/app/assets/javascripts/hq/application.js +80 -0
- data/templates/{app/assets/stylesheets/application.css.sass → app_files/app/assets/stylesheets/application.sass} +27 -16
- data/templates/app_files/app/assets/stylesheets/hq/_sidebar.sass +89 -0
- data/templates/app_files/app/assets/stylesheets/hq/application.sass +74 -0
- data/templates/app_files/app/controllers/concerns/activatable.rb +16 -0
- data/templates/{app → app_files/app}/controllers/hq/admins_controller.rb +7 -10
- data/templates/app_files/app/controllers/hq/application_controller.rb +13 -0
- data/templates/{app → app_files/app}/controllers/hq/audits_controller.rb +3 -3
- data/templates/app_files/app/controllers/hq/dashboard_controller.rb +7 -0
- data/templates/{app → app_files/app}/controllers/hq/passwords_controller.rb +3 -2
- data/templates/app_files/app/controllers/hq/registrations_controller.rb +22 -0
- data/templates/{app → app_files/app}/controllers/hq/sessions_controller.rb +5 -4
- data/templates/{app → app_files/app}/controllers/hq/users_controller.rb +7 -10
- data/templates/app_files/app/controllers/user/application_controller.rb +18 -0
- data/templates/app_files/app/controllers/user/dashboard_controller.rb +7 -0
- data/templates/{app → app_files/app}/controllers/user/passwords_controller.rb +3 -4
- data/templates/app_files/app/controllers/user/profile_controller.rb +30 -0
- data/templates/{app → app_files/app}/controllers/user/registrations_controller.rb +7 -8
- data/templates/{app → app_files/app}/controllers/user/sessions_controller.rb +5 -6
- data/templates/app_files/app/controllers/welcome_controller.rb +9 -0
- data/templates/app_files/app/helpers/application_helper.rb.erb +61 -0
- data/templates/app_files/app/mailers/admin_mailer.rb +10 -0
- data/templates/app_files/app/mailers/application_mailer.rb +6 -0
- data/templates/app_files/app/mailers/user_mailer.rb +10 -0
- data/templates/app_files/app/models/admin.rb +42 -0
- data/templates/app_files/app/models/audit.rb +4 -0
- data/templates/app_files/app/models/concerns/password_creatable.rb +39 -0
- data/templates/app_files/app/models/user.rb +43 -0
- data/templates/app_files/app/vendor/assets/javascripts/footable.min.js +10 -0
- data/templates/{vendor → app_files/app/vendor}/assets/javascripts/jquery.datetimepicker.js +0 -0
- data/templates/{vendor → app_files/app/vendor}/assets/javascripts/jquery.maskedinput.min.js +0 -0
- data/templates/{vendor → app_files/app/vendor}/assets/javascripts/nprogress.js +0 -0
- data/templates/{vendor → app_files/app/vendor}/assets/javascripts/trix.js +0 -0
- data/templates/app_files/app/vendor/assets/stylesheets/footable.bootstrap.min.css +1 -0
- data/templates/{vendor → app_files/app/vendor}/assets/stylesheets/jquery.datetimepicker.css +0 -0
- data/templates/{vendor → app_files/app/vendor}/assets/stylesheets/nprogress.css +0 -1
- data/templates/{vendor → app_files/app/vendor}/assets/stylesheets/trix.css +0 -0
- data/templates/app_files/app/views/admin_mailer/login_info.html.haml +13 -0
- data/templates/app_files/app/views/hq/admins/_admin.html.haml +38 -0
- data/templates/{app → app_files/app}/views/hq/admins/_blank.html.haml +3 -3
- data/templates/app_files/app/views/hq/admins/_filters.html.haml +27 -0
- data/templates/app_files/app/views/hq/admins/_form.html.haml +17 -0
- data/templates/app_files/app/views/hq/admins/_list.html.haml +20 -0
- data/templates/app_files/app/views/hq/admins/edit.html.haml +3 -0
- data/templates/app_files/app/views/hq/admins/index.html.haml +18 -0
- data/templates/{app → app_files/app}/views/hq/admins/new.html.haml +2 -2
- data/templates/{app → app_files/app}/views/hq/admins/show.html.haml +8 -8
- data/templates/app_files/app/views/hq/audits/_filters.html.haml +48 -0
- data/templates/app_files/app/views/hq/audits/_list.html.haml +47 -0
- data/templates/{app → app_files/app}/views/hq/audits/index.html.haml +3 -3
- data/templates/app_files/app/views/hq/audits/show.html.haml +8 -0
- data/templates/app_files/app/views/hq/dashboard/index.html.haml +13 -0
- data/templates/app_files/app/views/hq/passwords/edit.html.haml +24 -0
- data/templates/app_files/app/views/hq/passwords/new.html.haml +21 -0
- data/templates/app_files/app/views/hq/registrations/edit.html.haml +30 -0
- data/templates/app_files/app/views/hq/sessions/new.html.haml +20 -0
- data/templates/{app → app_files/app}/views/hq/users/_blank.html.haml +3 -3
- data/templates/app_files/app/views/hq/users/_filters.html.haml +26 -0
- data/templates/app_files/app/views/hq/users/_form.html.haml +17 -0
- data/templates/app_files/app/views/hq/users/_list.html.haml +21 -0
- data/templates/app_files/app/views/hq/users/_user.html.haml +38 -0
- data/templates/app_files/app/views/hq/users/edit.html.haml +3 -0
- data/templates/app_files/app/views/hq/users/index.html.haml +18 -0
- data/templates/{app → app_files/app}/views/hq/users/new.html.haml +2 -2
- data/templates/{app → app_files/app}/views/hq/users/show.html.haml +8 -9
- data/templates/app_files/app/views/layouts/application.html.haml.erb +33 -0
- data/templates/app_files/app/views/layouts/hq/application.html.haml.erb +57 -0
- data/templates/app_files/app/views/layouts/hq/login.html.haml.erb +47 -0
- data/templates/app_files/app/views/layouts/hq/partials/_breadcrumb.html.haml +3 -0
- data/templates/app_files/app/views/layouts/hq/partials/_dock.html.haml +95 -0
- data/templates/{app/views/layouts/hq/partials/_footer.html.haml.erb → app_files/app/views/layouts/hq/partials/_footer.html.haml} +0 -0
- data/templates/app_files/app/views/layouts/hq/partials/_navbar.html.haml +35 -0
- data/templates/app_files/app/views/layouts/hq/partials/_toolbar.html.haml +3 -0
- data/templates/{app/views/layouts/hq/partials/_trackers.html.haml.erb → app_files/app/views/layouts/hq/partials/_trackers.html.haml} +0 -0
- data/templates/app_files/app/views/layouts/mailer.html.haml.erb +255 -0
- data/templates/app_files/app/views/layouts/partials/_messages.html.haml +11 -0
- data/templates/app_files/app/views/layouts/partials/_navbar.html.haml.erb +37 -0
- data/templates/{app/views/layouts/partials/_footer.html.haml.erb → app_files/app/views/layouts/partials/_warnings.html.haml} +0 -0
- data/templates/app_files/app/views/user/dashboard/index.html.haml +11 -0
- data/templates/app_files/app/views/user/passwords/edit.html.haml +18 -0
- data/templates/app_files/app/views/user/passwords/new.html.haml +18 -0
- data/templates/{app → app_files/app}/views/user/profile/_form.html.haml +5 -5
- data/templates/app_files/app/views/user/profile/edit.html.haml +3 -0
- data/templates/app_files/app/views/user/profile/show.html.haml +18 -0
- data/templates/app_files/app/views/user/registrations/edit.html.haml +30 -0
- data/templates/app_files/app/views/user/registrations/new.html.haml +33 -0
- data/templates/app_files/app/views/user/sessions/new.html.haml +15 -0
- data/templates/app_files/app/views/user_mailer/login_info.html.haml +13 -0
- data/templates/app_files/app/views/welcome/about.html.haml +3 -0
- data/templates/app_files/app/views/welcome/contact.html.haml +3 -0
- data/templates/app_files/app/views/welcome/index.html.haml.erb +19 -0
- data/templates/app_files/bootstrap_Gemfile.erb +4 -0
- data/templates/app_files/breadcrumb_Gemfile.erb +4 -0
- data/templates/app_files/jquery_Gemfile.erb +4 -0
- data/templates/{public → app_files/public}/images/favicon.png +0 -0
- data/templates/{public → app_files/public}/images/mail-logo.png +0 -0
- data/templates/basic_authentication/basic_authentication.rb +22 -0
- data/templates/basic_authentication/basic_authentication_settings.yml.erb +3 -0
- data/templates/basic_authentication/include_module.erb +2 -0
- data/templates/basic_authentication/no_basic_authentication.erb +2 -0
- data/templates/basic_authentication/yes_basic_authentication.erb +2 -0
- data/templates/bullet/bullet_settings.rb.erb +9 -0
- data/templates/config/config_application.rb.erb +4 -0
- data/templates/config/locales/devise.en.yml +99 -0
- data/templates/config/locales/devise.tr.yml +97 -0
- data/templates/config/locales/en.yml +34 -0
- data/templates/config/locales/mailer.en.yml +32 -0
- data/templates/config/locales/{email.tr.yml → mailer.tr.yml} +6 -2
- data/templates/config/locales/models.en.yml +74 -0
- data/templates/config/locales/models.tr.yml +11 -27
- data/templates/config/locales/responders.en.yml +15 -0
- data/templates/config/locales/responders.tr.yml +3 -2
- data/templates/config/locales/show_for.tr.yml +3 -3
- data/templates/config/locales/view.en.yml +73 -0
- data/templates/config/locales/view.tr.yml +55 -82
- data/templates/config/routes.rb.erb +63 -0
- data/templates/cybele_gitignore +4 -3
- data/templates/devise/devise_authenticate_admin.rb.erb +2 -0
- data/templates/devise/devise_before_action_strong_parameter.rb.erb +3 -0
- data/templates/devise/devise_mailer.rb.erb +1 -0
- data/templates/devise/devise_strong_parameter.rb.erb +13 -0
- data/templates/{app/views/devise → devise/devise_views}/confirmations/new.html.haml +4 -1
- data/templates/devise/devise_views/mailer/confirmation_instructions.html.haml +5 -0
- data/templates/devise/devise_views/mailer/reset_password_instructions.html.haml +7 -0
- data/templates/{app/views/devise → devise/devise_views}/mailer/unlock_instructions.html.haml +1 -1
- data/templates/devise/devise_views/passwords/edit.html.haml +19 -0
- data/templates/devise/devise_views/passwords/new.html.haml +14 -0
- data/templates/devise/devise_views/registrations/edit.html.haml +21 -0
- data/templates/devise/devise_views/registrations/new.html.haml +32 -0
- data/templates/{app/views/devise → devise/devise_views}/sessions/new.html.haml +8 -3
- data/templates/devise/devise_views/shared/_links.haml +29 -0
- data/templates/{app/views/devise → devise/devise_views}/unlocks/new.html.haml +4 -1
- data/templates/devise/seeds.rb.erb +1 -0
- data/templates/docker/Dockerfile.erb +48 -0
- data/templates/docker/docker-compose.yml.erb +46 -0
- data/templates/docker/docker_env_local_sample.erb +6 -0
- data/templates/docker/docker_env_local_sample_host.erb +1 -0
- data/templates/docker/docker_env_local_sample_sidekiq.erb +2 -0
- data/templates/docker/docker_env_staging_production_sidekiq.erb +2 -0
- data/templates/docker/start-app.sh.erb +7 -0
- data/templates/docker/start-sidekiq.sh.erb +27 -0
- data/templates/dotenv/.env.local.erb +5 -0
- data/templates/dotenv/.env.production.erb +5 -0
- data/templates/dotenv/.env.sample.erb +5 -0
- data/templates/dotenv/.env.staging.erb +5 -0
- data/templates/dotenv/dotenv_Gemfile.erb +2 -0
- data/templates/error_pages/error_control.erb +7 -0
- data/templates/error_pages/error_method.erb +10 -0
- data/templates/error_pages/error_route.erb.rb +2 -0
- data/templates/error_pages/internal_server_error.html.haml +2 -0
- data/templates/error_pages/not_found.html.haml +2 -0
- data/templates/guardfile/guardfile_settings.rb.erb +49 -0
- data/templates/haml/haml_Gemfile.erb +5 -0
- data/templates/mailer/.env.local.erb +7 -0
- data/templates/mailer/host.rb.erb +2 -0
- data/templates/mailer/mailer_settings.yml.erb +8 -0
- data/templates/mailer/smtp.rb.erb +10 -0
- data/templates/paperclip/paperclip.rb.erb +11 -0
- data/templates/paperclip/paperclip_Gemfile.erb +4 -0
- data/templates/paperclip/paperclip_env_local.erb +6 -0
- data/templates/paperclip/paperclip_env_production.erb +6 -0
- data/templates/paperclip/paperclip_env_sample.erb +6 -0
- data/templates/paperclip/paperclip_env_staging.erb +6 -0
- data/templates/paperclip/paperclip_settings.yml.erb +10 -0
- data/templates/postgresql_database.yml.erb +24 -0
- data/templates/pronto/.flayignore.erb +5 -0
- data/templates/pronto/.haml-lint.yml.erb +5 -0
- data/templates/pronto/.rubocop.yml.erb +38 -0
- data/templates/pronto/config.reek.erb +42 -0
- data/templates/pronto/example.pronto.yml.erb +27 -0
- data/templates/pronto/rubo.erb +24 -0
- data/templates/recipient_interceptor/recipient_interceptor_settings.yml.erb +4 -0
- data/templates/recipient_interceptor/recipient_interceptor_staging.rb.erb +2 -0
- data/templates/responders/responders_Gemfile.erb +3 -0
- data/templates/ruby-version +1 -1
- data/templates/secrets.yml.erb +3 -0
- data/templates/settings.yml.erb +1 -0
- data/templates/show_for/show_for_Gemfile.erb +3 -0
- data/templates/sidekiq/sidekiq.rake.erb +42 -0
- data/templates/sidekiq/sidekiq.rb.erb +18 -0
- data/templates/sidekiq/sidekiq.yml.erb +18 -0
- data/templates/sidekiq/sidekiq_Gemfile.erb +8 -0
- data/templates/{Procfile.erb → sidekiq/sidekiq_Procfile.erb} +0 -0
- data/templates/sidekiq/sidekiq_application.rb.erb +3 -0
- data/templates/sidekiq/sidekiq_routes_mount.erb +8 -0
- data/templates/sidekiq/sidekiq_routes_require.erb +3 -0
- data/templates/{config/schedule.yml → sidekiq/sidekiq_schedule.yml.erb} +6 -4
- data/templates/simple_form/simple_form_Gemfile.erb +3 -0
- data/templates/ssl/ssl_env_all.erb +2 -0
- metadata +369 -179
- data/templates/.env.local.erb +0 -11
- data/templates/.env.production.erb +0 -11
- data/templates/.env.staging.erb +0 -11
- data/templates/app/assets/javascripts/application.js.coffee +0 -81
- data/templates/app/assets/javascripts/hq/application.js.coffee +0 -94
- data/templates/app/assets/stylesheets/hq/application.css.sass +0 -92
- data/templates/app/controllers/application_controller.rb.erb +0 -48
- data/templates/app/controllers/concerns/basic_authentication.rb +0 -18
- data/templates/app/controllers/hq/application_controller.rb +0 -18
- data/templates/app/controllers/hq/cities_controller.rb +0 -54
- data/templates/app/controllers/hq/countries_controller.rb +0 -54
- data/templates/app/controllers/hq/dashboard_controller.rb +0 -8
- data/templates/app/controllers/hq/registrations_controller.rb +0 -21
- data/templates/app/controllers/user/dashboard_controller.rb +0 -8
- data/templates/app/controllers/user/profile_controller.rb +0 -34
- data/templates/app/controllers/user/user_application_controller.rb +0 -26
- data/templates/app/controllers/welcome_controller.rb +0 -4
- data/templates/app/helpers/application_helper.rb.erb +0 -27
- data/templates/app/mailers/admin_mailer.rb +0 -10
- data/templates/app/mailers/base_mailer.rb +0 -4
- data/templates/app/mailers/user_mailer.rb +0 -10
- data/templates/app/models/admin.rb +0 -51
- data/templates/app/models/audit.rb +0 -3
- data/templates/app/models/city.rb +0 -12
- data/templates/app/models/country.rb +0 -12
- data/templates/app/models/user.rb +0 -54
- data/templates/app/views/admin_mailer/login_info.html.haml +0 -13
- data/templates/app/views/devise/mailer/confirmation_instructions.html.haml +0 -6
- data/templates/app/views/devise/mailer/reset_password_instructions.html.haml +0 -9
- data/templates/app/views/devise/passwords/edit.html.haml +0 -11
- data/templates/app/views/devise/passwords/new.html.haml +0 -9
- data/templates/app/views/devise/registrations/edit.html.haml +0 -12
- data/templates/app/views/devise/registrations/new.html.haml +0 -24
- data/templates/app/views/devise/shared/_links.haml +0 -22
- data/templates/app/views/errors/internal_server_error.html.haml +0 -2
- data/templates/app/views/errors/not_found.html.haml +0 -2
- data/templates/app/views/hq/admins/_admin.html.haml +0 -21
- data/templates/app/views/hq/admins/_filters.html.haml +0 -20
- data/templates/app/views/hq/admins/_form.html.haml +0 -17
- data/templates/app/views/hq/admins/_list.html.haml +0 -15
- data/templates/app/views/hq/admins/edit.html.haml +0 -3
- data/templates/app/views/hq/admins/index.html.haml +0 -18
- data/templates/app/views/hq/audits/_filters.html.haml +0 -32
- data/templates/app/views/hq/audits/_list.html.haml +0 -37
- data/templates/app/views/hq/audits/show.html.haml +0 -5
- data/templates/app/views/hq/cities/_blank.html.haml +0 -9
- data/templates/app/views/hq/cities/_city.html.haml +0 -12
- data/templates/app/views/hq/cities/_filters.html.haml +0 -15
- data/templates/app/views/hq/cities/_form.html.haml +0 -15
- data/templates/app/views/hq/cities/_list.html.haml +0 -13
- data/templates/app/views/hq/cities/edit.html.haml +0 -3
- data/templates/app/views/hq/cities/index.html.haml +0 -18
- data/templates/app/views/hq/cities/new.html.haml +0 -3
- data/templates/app/views/hq/cities/show.html.haml +0 -13
- data/templates/app/views/hq/countries/_blank.html.haml +0 -9
- data/templates/app/views/hq/countries/_country.html.haml +0 -11
- data/templates/app/views/hq/countries/_filters.html.haml +0 -14
- data/templates/app/views/hq/countries/_form.html.haml +0 -14
- data/templates/app/views/hq/countries/_list.html.haml +0 -12
- data/templates/app/views/hq/countries/edit.html.haml +0 -3
- data/templates/app/views/hq/countries/index.html.haml +0 -18
- data/templates/app/views/hq/countries/new.html.haml +0 -3
- data/templates/app/views/hq/countries/show.html.haml +0 -14
- data/templates/app/views/hq/dashboard/index.html.haml +0 -8
- data/templates/app/views/hq/passwords/edit.html.haml +0 -12
- data/templates/app/views/hq/passwords/new.html.haml +0 -9
- data/templates/app/views/hq/registrations/edit.html.haml +0 -19
- data/templates/app/views/hq/sessions/new.html.haml +0 -11
- data/templates/app/views/hq/users/_filters.html.haml +0 -20
- data/templates/app/views/hq/users/_form.html.haml +0 -18
- data/templates/app/views/hq/users/_list.html.haml +0 -15
- data/templates/app/views/hq/users/_user.html.haml +0 -20
- data/templates/app/views/hq/users/edit.html.haml +0 -3
- data/templates/app/views/hq/users/index.html.haml +0 -18
- data/templates/app/views/layouts/application.html.haml.erb +0 -56
- data/templates/app/views/layouts/hq/application.html.haml.erb +0 -55
- data/templates/app/views/layouts/hq/login.html.haml.erb +0 -35
- data/templates/app/views/layouts/hq/partials/_dock.html.haml.erb +0 -36
- data/templates/app/views/layouts/hq/partials/_navbar.html.haml.erb +0 -22
- data/templates/app/views/layouts/mailer.html.haml.erb +0 -321
- data/templates/app/views/layouts/mailer.text.haml +0 -1
- data/templates/app/views/layouts/partials/_trackers.html.haml.erb +0 -0
- data/templates/app/views/layouts/partials/_warnings.html.haml.erb +0 -3
- data/templates/app/views/user/dashboard/index.html.haml +0 -8
- data/templates/app/views/user/passwords/edit.html.haml +0 -12
- data/templates/app/views/user/passwords/new.html.haml +0 -10
- data/templates/app/views/user/profile/edit.html.haml +0 -3
- data/templates/app/views/user/profile/show.html.haml +0 -18
- data/templates/app/views/user/registrations/edit.html.haml +0 -19
- data/templates/app/views/user/sessions/new.html.haml +0 -11
- data/templates/app/views/user_mailer/login_info.html.haml +0 -13
- data/templates/app/views/welcome/index.html.haml.erb +0 -16
- data/templates/config/database.yml.erb +0 -21
- data/templates/config/deploy.rb +0 -56
- data/templates/config/initializers/devise_async.rb +0 -6
- data/templates/config/initializers/disable_xml_params.rb +0 -3
- data/templates/config/initializers/mail.rb +0 -13
- data/templates/config/initializers/paperclip.rb +0 -10
- data/templates/config/initializers/secret_token.erb +0 -25
- data/templates/config/initializers/show_for.rb +0 -3
- data/templates/config/initializers/sidekiq.rb +0 -13
- data/templates/config/initializers/simple_form.rb +0 -142
- data/templates/config/initializers/simple_form_bootstrap.rb +0 -207
- data/templates/config/routes.erb +0 -51
- data/templates/config/settings.yml +0 -0
- data/templates/config/settings/production.yml +0 -0
- data/templates/config/settings/staging.yml +0 -0
- data/templates/config/sidekiq.yml +0 -13
- data/templates/cybele_Gemfile +0 -106
- data/templates/cybele_version.txt +0 -1
- data/templates/env.sample.erb +0 -11
- data/templates/lib/application_responder.rb +0 -8
- data/templates/lib/data/cities.yml +0 -163
- data/templates/lib/tasks/annotate.rake +0 -6
- data/templates/lib/tasks/dev.rake +0 -56
- data/templates/lib/tasks/sidekiq.rake +0 -26
- data/templates/lib/templates/rails/responders_controller/controller.rb +0 -56
- data/templates/public/images/missing_cover.png +0 -0
- data/templates/public/images/missing_cover@2x.png +0 -0
- data/templates/public/images/missing_logo.png +0 -0
- data/templates/public/images/missing_logo@2x.png +0 -0
- data/templates/public/images/sprite.png +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0a5017b24e9b91e5ded85cfadb4422077ad2d392
|
4
|
+
data.tar.gz: 173e269a3449615f46fcb09a16eb3e104a7bfa1e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b7b0aa35bd089dbad668ca4bc911deb9aa07c42ac8bf9ba1112a735de3be298302d964fa970285ddb5a7ddf801d9e22a0abc197c365684a123d6eefc172c0c42
|
7
|
+
data.tar.gz: a210c25173a358f83094b7f869d7cd56febdfe79415063d5c9c2cf6df4fe3cdd26421ad8ca4a01a7745f837a8bef3263a51b2ff4c3f46907e9a30784d640ba6e
|
data/.fasterer.yml
ADDED
data/.flayignore
ADDED
data/.gitignore
CHANGED
data/.haml-lint.yml
ADDED
data/.poper.yml
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
AllCops:
|
2
|
+
Include:
|
3
|
+
- 'Rakefile'
|
4
|
+
- 'Gemfile'
|
5
|
+
Exclude:
|
6
|
+
- tmp/**/**/**/**
|
7
|
+
|
8
|
+
Documentation:
|
9
|
+
Enabled: false
|
10
|
+
|
11
|
+
Metrics/LineLength:
|
12
|
+
Max: 110
|
13
|
+
Exclude:
|
14
|
+
- 'Gemfile'
|
15
|
+
- 'cybele.gemspec'
|
16
|
+
|
17
|
+
Metrics/ClassLength:
|
18
|
+
Exclude:
|
19
|
+
- 'lib/cybele/generators/app_generator.rb'
|
20
|
+
|
21
|
+
Naming/AccessorMethodName:
|
22
|
+
Exclude:
|
23
|
+
- 'lib/cybele/generators/app_generator.rb'
|
24
|
+
|
25
|
+
Metrics/MethodLength:
|
26
|
+
CountComments: false
|
27
|
+
Max: 15
|
28
|
+
|
29
|
+
Metrics/BlockLength:
|
30
|
+
CountComments: false
|
31
|
+
Max: 40
|
32
|
+
Exclude:
|
33
|
+
- 'Rakefile'
|
34
|
+
- '**/*.rake'
|
35
|
+
- 'spec/**/*.rb'
|
36
|
+
- 'lib/cybele/app_builder.rb'
|
37
|
+
- 'lib/cybele/generators/app_generator.rb'
|
38
|
+
|
39
|
+
Style/FrozenStringLiteralComment:
|
40
|
+
EnforcedStyle: when_needed
|
41
|
+
Exclude:
|
42
|
+
- 'templates/error_pages/**/*.rb'
|
43
|
+
|
44
|
+
Layout/IndentHeredoc:
|
45
|
+
Exclude:
|
46
|
+
- 'spec/features/cli_help_spec.rb'
|
47
|
+
|
48
|
+
Naming/HeredocDelimiterNaming:
|
49
|
+
Exclude:
|
50
|
+
- 'spec/features/cli_help_spec.rb'
|
51
|
+
- 'spec/features/git_and_git_flow_spec.rb'
|
52
|
+
|
53
|
+
Layout/InitialIndentation:
|
54
|
+
Exclude:
|
55
|
+
- 'templates/error_pages/**/*.rb'
|
56
|
+
|
57
|
+
Style/ClassAndModuleChildren:
|
58
|
+
Exclude:
|
59
|
+
- 'templates/app_files/app/controllers/**/*.rb'
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.3.
|
1
|
+
2.3.5
|
data/CHANGELOG.md
CHANGED
@@ -1,11 +1,467 @@
|
|
1
1
|
|
2
2
|
#### [Current]
|
3
|
+
* [320d265](../../commit/320d265) - __(İsmail AKBUDAK)__ Update README.md
|
4
|
+
* [2b203bd](../../commit/2b203bd) - __(İsmail Akbudak)__ Update README file
|
5
|
+
* [69f24dc](../../commit/69f24dc) - __(İsmail Akbudak)__ Merged in feature/remove_env_local_from_gitignore (pull request [#41](../../issues/41))
|
6
|
+
|
7
|
+
Remove .env.local file from gitignore list
|
8
|
+
|
9
|
+
* [49a1a3d](../../commit/49a1a3d) - __(İsmail Akbudak)__ Remove .env.local file from gitignore list
|
10
|
+
* [abc7bc1](../../commit/abc7bc1) - __(İsmail Akbudak)__ Add local development commands to project template README.md
|
11
|
+
* [74b9143](../../commit/74b9143) - __(İsmail Akbudak)__ Code refactor for rspec tests
|
12
|
+
* [26f93a1](../../commit/26f93a1) - __(İsmail Akbudak)__ Pronto fasterer warning removed
|
13
|
+
* [eaf47e2](../../commit/eaf47e2) - __(İsmail Akbudak)__ Merged in feature/new_pronto_runners (pull request [#40](../../issues/40))
|
14
|
+
|
15
|
+
KBP-175 KBP-181 implement new pronto runners and code refactor
|
16
|
+
|
17
|
+
* [5c3fbd3](../../commit/5c3fbd3) - __(İsmail Akbudak)__ KBP-175 #time 1h change application_responder setting mechanism and code refactor for project initialization
|
18
|
+
* [64838a3](../../commit/64838a3) - __(İsmail Akbudak)__ KBP-175 #time 30m fix rails console warnings
|
19
|
+
* [0edb266](../../commit/0edb266) - __(İsmail Akbudak)__ KBP-175 #time 30m add devise failure messages
|
20
|
+
* [377f36d](../../commit/377f36d) - __(İsmail Akbudak)__ KBP-175 #time 1h code refactor for viev files
|
21
|
+
* [951aa81](../../commit/951aa81) - __(İsmail Akbudak)__ KBP-175 #time 1h code refactor for view layouts
|
22
|
+
* [9d4c156](../../commit/9d4c156) - __(İsmail Akbudak)__ KBP-175 #time 1h pronto runner problems solved
|
23
|
+
* [6d980cc](../../commit/6d980cc) - __(İsmail Akbudak)__ KBP-175 #time 40m fix routes view and add dependency controller
|
24
|
+
* [1cd981c](../../commit/1cd981c) - __(İsmail Akbudak)__ KBP-175 KBP-181 #time 2h fix environment variable definition and add sidekiq control in docker
|
25
|
+
* [dae9146](../../commit/dae9146) - __(İsmail Akbudak)__ KBP-175 KBP-181 #time 1h fix app_name errors
|
26
|
+
* [e164182](../../commit/e164182) - __(İsmail Akbudak)__ KBP-175 KBP-181 #time 10h code refactor for project template
|
27
|
+
* [48c2607](../../commit/48c2607) - __(İsmail Akbudak)__ KBP-175 #time 10h code refactor and add missing files
|
28
|
+
* [f45680e](../../commit/f45680e) - __(İsmail Akbudak)__ KBP-175 #time 5h improve code quality
|
29
|
+
* [2daa208](../../commit/2daa208) - __(İsmail Akbudak)__ KBP-175 #time 3h add usefull pronto runners
|
30
|
+
* [bc8dd3b](../../commit/bc8dd3b) - __(Hamdi Bayhan)__ Merged in feature/fix_rubocop_warnings_for_first_create (pull request [#38](../../issues/38))
|
31
|
+
|
32
|
+
KBP-179 #time 90m - Edit rubocop warnings
|
33
|
+
|
34
|
+
Approved-by: İsmail Akbudak <ismail.akbudak@lab2023.com>
|
35
|
+
|
36
|
+
* [2e2fdb8](../../commit/2e2fdb8) - __(hamdibayhan)__ KBP-179 #time 90m - Edit rubocop warnings
|
37
|
+
* [346a510](../../commit/346a510) - __(Hamdi Bayhan)__ Merged in feature/update_fontawesome_version (pull request [#37](../../issues/37))
|
38
|
+
|
39
|
+
KBP-180 #time 3h - Fontawesome version was updated
|
40
|
+
|
41
|
+
Approved-by: İsmail Akbudak <ismail.akbudak@lab2023.com>
|
42
|
+
|
43
|
+
* [ff613ce](../../commit/ff613ce) - __(Fadime Özhan)__ Merged in feature/integrate_mailtrap_instead_of_letter_opener (pull request [#36](../../issues/36))
|
44
|
+
|
45
|
+
KBP-171 #time 2h - integrate mailtrap instead of letter_opener
|
46
|
+
|
47
|
+
Approved-by: İsmail Akbudak <ismail.akbudak@lab2023.com>
|
48
|
+
|
49
|
+
* [b7014b2](../../commit/b7014b2) - __(fadimezhan)__ KBP-171 #time 10m - join mailtrap settings with smtp
|
50
|
+
* [9b61161](../../commit/9b61161) - __(hamdibayhan)__ KBP-180 #time 3h - Fontawesome version was updated
|
51
|
+
* [66c4895](../../commit/66c4895) - __(fadimezhan)__ KBP-171 #time 1h - add missing environment variables
|
52
|
+
* [2abdbfc](../../commit/2abdbfc) - __(Hamdi Bayhan)__ Merged in feature/edit_rubocop_warnings (pull request [#35](../../issues/35))
|
53
|
+
|
54
|
+
KBP-179 #time 10m - Edit rubocop warnings
|
55
|
+
|
56
|
+
Approved-by: İsmail Akbudak <ismail.akbudak@lab2023.com>
|
57
|
+
|
58
|
+
* [19a0b04](../../commit/19a0b04) - __(Fadime Özhan)__ Merged in feature/add_guardfile_to_project_folder (pull request [#33](../../issues/33))
|
59
|
+
|
60
|
+
KBP-173 #time 1h - add guardfile gem
|
61
|
+
|
62
|
+
Approved-by: İsmail Akbudak <ismail.akbudak@lab2023.com>
|
63
|
+
|
64
|
+
* [de4f710](../../commit/de4f710) - __(hamdibayhan)__ KBP-179 #time 10m - Change before_filter with before_action
|
65
|
+
* [e34e314](../../commit/e34e314) - __(fadimezhan)__ KBP-171 #time 5m - refactor on test for mailer
|
66
|
+
* [d19728b](../../commit/d19728b) - __(fadimezhan)__ KBP-171 #time 2h - integrate mailtrap instead of letter_opener
|
67
|
+
* [3bc916c](../../commit/3bc916c) - __(hamdibayhan)__ KBP-179 #time 10m - Edit rubocop warnings
|
68
|
+
* [1c57749](../../commit/1c57749) - __(Hamdi Bayhan)__ Merged in feature/make_user_side (pull request [#32](../../issues/32))
|
69
|
+
|
70
|
+
KBP-117 #time 1d - User side was done
|
71
|
+
|
72
|
+
Approved-by: İsmail Akbudak <ismail.akbudak@lab2023.com>
|
73
|
+
|
74
|
+
* [0ac62dd](../../commit/0ac62dd) - __(hamdibayhan)__ KBP-117 #time 3m - Conflict was done
|
75
|
+
* [d4fa96b](../../commit/d4fa96b) - __(hamdibayhan)__ KBP-117 #time 3m - Procfile file name bug was edited
|
76
|
+
* [d841e7c](../../commit/d841e7c) - __(Hamdi Bayhan)__ Merged in feature/make_basic_authentication (pull request [#34](../../issues/34))
|
77
|
+
|
78
|
+
KBP-178 #time 2h - Implement basic authentication was done
|
79
|
+
|
80
|
+
Approved-by: İsmail Akbudak <ismail.akbudak@lab2023.com>
|
81
|
+
|
82
|
+
* [dd4b75b](../../commit/dd4b75b) - __(hamdibayhan)__ KBP-178 #time 1m - Change comment
|
83
|
+
* [1b48709](../../commit/1b48709) - __(hamdibayhan)__ KBP-178 #time 2h - Implement basic authentication was done
|
84
|
+
* [a32de32](../../commit/a32de32) - __(fadimezhan)__ KBP-173 #time 1h - inject guardfile content
|
85
|
+
* [dc4226a](../../commit/dc4226a) - __(hamdibayhan)__ KBP-117 #time 1d - User side was done
|
86
|
+
* [251a5e9](../../commit/251a5e9) - __(Eşref VİDUŞLU)__ Merged in feature/landing_pages (pull request [#29](../../issues/29))
|
87
|
+
|
88
|
+
KBP-119 #time 8h - Landing pages created.
|
89
|
+
|
90
|
+
Approved-by: İsmail Akbudak <ismail.akbudak@lab2023.com>
|
91
|
+
|
92
|
+
* [7647fcc](../../commit/7647fcc) - __(esref.viduslu)__ KBP-119 #time 5m - Conflict resolved.
|
93
|
+
* [8dd3651](../../commit/8dd3651) - __(hamdibayhan)__ KBP-118 #time 1.5d - Hq side design was done
|
94
|
+
* [10224c6](../../commit/10224c6) - __(fadimezhan)__ KBP-172 #time 15m - remove settings.local.yml file after generating config
|
95
|
+
* [d4c076e](../../commit/d4c076e) - __(fadimezhan)__ KBP-172 #time 5m - rename method name
|
96
|
+
* [265796b](../../commit/265796b) - __(fadimezhan)__ KBP-172 #time 1h - remove config/settings.local.yml file
|
97
|
+
* [9905a08](../../commit/9905a08) - __(esref.viduslu)__ KBP-119 #time 5m - Conflict resolved.
|
98
|
+
* [0932e38](../../commit/0932e38) - __(Hamdi Bayhan)__ Merged in feature/make_hq_side_design (pull request [#31](../../issues/31))
|
99
|
+
|
100
|
+
KBP-118 #time 1.5d - Hq side design was done
|
101
|
+
|
102
|
+
Approved-by: İsmail Akbudak <ismail.akbudak@lab2023.com>
|
103
|
+
|
104
|
+
* [f9ef025](../../commit/f9ef025) - __(hamdibayhan)__ KBP-118 #time 1.5d - Hq side design was done
|
105
|
+
* [06aa859](../../commit/06aa859) - __(fadimezhan)__ KBP-173 #time 1h - add guardfile gem
|
106
|
+
* [0228f4c](../../commit/0228f4c) - __(Fadime Özhan)__ Merged in feature/remove_config/settings.local.yml_file (pull request [#30](../../issues/30))
|
107
|
+
|
108
|
+
KBP-172 #time 1h - remove config/settings.local.yml file
|
109
|
+
|
110
|
+
Approved-by: İsmail Akbudak <ismail.akbudak@lab2023.com>
|
111
|
+
|
112
|
+
* [b986d82](../../commit/b986d82) - __(fadimezhan)__ KBP-172 #time 15m - remove settings.local.yml file after generating config
|
113
|
+
* [cf69c9a](../../commit/cf69c9a) - __(fadimezhan)__ KBP-172 #time 5m - rename method name
|
114
|
+
* [2aaab09](../../commit/2aaab09) - __(fadimezhan)__ KBP-172 #time 1h - remove config/settings.local.yml file
|
115
|
+
* [ff21cca](../../commit/ff21cca) - __(esref.viduslu)__ KBP-119 #time 3h - Welcome controller and views created
|
116
|
+
* [edcbf38](../../commit/edcbf38) - __(Hamdi Bayhan)__ Merged in feature/make_hq_side (pull request [#28](../../issues/28))
|
117
|
+
|
118
|
+
KBP-118 #time 2d - Hq side was done without simple admin template
|
119
|
+
|
120
|
+
Approved-by: İsmail Akbudak <ismail.akbudak@lab2023.com>
|
121
|
+
|
122
|
+
* [941958b](../../commit/941958b) - __(esref.viduslu)__ ARI-119 #time 8h - Landing pages created.
|
123
|
+
* [0ae610a](../../commit/0ae610a) - __(hamdibayhan)__ KBP-118 #time 1m - Remove unnecessary space line
|
124
|
+
* [37e651a](../../commit/37e651a) - __(hamdibayhan)__ KBP-118 #time 2d - Hq side was done without simple admin template
|
125
|
+
* [3fb4c48](../../commit/3fb4c48) - __(Hamdi Bayhan)__ Merged in feature/configure_bootstrap_and_sass (pull request [#27](../../issues/27))
|
126
|
+
|
127
|
+
KBP-116 #time 3h - Configure bootstrap and sass
|
128
|
+
|
129
|
+
Approved-by: İsmail Akbudak <ismail.akbudak@lab2023.com>
|
130
|
+
|
131
|
+
* [3e06f11](../../commit/3e06f11) - __(hamdibayhan)__ KBP-116 #time 15m - Conflict was resolved
|
132
|
+
* [b17d216](../../commit/b17d216) - __(hamdibayhan)__ KBP-116 #time 3h - Configure bootstrap and sass
|
133
|
+
* [11f3ec3](../../commit/11f3ec3) - __(Eşref VİDUŞLU)__ Merged in feature/git_and_gitflow_integration (pull request [#26](../../issues/26))
|
134
|
+
|
135
|
+
KBP-141 #time 2h - Git and git flow integrated.
|
136
|
+
|
137
|
+
Approved-by: Hamdi Bayhan <hamdi.bayhan@lab2023.com>
|
138
|
+
Approved-by: Fatih Avsan <fatih.avsan@lab2023.com>
|
139
|
+
|
140
|
+
* [d7e1329](../../commit/d7e1329) - __(esref.viduslu)__ KBP-141 #time 5m - Conflict fixed.
|
141
|
+
* [c1a306a](../../commit/c1a306a) - __(esref.viduslu)__ KBP-141 #time 2h - Git and git flow integrated.
|
142
|
+
* [ad8e286](../../commit/ad8e286) - __(İsmail Akbudak)__ Merge with develop and add dependency for thor and development info to README
|
143
|
+
* [407d8e5](../../commit/407d8e5) - __(İsmail Akbudak)__ Add dependency for thor and development info to README
|
144
|
+
* [ee248f5](../../commit/ee248f5) - __(Fatih Avsan)__ Merged in feature/force_ssl (pull request [#24](../../issues/24))
|
145
|
+
|
146
|
+
KBP-138 #time 1.5h - added ssl control staging and production
|
147
|
+
|
148
|
+
Approved-by: İsmail Akbudak <ismail.akbudak@lab2023.com>
|
149
|
+
|
150
|
+
* [fd1f038](../../commit/fd1f038) - __(FatihAvsan)__ KBP-138 #time 20m - fixed conflict and fix rubocop error
|
151
|
+
* [a5ae640](../../commit/a5ae640) - __(FatihAvsan)__ KBP-138 #time 20m - fixed conflict
|
152
|
+
* [e97d883](../../commit/e97d883) - __(İsmail Akbudak)__ Merged in feature/pronto_implementation (pull request [#25](../../issues/25))
|
153
|
+
|
154
|
+
KBP-145 #time 1h add pronto and rubocop to created project
|
155
|
+
|
156
|
+
* [505c73b](../../commit/505c73b) - __(FatihAvsan)__ KBP-138 #time 20m - added RAILS_FORCE_SSL environments
|
157
|
+
* [95659f9](../../commit/95659f9) - __(İsmail Akbudak)__ KBP-145 #time 1h add pronto and rubocop to created project
|
158
|
+
* [30dce39](../../commit/30dce39) - __(İsmail Akbudak)__ Merged in feature/docker_environment (pull request [#23](../../issues/23))
|
159
|
+
|
160
|
+
KBP-144 use docker in development environment
|
161
|
+
|
162
|
+
Approved-by: Hamdi Bayhan <hamdi.bayhan@lab2023.com>
|
163
|
+
Approved-by: Fatih Avsan <fatih.avsan@lab2023.com>
|
164
|
+
Approved-by: Eşref VİDUŞLU <esref.viduslu@lab2023.com>
|
165
|
+
|
166
|
+
* [365bb6a](../../commit/365bb6a) - __(İsmail Akbudak)__ KBP-144 #time 5m code refactor for pronto result
|
167
|
+
* [6ec9e08](../../commit/6ec9e08) - __(İsmail Akbudak)__ KBP-144 #time 5m code refactor for pronto result
|
168
|
+
* [fb6d99c](../../commit/fb6d99c) - __(FatihAvsan)__ KBP-138 #time 10m - fixed code
|
169
|
+
* [07f3b07](../../commit/07f3b07) - __(İsmail Akbudak)__ Add pronto to gem development dependencies
|
170
|
+
* [ce012b8](../../commit/ce012b8) - __(İsmail Akbudak)__ KBP-144 #time 20m implement docker development environment specs
|
171
|
+
* [c153106](../../commit/c153106) - __(Hamdi Bayhan)__ Merged in feature/fix_settings_appname (pull request [#22](../../issues/22))
|
172
|
+
|
173
|
+
KBP-169 #time 20m - Fix settings.yml file bug
|
174
|
+
|
175
|
+
Approved-by: İsmail Akbudak <ismail.akbudak@lab2023.com>
|
176
|
+
|
177
|
+
* [238066e](../../commit/238066e) - __(hamdibayhan)__ KBP-169 #time 2m - Conflict was fixed
|
178
|
+
* [8970d1e](../../commit/8970d1e) - __(İsmail Akbudak)__ Merge with develop
|
179
|
+
* [5179fd2](../../commit/5179fd2) - __(İsmail Akbudak)__ Merged in feature/fix_mailer_settings_yml_content (pull request [#21](../../issues/21))
|
180
|
+
|
181
|
+
KBP-170 #time 5m fix email settings.yml content
|
182
|
+
|
183
|
+
* [dda1fbb](../../commit/dda1fbb) - __(hamdibayhan)__ KBP-169 #time 20m - Fix settings.yml file bug
|
184
|
+
* [e4a9922](../../commit/e4a9922) - __(İsmail Akbudak)__ KBP-170 #time 5m fix email settings.yml content
|
185
|
+
* [7769295](../../commit/7769295) - __(Hamdi Bayhan)__ Merged in feature/configure_custom_error_pages (pull request [#20](../../issues/20))
|
186
|
+
|
187
|
+
KBP-140 #time 2h - Configure custom error pages
|
188
|
+
|
189
|
+
Approved-by: İsmail Akbudak <ismail.akbudak@lab2023.com>
|
190
|
+
|
191
|
+
* [f058b96](../../commit/f058b96) - __(hamdibayhan)__ KBP-140 #time 10m - Code was improved
|
192
|
+
* [7015df2](../../commit/7015df2) - __(FatihAvsan)__ KBP-138 #time 1.5h - added ssl control staging and production
|
193
|
+
* [e43d00c](../../commit/e43d00c) - __(İsmail Akbudak)__ KBP-144 #time 1h implement docker development environment
|
194
|
+
* [1fa9310](../../commit/1fa9310) - __(hamdibayhan)__ KBP-140 #time 2m - Code was improved
|
195
|
+
* [7b09310](../../commit/7b09310) - __(hamdibayhan)__ KBP-140 #time 45m - Code was improved
|
196
|
+
* [f30c5a7](../../commit/f30c5a7) - __(hamdibayhan)__ KBP-140 #time 2h - Configure custom error pages
|
197
|
+
* [5abb135](../../commit/5abb135) - __(Hamdi Bayhan)__ Merged in feature/prepare_git_ignore (pull request [#19](../../issues/19))
|
198
|
+
|
199
|
+
KBP-135 #time 25m - Prepare ignored files, folders etc. for git via gitignore file
|
200
|
+
|
201
|
+
Approved-by: Fatih Avsan <fatih.avsan@lab2023.com>
|
202
|
+
Approved-by: Eşref VİDUŞLU <esref.viduslu@lab2023.com>
|
203
|
+
|
204
|
+
* [f83a9d1](../../commit/f83a9d1) - __(Hamdi Bayhan)__ Merged in feature/fix_sidekiq_bug (pull request [#18](../../issues/18))
|
205
|
+
|
206
|
+
KBP-168 #time 3m - Fix sidekiq bug
|
207
|
+
|
208
|
+
Approved-by: Fatih Avsan <fatih.avsan@lab2023.com>
|
209
|
+
Approved-by: Eşref VİDUŞLU <esref.viduslu@lab2023.com>
|
210
|
+
|
211
|
+
* [438a06b](../../commit/438a06b) - __(hamdibayhan)__ KBP-135 #time 25m - Prepare ignored files, folders etc. for git via gitignore file
|
212
|
+
* [6be2865](../../commit/6be2865) - __(hamdibayhan)__ KBP-168 #time 3m - Fix sidekiq bug
|
213
|
+
* [571b1e4](../../commit/571b1e4) - __(Fatih Avsan)__ Merged in feature/integrate_devise_gem (pull request [#17](../../issues/17))
|
214
|
+
|
215
|
+
KBP-129 #time 4h - integrate devise gem
|
216
|
+
|
217
|
+
* [422c0c6](../../commit/422c0c6) - __(FatihAvsan)__ KBP-129 #time 10m - fixed conflict
|
218
|
+
* [a510ba6](../../commit/a510ba6) - __(Fatih Avsan)__ Merged in feature/configure_mailer_settings (pull request [#16](../../issues/16))
|
219
|
+
|
220
|
+
KBP-137 Feature/configure mailer settings
|
221
|
+
|
222
|
+
Approved-by: Eşref VİDUŞLU <esref.viduslu@lab2023.com>
|
223
|
+
Approved-by: İsmail Akbudak <ismail.akbudak@lab2023.com>
|
224
|
+
|
225
|
+
* [b88705e](../../commit/b88705e) - __(FatihAvsan)__ KBP-137 #time 10m - added mail_test_helpers file
|
226
|
+
* [337e0ee](../../commit/337e0ee) - __(FatihAvsan)__ KBP-129 #time 10m - added gem_test_helpers file
|
227
|
+
* [a6c7940](../../commit/a6c7940) - __(FatihAvsan)__ KBP-137 #time 5m - fixed code
|
228
|
+
* [aa1f34d](../../commit/aa1f34d) - __(FatihAvsan)__ KBP-129 #time 5m - fixed code
|
229
|
+
* [0de34de](../../commit/0de34de) - __(FatihAvsan)__ KBP-129 #time 10m - fixed code
|
230
|
+
* [564f972](../../commit/564f972) - __(FatihAvsan)__ KBP-129 #time 30m - made DRY code
|
231
|
+
* [0b4b361](../../commit/0b4b361) - __(FatihAvsan)__ KBP-137 #time 15m - added spec_helper method
|
232
|
+
* [6080e0e](../../commit/6080e0e) - __(FatihAvsan)__ KBP-137 #time 15m - added letter_opener gem
|
233
|
+
* [6501562](../../commit/6501562) - __(FatihAvsan)__ KBP-129 #time 4h - integrate devise gem
|
234
|
+
* [b4549bb](../../commit/b4549bb) - __(FatihAvsan)__ KBP-137 #time 15m - code fixed
|
235
|
+
* [88f7881](../../commit/88f7881) - __(FatihAvsan)__ KBP-137 #time 10m - code fixed
|
236
|
+
* [98cc4b2](../../commit/98cc4b2) - __(FatihAvsan)__ KBP-137 #time 30m - added mail settings
|
237
|
+
* [d3014c7](../../commit/d3014c7) - __(Eşref VİDUŞLU)__ Merged in feature/fixed_file_extension (pull request [#15](../../issues/15))
|
238
|
+
|
239
|
+
Bullet extension fixed, app_generator edited
|
240
|
+
|
241
|
+
Approved-by: Fatih Avsan <fatih.avsan@lab2023.com>
|
242
|
+
Approved-by: Hamdi Bayhan <hamdi.bayhan@lab2023.com>
|
243
|
+
|
244
|
+
* [d8620ce](../../commit/d8620ce) - __(FatihAvsan)__ KBP-137 #time 1h - configure mailer
|
245
|
+
* [5a51e99](../../commit/5a51e99) - __(esref.viduslu)__ Bullet extension fixed, app_generator edited
|
246
|
+
* [2742f8a](../../commit/2742f8a) - __(Fatih Avsan)__ Merged in feature/integrate_bullet_gem (pull request [#13](../../issues/13))
|
247
|
+
|
248
|
+
KBP-131 #time 1.5h - integrate bullet gem
|
249
|
+
|
250
|
+
Approved-by: İsmail Akbudak <ismail.akbudak@lab2023.com>
|
251
|
+
Approved-by: Eşref VİDUŞLU <esref.viduslu@lab2023.com>
|
252
|
+
|
253
|
+
* [0376775](../../commit/0376775) - __(FatihAvsan)__ KBP-131 #time 5m - fixed conflict
|
254
|
+
* [0d5ab71](../../commit/0d5ab71) - __(Eşref VİDUŞLU)__ Merged in feature/integrate_paperclip (pull request [#14](../../issues/14))
|
255
|
+
|
256
|
+
KBP-122 #time 1h 30m - Paperclip was integrated.
|
257
|
+
|
258
|
+
* [f9f4909](../../commit/f9f4909) - __(esref.viduslu)__ KBP-122 #time 10m - Rubocop offenses fixed.
|
259
|
+
* [cdf9e6a](../../commit/cdf9e6a) - __(FatihAvsan)__ KBP-131 #time 30m - code fixed
|
260
|
+
* [46a4c8e](../../commit/46a4c8e) - __(esref.viduslu)__ KBP-122 #time 1h 30m - Paperclip integration edited and conflict resolved
|
261
|
+
* [90d4558](../../commit/90d4558) - __(FatihAvsan)__ KBP-131 #time 1.5h - intagrate bullet gem
|
262
|
+
* [e10314b](../../commit/e10314b) - __(Fatih Avsan)__ Merged in feature/integrate_i18n_gem (pull request [#12](../../issues/12))
|
263
|
+
|
264
|
+
KBP-130 #time 30m - integrate rails-i18n gem
|
265
|
+
|
266
|
+
Approved-by: İsmail Akbudak <ismail.akbudak@lab2023.com>
|
267
|
+
Approved-by: Eşref VİDUŞLU <esref.viduslu@lab2023.com>
|
268
|
+
|
269
|
+
* [0806df7](../../commit/0806df7) - __(Eşref VİDUŞLU)__ Merged in feature/integrate_dotenv_rails_gem (pull request [#10](../../issues/10))
|
270
|
+
|
271
|
+
Feature/integrate dotenv rails gem
|
272
|
+
|
273
|
+
Approved-by: Fatih Avsan <fatih.avsan@lab2023.com>
|
274
|
+
Approved-by: Hamdi Bayhan <hamdi.bayhan@lab2023.com>
|
275
|
+
|
276
|
+
* [a6554e5](../../commit/a6554e5) - __(esref.viduslu)__ KBP-123 #time 5m - Conflict was resolved.
|
277
|
+
* [c9bde7f](../../commit/c9bde7f) - __(esref.viduslu)__ KBP-123 #time 30m - dotenv gem added to the top of the Gemfile list
|
278
|
+
* [aa8dfe6](../../commit/aa8dfe6) - __(FatihAvsan)__ KBP-130 #time 5m - fixed conflict
|
279
|
+
* [51efdd7](../../commit/51efdd7) - __(FatihAvsan)__ KBP-130 #time 30m - integrate rails-i18n gem
|
280
|
+
* [8c6675e](../../commit/8c6675e) - __(Fatih Avsan)__ Merged in feature/version_changelog (pull request [#11](../../issues/11))
|
281
|
+
|
282
|
+
KBP-142 KBP-143 Feature/version changelog
|
283
|
+
|
284
|
+
Approved-by: İsmail Akbudak <ismail.akbudak@lab2023.com>
|
285
|
+
|
286
|
+
* [3980e65](../../commit/3980e65) - __(FatihAvsan)__ KBP-143 #time 10m - code fixed
|
287
|
+
* [2b60565](../../commit/2b60565) - __(FatihAvsan)__ KBP-143 #time 30m - delete CAHNGELOG.md and added test for public/VERSION.txt
|
288
|
+
* [c6dd629](../../commit/c6dd629) - __(Eşref VİDUŞLU)__ Merged in feature/integrate_haml_and_haml_rails_gem (pull request [#9](../../issues/9))
|
289
|
+
|
290
|
+
Feature/integrate haml and haml rails gem
|
291
|
+
|
292
|
+
Approved-by: Fatih Avsan <fatih.avsan@lab2023.com>
|
293
|
+
Approved-by: Hamdi Bayhan <hamdi.bayhan@lab2023.com>
|
294
|
+
Approved-by: İsmail Akbudak <ismail.akbudak@lab2023.com>
|
295
|
+
|
296
|
+
* [8b5a94b](../../commit/8b5a94b) - __(esref.viduslu)__ KBP-122 #time 1h 30m - Paperclip was integrated.
|
297
|
+
* [600ce7b](../../commit/600ce7b) - __(FatihAvsan)__ KBP-143 #time 30m - updated CHANGELOG.md
|
298
|
+
* [2d428dc](../../commit/2d428dc) - __(esref.viduslu)__ KBP-123 #time 5m - Rubocop offenses fixed
|
299
|
+
* [ea61a85](../../commit/ea61a85) - __(FatihAvsan)__ KBP-142 #time 4h - added VERSION.txt
|
300
|
+
* [dabbefd](../../commit/dabbefd) - __(esref.viduslu)__ KBP-123 #time 3h - Dotenv gem added in gemfile and env.sample, .env.local, .env.staging, .env.production files created.
|
301
|
+
* [34c2630](../../commit/34c2630) - __(esref.viduslu)__ KBP-124 #time 5m - Conflict was resolved.
|
302
|
+
* [98e36cd](../../commit/98e36cd) - __(esref.viduslu)__ KBP-124 #time 15m - File and folder naming changed
|
303
|
+
* [6264cf3](../../commit/6264cf3) - __(esref.viduslu)__ KBP-124 #time 15m - New not default projectc spec edited
|
304
|
+
* [8434185](../../commit/8434185) - __(Fatih Avsan)__ Merged in feature/locale_format_into_language (pull request [#8](../../issues/8))
|
305
|
+
|
306
|
+
KBP-139 #time 2h - configure locale language
|
307
|
+
|
308
|
+
Approved-by: Hamdi Bayhan <hamdi.bayhan@lab2023.com>
|
309
|
+
Approved-by: İsmail Akbudak <ismail.akbudak@lab2023.com>
|
310
|
+
|
311
|
+
* [0239a0a](../../commit/0239a0a) - __(esref.viduslu)__ KBP-124 #time 4h - Haml and haml-rails gem integrate cybele gem.
|
312
|
+
* [f78931e](../../commit/f78931e) - __(FatihAvsan)__ KBP-139 #time 30m - added english language files
|
313
|
+
* [1090abc](../../commit/1090abc) - __(FatihAvsan)__ KBP-139 #time 15m - fixed code
|
314
|
+
* [cbb1c0e](../../commit/cbb1c0e) - __(FatihAvsan)__ KBP-139 #time 10m - update pull request
|
315
|
+
* [8844855](../../commit/8844855) - __(Fatih Avsan)__ Merged in feature/intagrate_important_gems (pull request [#7](../../issues/7))
|
316
|
+
|
317
|
+
KBP-134 #time 3h - intagrete important gems
|
318
|
+
|
319
|
+
Approved-by: Hamdi Bayhan <hamdi.bayhan@lab2023.com>
|
320
|
+
Approved-by: Eşref VİDUŞLU <esref.viduslu@lab2023.com>
|
321
|
+
Approved-by: İsmail Akbudak <ismail.akbudak@lab2023.com>
|
322
|
+
|
323
|
+
* [e7f9411](../../commit/e7f9411) - __(FatihAvsan)__ KBP-139 #time 2h - configure locale language
|
324
|
+
* [48e2991](../../commit/48e2991) - __(FatihAvsan)__ KBP-134 #time 5m - fixed conflict
|
325
|
+
* [3e3da9b](../../commit/3e3da9b) - __(FatihAvsan)__ KBP-134 #time 3h - intagrete important gems
|
326
|
+
* [3072884](../../commit/3072884) - __(Fatih Avsan)__ Merged in feature/integrate_show_for_gem (pull request [#6](../../issues/6))
|
327
|
+
|
328
|
+
KBP-132 #time 4h - integrate show_for gem to cybele
|
329
|
+
|
330
|
+
Approved-by: Hamdi Bayhan <hamdi.bayhan@lab2023.com>
|
331
|
+
Approved-by: Eşref VİDUŞLU <esref.viduslu@lab2023.com>
|
332
|
+
Approved-by: İsmail Akbudak <ismail.akbudak@lab2023.com>
|
333
|
+
|
334
|
+
* [2714d2e](../../commit/2714d2e) - __(FatihAvsan)__ KBP-132 #time 10m - fixed rubocop error
|
335
|
+
* [fe43535](../../commit/fe43535) - __(FatihAvsan)__ KBP-132 #time 6h - integrate show_for gem to cybele
|
336
|
+
* [3f132b4](../../commit/3f132b4) - __(Hamdi Bayhan)__ Merged in feature/integrate_recipient_interceptor_gem (pull request [#5](../../issues/5))
|
337
|
+
|
338
|
+
KBP-125 KBP-126 KBP-128 KBP-127 KBP-136Feature/integrate recipient interceptor gem
|
339
|
+
|
340
|
+
Approved-by: İsmail Akbudak <ismail.akbudak@lab2023.com>
|
341
|
+
Approved-by: Fatih Avsan <fatih.avsan@lab2023.com>
|
342
|
+
|
343
|
+
* [e6d287c](../../commit/e6d287c) - __(hamdibayhan)__ KBP-127 #time 30m -Code was improved after rubocop
|
344
|
+
* [f207980](../../commit/f207980) - __(hamdibayhan)__ KBP-127 #time 5m -Code was improved
|
345
|
+
* [8f67ade](../../commit/8f67ade) - __(hamdibayhan)__ KBP-127 #time 5m - Files were moved to self main folders
|
346
|
+
* [6e386e5](../../commit/6e386e5) - __(hamdibayhan)__ KBP-127 #time 1m - Code was improved
|
347
|
+
* [f0ba41a](../../commit/f0ba41a) - __(hamdibayhan)__ KBP-127 #time 90m - Code was improved
|
348
|
+
* [6ae4d7b](../../commit/6ae4d7b) - __(hamdibayhan)__ KBP-127 #time 3h - Code was improved and simple_form gem was moved to optional choose
|
349
|
+
* [d97dd54](../../commit/d97dd54) - __(hamdibayhan)__ KBP-136 #time 30m - Test were written for staging secret_key_base and secret_key_base was added to secret.yml file for staging
|
350
|
+
* [823cda7](../../commit/823cda7) - __(hamdibayhan)__ KBP-127 #time 1h - Test were written for config gem, simple_form gem, rollbar gem, recipient_interceptor gem and staging environment
|
351
|
+
* [2dd6b15](../../commit/2dd6b15) - __(hamdibayhan)__ KBP-127 #time 40m - simple_form gem was integrated
|
352
|
+
* [6142c7a](../../commit/6142c7a) - __(hamdibayhan)__ KBP-128 #time 20m - Integrate rollbar GEM
|
353
|
+
* [08199a0](../../commit/08199a0) - __(hamdibayhan)__ KBP-126 #time 40m - Integrate config GEM and fill settings.yml file
|
354
|
+
* [e37e096](../../commit/e37e096) - __(hamdibayhan)__ KBP-125 #time 4h - Integrate recipient_interceptor GEM
|
355
|
+
* [5efa2dc](../../commit/5efa2dc) - __(İsmail Akbudak)__ Merged in feature/integrate_responder (pull request [#4](../../issues/4))
|
356
|
+
|
357
|
+
KBP-121 integrate responder
|
358
|
+
|
359
|
+
Approved-by: Tayfun Öziş ERİKAN <tayfun.ozis.erikan@lab2023.com>
|
360
|
+
|
361
|
+
* [95f9a5c](../../commit/95f9a5c) - __(İsmail Akbudak)__ KBP-121 #time 1h implement cli helper specs
|
362
|
+
* [e87c3d5](../../commit/e87c3d5) - __(İsmail Akbudak)__ KBP-121 #time 2h implement thor ask questions for cybele options
|
363
|
+
* [74e8468](../../commit/74e8468) - __(İsmail Akbudak)__ KBP-121 #time 7h implement responders gem and code refactor for app builder
|
364
|
+
* [bd60c8e](../../commit/bd60c8e) - __(İsmail Akbudak)__ Merged in feature/integrate_sidekiq (pull request [#3](../../issues/3))
|
365
|
+
|
366
|
+
KBP-133 #time 4h implement sidekiq integration
|
367
|
+
|
368
|
+
* [ad5062f](../../commit/ad5062f) - __(İsmail Akbudak)__ KBP-133 #time 4h implement sidekiq integration
|
369
|
+
* [69e5e31](../../commit/69e5e31) - __(İsmail Akbudak)__ Merged in feature/integrate_postgresql (pull request [#2](../../issues/2))
|
370
|
+
|
371
|
+
KBP-120 integrate postgresql as a default for cybele
|
372
|
+
|
373
|
+
* [382cffe](../../commit/382cffe) - __(İsmail Akbudak)__ KBP-120 #time 5m update postgresql database template file pool size
|
374
|
+
* [91bbd0e](../../commit/91bbd0e) - __(İsmail Akbudak)__ KBP-120 #time 5m remove unnecessary file for robocop
|
375
|
+
* [13a508b](../../commit/13a508b) - __(İsmail Akbudak)__ KBP-120 #time 3h implement postgresql as a default for cybele
|
376
|
+
* [3dc9205](../../commit/3dc9205) - __(İsmail Akbudak)__ Merged in feature/rails_upgrade (pull request [#1](../../issues/1))
|
377
|
+
|
378
|
+
Remove old files and start to create Rails 5 App
|
379
|
+
|
380
|
+
* [4e0c7fe](../../commit/4e0c7fe) - __(İsmail Akbudak)__ Add option for use heroku and update rails version
|
381
|
+
* [1d1cfc1](../../commit/1d1cfc1) - __(İsmail Akbudak)__ Remove old files and start to create Rails 5 App
|
382
|
+
* [e3f3dba](../../commit/e3f3dba) - __(İsmail Akbudak)__ Merge tag 'v1.9.2' into develop
|
383
|
+
|
384
|
+
v1.9.2
|
385
|
+
|
386
|
+
#### v1.9.2
|
387
|
+
* [214a3f5](../../commit/214a3f5) - __(İsmail Akbudak)__ update version v1.9.2
|
388
|
+
* [b0ea802](../../commit/b0ea802) - __(İsmail Akbudak)__ fix errors
|
389
|
+
* [dcf32d1](../../commit/dcf32d1) - __(İsmail Akbudak)__ [#116](../../issues/116) add heroku procfile
|
390
|
+
* [ca9bd3f](../../commit/ca9bd3f) - __(İsmail Akbudak)__ [#117](../../issues/117) remove sinatra gem from group
|
391
|
+
* [9fe6b69](../../commit/9fe6b69) - __(İsmail Akbudak)__ [#118](../../issues/118) remove unnccessary keyword
|
392
|
+
* [ffd2569](../../commit/ffd2569) - __(İsmail Akbudak)__ [#119](../../issues/119) fix wrong keyword
|
393
|
+
* [159d406](../../commit/159d406) - __(İsmail Akbudak)__ [#120](../../issues/120) remove unused rake task
|
394
|
+
* [8e420a5](../../commit/8e420a5) - __(İsmail Akbudak)__ [#122](../../issues/122) add before filter for time zone setter method
|
395
|
+
* [7b6cb4c](../../commit/7b6cb4c) - __(İsmail Akbudak)__ [#123](../../issues/123) change application layout and add profile link to welcome page and navigation bar
|
396
|
+
* [61cf830](../../commit/61cf830) - __(İsmail Akbudak)__ [#124](../../issues/124) initialize client side validation and enable on forms
|
397
|
+
* [4632634](../../commit/4632634) - __(İsmail Akbudak)__ [#125](../../issues/125) fix element data toggle
|
398
|
+
|
399
|
+
#### v1.9.1
|
400
|
+
* [3cbf830](../../commit/3cbf830) - __(ismail Akbudak)__ fix indent error
|
401
|
+
* [fe34adf](../../commit/fe34adf) - __(ismail Akbudak)__ update version v1.9.1
|
402
|
+
* [8048a27](../../commit/8048a27) - __(ismail Akbudak)__ capitalize app name on views
|
403
|
+
|
404
|
+
#### v1.9.0
|
405
|
+
* [d76fee1](../../commit/d76fee1) - __(ismail Akbudak)__ update readme
|
406
|
+
* [e9518da](../../commit/e9518da) - __(ismail Akbudak)__ add fontawesome for login layout
|
407
|
+
* [ba99b3d](../../commit/ba99b3d) - __(ismail Akbudak)__ improve audit list page
|
408
|
+
* [ba23509](../../commit/ba23509) - __(ismail Akbudak)__ fix error
|
409
|
+
* [123b032](../../commit/123b032) - __(ismail Akbudak)__ fix error
|
410
|
+
* [a82b49b](../../commit/a82b49b) - __(ismail Akbudak)__ add locales for audit and link on admin portal
|
411
|
+
* [1872c56](../../commit/1872c56) - __(ismail Akbudak)__ add audit controller and shows
|
412
|
+
* [4739ee0](../../commit/4739ee0) - __(ismail Akbudak)__ add portal title
|
413
|
+
* [849a4d7](../../commit/849a4d7) - __(ismail Akbudak)__ add fontawesome to frontend
|
414
|
+
* [0003d38](../../commit/0003d38) - __(ismail Akbudak)__ complete user resource maangement
|
415
|
+
* [35b851f](../../commit/35b851f) - __(ismail Akbudak)__ fix filter query
|
416
|
+
* [f8712e2](../../commit/f8712e2) - __(ismail Akbudak)__ complete admin resource management
|
417
|
+
* [16ab759](../../commit/16ab759) - __(ismail Akbudak)__ add missing locales
|
418
|
+
* [8d81a6c](../../commit/8d81a6c) - __(ismail Akbudak)__ add locations controllers and views
|
419
|
+
* [90e4810](../../commit/90e4810) - __(ismail Akbudak)__ improve readme file
|
420
|
+
* [8621d10](../../commit/8621d10) - __(ismail Akbudak)__ remove git add command
|
421
|
+
* [dae4f83](../../commit/dae4f83) - __(ismail Akbudak)__ add other partial templates and add git commands
|
422
|
+
* [4b78fb7](../../commit/4b78fb7) - __(ismail Akbudak)__ remove unused methods
|
423
|
+
* [8b68e27](../../commit/8b68e27) - __(ismail Akbudak)__ change default favicon
|
424
|
+
* [89362ac](../../commit/89362ac) - __(ismail Akbudak)__ fix errors and improve contents
|
425
|
+
* [74ece79](../../commit/74ece79) - __(ismail Akbudak)__ fix error
|
426
|
+
* [1952557](../../commit/1952557) - __(ismail Akbudak)__ add localization for buttons
|
427
|
+
* [6e6fa6d](../../commit/6e6fa6d) - __(ismail Akbudak)__ add hq layouts partials
|
428
|
+
* [0c104e3](../../commit/0c104e3) - __(ismail Akbudak)__ fix small details
|
429
|
+
* [d19a4b5](../../commit/d19a4b5) - __(ismail Akbudak)__ fix error
|
430
|
+
* [4d454ef](../../commit/4d454ef) - __(ismail Akbudak)__ add force to remvove_file methods
|
431
|
+
* [a2617cf](../../commit/a2617cf) - __(ismail Akbudak)__ fix error
|
432
|
+
* [58527af](../../commit/58527af) - __(ismail Akbudak)__ add required change info to README file
|
433
|
+
* [23810c9](../../commit/23810c9) - __(ismail Akbudak)__ code refactor
|
434
|
+
* [aaa838d](../../commit/aaa838d) - __(ismail Akbudak)__ add user and admin mailer
|
435
|
+
* [bda5265](../../commit/bda5265) - __(ismail Akbudak)__ code refactor
|
436
|
+
* [6df8ef1](../../commit/6df8ef1) - __(ismail Akbudak)__ complete requeired files copy process
|
437
|
+
* [b25e4cf](../../commit/b25e4cf) - __(ismail Akbudak)__ add trix editor and add hq assets
|
438
|
+
* [30e3498](../../commit/30e3498) - __(ismail Akbudak)__ add locale for layouts
|
439
|
+
* [b8e1f1a](../../commit/b8e1f1a) - __(ismail Akbudak)__ complete copiying of files
|
440
|
+
* [6babcef](../../commit/6babcef) - __(ismail Akbudak)__ fix layout error
|
441
|
+
* [c4536a9](../../commit/c4536a9) - __(ismail Akbudak)__ add namespaces controller
|
442
|
+
* [b1b0386](../../commit/b1b0386) - __(ismail Akbudak)__ fix route.rb copy error
|
443
|
+
* [78536e3](../../commit/78536e3) - __(ismail Akbudak)__ fix error
|
444
|
+
* [8cd3bc8](../../commit/8cd3bc8) - __(ismail Akbudak)__ complete model structure
|
445
|
+
* [e2dc390](../../commit/e2dc390) - __(ismail Akbudak)__ add new config to bullet
|
446
|
+
* [2d5b90d](../../commit/2d5b90d) - __(ismail Akbudak)__ code refactor
|
447
|
+
* [1a2b3d2](../../commit/1a2b3d2) - __(ismail Akbudak)__ code refactor and add rollbar generate command
|
448
|
+
* [00b7251](../../commit/00b7251) - __(ismail Akbudak)__ fix setting and mailer error
|
449
|
+
* [ef5bf14](../../commit/ef5bf14) - __(ismail Akbudak)__ complete mailer environement settings
|
450
|
+
* [9e27376](../../commit/9e27376) - __(ismail Akbudak)__ complete assets
|
451
|
+
* [7b9ae50](../../commit/7b9ae50) - __(ismail Akbudak)__ fix missing locale error
|
452
|
+
* [60c8598](../../commit/60c8598) - __(ismail Akbudak)__ add email locale file and improve content of locale files
|
453
|
+
* [c459f7e](../../commit/c459f7e) - __(ismail Akbudak)__ add basci authentication concern and improve application controller content
|
454
|
+
* [0da5a11](../../commit/0da5a11) - __(ismail Akbudak)__ update ruby version and fix error
|
455
|
+
* [22a971d](../../commit/22a971d) - __(ismail Akbudak)__ update version and add new gems to template gemfile
|
456
|
+
|
457
|
+
#### v1.8.0
|
458
|
+
* [a2c77a3](../../commit/a2c77a3) - __(Ismail Akbudak)__ update changelog
|
3
459
|
* [1688060](../../commit/1688060) - __(Ismail Akbudak)__ update version v1.8.0
|
4
460
|
* [e96a7d0](../../commit/e96a7d0) - __(Ismail Akbudak)__ remove rack-timeout gem
|
5
461
|
* [67e0433](../../commit/67e0433) - __(Ismail Akbudak)__ update gem versions and add new gems
|
6
462
|
* [bfe1199](../../commit/bfe1199) - __(Ismail Akbudak)__ update recipes_matic gem version to v1.3.0
|
7
|
-
* [f437335](../../commit/f437335) - __(İsmail
|
8
|
-
* [f01dec8](../../commit/f01dec8) - __(ismail
|
463
|
+
* [f437335](../../commit/f437335) - __(İsmail)__ Update simple_form_bootstrap.rb
|
464
|
+
* [f01dec8](../../commit/f01dec8) - __(ismail akbudak)__ add chosen with boostrap template
|
9
465
|
|
10
466
|
#### v1.7.2
|
11
467
|
* [607fd19](../../commit/607fd19) - __(Ismail Akbudak)__ update changelog
|