From 0239a0a2c1e60b40f66e86743298d93e3b9d5c08 Mon Sep 17 00:00:00 2001 From: "esref.viduslu" Date: Fri, 27 Oct 2017 19:32:08 +0300 Subject: [PATCH 1/7] KBP-124 #time 4h - Haml and haml-rails gem integrate cybele gem. --- lib/cybele.rb | 1 + lib/cybele/app_builder.rb | 1 + lib/cybele/generators/app_generator.rb | 14 ++++++++++++++ lib/cybele/helpers/haml_and_haml_rails.rb | 18 ++++++++++++++++++ spec/features/new_default_project_spec.rb | 9 +++++++++ spec/features/new_not_default_project_spec.rb | 12 +++++++++++- templates/haml_and_haml_rails/haml_Gemfile.erb | 5 +++++ 7 files changed, 59 insertions(+), 1 deletion(-) create mode 100644 lib/cybele/helpers/haml_and_haml_rails.rb create mode 100644 templates/haml_and_haml_rails/haml_Gemfile.erb diff --git a/lib/cybele.rb b/lib/cybele.rb index e4fe635..75a4a2f 100644 --- a/lib/cybele.rb +++ b/lib/cybele.rb @@ -9,4 +9,5 @@ require 'cybele/helpers/simple_form' require 'cybele/helpers/show_for' require 'cybele/helpers/recipient_interceptor' +require 'cybele/helpers/haml_and_haml_rails' require 'cybele/app_builder' diff --git a/lib/cybele/app_builder.rb b/lib/cybele/app_builder.rb index 4190cc5..265f71c 100644 --- a/lib/cybele/app_builder.rb +++ b/lib/cybele/app_builder.rb @@ -9,6 +9,7 @@ class AppBuilder < Rails::AppBuilder include Cybele::Helpers::SimpleForm include Cybele::Helpers::RecipientInterceptor include Cybele::Helpers::ShowFor + include Cybele::Helpers::HamlAndHamlRails def readme template 'README.md.erb', diff --git a/lib/cybele/generators/app_generator.rb b/lib/cybele/generators/app_generator.rb index d558233..0d0f8ab 100644 --- a/lib/cybele/generators/app_generator.rb +++ b/lib/cybele/generators/app_generator.rb @@ -54,6 +54,12 @@ class AppGenerator < Rails::Generators::AppGenerator default: false, group: :cybele, desc: 'Skip show_for integration. Default: don\'t skip' + class_option :skip_haml_and_haml_rails, + type: :boolean, + aliases: nil, + default: false, + group: :cybele, + desc: 'Skip haml and haml-rails integration. Default: don\'t skip' def initialize(*args) super @@ -68,6 +74,7 @@ def initialize(*args) option_with_ask_yes(:skip_sidekiq) option_with_ask_yes(:skip_simple_form) option_with_ask_yes(:skip_show_for) + option_with_ask_yes(:skip_haml_and_haml_rails) @options.freeze end @@ -76,6 +83,7 @@ def customize_gemfile build :add_gems build :add_simple_form_gem unless @options[:skip_simple_form] build :add_show_for_gem unless @options[:skip_show_for] + build :add_haml_and_haml_rails_gems unless @options[:skip_haml_and_haml_rails] bundle_command 'install --binstubs=bin/stubs' end @@ -148,6 +156,12 @@ def setup_simple_form build :configure_simple_form end + def setup_haml_and_haml_rails + return if @options[:skip_haml_and_haml_rails] + say 'Setting up haml and generate haml-rails', :green + build :configure_haml_and_haml_rails + end + def add_staging_secret_key say 'Add staging secret key to secret.yml file', :green build :add_staging_secret_key_to_secrets_yml diff --git a/lib/cybele/helpers/haml_and_haml_rails.rb b/lib/cybele/helpers/haml_and_haml_rails.rb new file mode 100644 index 0000000..c258767 --- /dev/null +++ b/lib/cybele/helpers/haml_and_haml_rails.rb @@ -0,0 +1,18 @@ +# frozen_string_literal: true + +module Cybele + module Helpers + module HamlAndHamlRails + def configure_haml_and_haml_rails + # Add initializers + bundle_command 'exec rails generate haml:application_layout convert' + remove_file 'app/views/layouts/application.html.erb' + end + + def add_haml_and_haml_rails_gems + # Add Gems + append_file('Gemfile', template_content('haml_and_haml_rails/haml_Gemfile.erb')) + end + end + end +end diff --git a/spec/features/new_default_project_spec.rb b/spec/features/new_default_project_spec.rb index 7122adf..1f39623 100644 --- a/spec/features/new_default_project_spec.rb +++ b/spec/features/new_default_project_spec.rb @@ -169,4 +169,13 @@ secret_file = content('config/secrets.yml') expect(secret_file).to match('staging') end + + it 'uses haml and haml_rails' do + gemfile_file = content('Gemfile') + expect(gemfile_file).to match(/^gem 'haml'/) + expect(gemfile_file).to match(/^gem 'haml-rails'/) + + expect(File).not_to exist(file_project_path('app/views/layouts/application.html.erb')) + expect(File).to exist(file_project_path('app/views/layouts/application.html.haml')) + end end diff --git a/spec/features/new_not_default_project_spec.rb b/spec/features/new_not_default_project_spec.rb index 4d2ba8e..838ec04 100644 --- a/spec/features/new_not_default_project_spec.rb +++ b/spec/features/new_not_default_project_spec.rb @@ -6,7 +6,8 @@ before(:all) do drop_dummy_database remove_project_directory - run_cybele('--database=sqlite3 --skip-create-database --skip-sidekiq --skip-simple-form --skip-show-for') + # TODO rubocop metrics/linelength problem + run_cybele('--database=sqlite3 --skip-create-database --skip-sidekiq --skip-simple-form --skip-show-for --skip-haml-and-haml-rails') setup_app_dependencies end @@ -152,4 +153,13 @@ secret_file = content('config/secrets.yml') expect(secret_file).to match('staging') end + + it 'uses haml and haml_rails' do + gemfile_file = content('Gemfile') + expect(gemfile_file).not_to match(/^gem 'haml'/) + expect(gemfile_file).not_to match(/^gem 'haml-rails'/) + + expect(File).to exist(file_project_path('app/views/layouts/application.html.erb')) + expect(File).not_to exist(file_project_path('app/views/layouts/application.html.haml')) + end end diff --git a/templates/haml_and_haml_rails/haml_Gemfile.erb b/templates/haml_and_haml_rails/haml_Gemfile.erb new file mode 100644 index 0000000..9effe0b --- /dev/null +++ b/templates/haml_and_haml_rails/haml_Gemfile.erb @@ -0,0 +1,5 @@ + +# Haml is a templating engine for HTML. +gem 'haml', '~> 5.0', '>= 5.0.4' +# Haml-rails provides Haml generators for Rails. +gem 'haml-rails', '~> 1.0' \ No newline at end of file From 6264cf3b4da51691554fc808a5c775e62d262ea0 Mon Sep 17 00:00:00 2001 From: "esref.viduslu" Date: Mon, 30 Oct 2017 11:14:55 +0300 Subject: [PATCH 2/7] KBP-124 #time 15m - New not default projectc spec edited --- spec/features/new_not_default_project_spec.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spec/features/new_not_default_project_spec.rb b/spec/features/new_not_default_project_spec.rb index 838ec04..d272610 100644 --- a/spec/features/new_not_default_project_spec.rb +++ b/spec/features/new_not_default_project_spec.rb @@ -6,8 +6,8 @@ before(:all) do drop_dummy_database remove_project_directory - # TODO rubocop metrics/linelength problem - run_cybele('--database=sqlite3 --skip-create-database --skip-sidekiq --skip-simple-form --skip-show-for --skip-haml-and-haml-rails') + run_cybele('--database=sqlite3 --skip-create-database --skip-sidekiq --skip-simple-form --skip-show-for'\ + ' --skip-haml-and-haml-rails') setup_app_dependencies end @@ -154,7 +154,7 @@ expect(secret_file).to match('staging') end - it 'uses haml and haml_rails' do + it 'do not use haml and haml_rails' do gemfile_file = content('Gemfile') expect(gemfile_file).not_to match(/^gem 'haml'/) expect(gemfile_file).not_to match(/^gem 'haml-rails'/) From 98e36cde4aa607e0855415ca5beedda79237c2e8 Mon Sep 17 00:00:00 2001 From: "esref.viduslu" Date: Mon, 30 Oct 2017 12:20:33 +0300 Subject: [PATCH 3/7] KBP-124 #time 15m - File and folder naming changed --- lib/cybele.rb | 2 +- lib/cybele/app_builder.rb | 2 +- lib/cybele/generators/app_generator.rb | 12 ++++++------ .../helpers/{haml_and_haml_rails.rb => haml.rb} | 8 ++++---- spec/features/new_default_project_spec.rb | 2 +- spec/features/new_not_default_project_spec.rb | 4 ++-- .../{haml_and_haml_rails => haml}/haml_Gemfile.erb | 0 7 files changed, 15 insertions(+), 15 deletions(-) rename lib/cybele/helpers/{haml_and_haml_rails.rb => haml.rb} (59%) rename templates/{haml_and_haml_rails => haml}/haml_Gemfile.erb (100%) diff --git a/lib/cybele.rb b/lib/cybele.rb index 75a4a2f..38d8c46 100644 --- a/lib/cybele.rb +++ b/lib/cybele.rb @@ -9,5 +9,5 @@ require 'cybele/helpers/simple_form' require 'cybele/helpers/show_for' require 'cybele/helpers/recipient_interceptor' -require 'cybele/helpers/haml_and_haml_rails' +require 'cybele/helpers/haml' require 'cybele/app_builder' diff --git a/lib/cybele/app_builder.rb b/lib/cybele/app_builder.rb index 265f71c..df8ed17 100644 --- a/lib/cybele/app_builder.rb +++ b/lib/cybele/app_builder.rb @@ -9,7 +9,7 @@ class AppBuilder < Rails::AppBuilder include Cybele::Helpers::SimpleForm include Cybele::Helpers::RecipientInterceptor include Cybele::Helpers::ShowFor - include Cybele::Helpers::HamlAndHamlRails + include Cybele::Helpers::Haml def readme template 'README.md.erb', diff --git a/lib/cybele/generators/app_generator.rb b/lib/cybele/generators/app_generator.rb index 0d0f8ab..4ce6e94 100644 --- a/lib/cybele/generators/app_generator.rb +++ b/lib/cybele/generators/app_generator.rb @@ -54,7 +54,7 @@ class AppGenerator < Rails::Generators::AppGenerator default: false, group: :cybele, desc: 'Skip show_for integration. Default: don\'t skip' - class_option :skip_haml_and_haml_rails, + class_option :skip_haml, type: :boolean, aliases: nil, default: false, @@ -74,7 +74,7 @@ def initialize(*args) option_with_ask_yes(:skip_sidekiq) option_with_ask_yes(:skip_simple_form) option_with_ask_yes(:skip_show_for) - option_with_ask_yes(:skip_haml_and_haml_rails) + option_with_ask_yes(:skip_haml) @options.freeze end @@ -83,7 +83,7 @@ def customize_gemfile build :add_gems build :add_simple_form_gem unless @options[:skip_simple_form] build :add_show_for_gem unless @options[:skip_show_for] - build :add_haml_and_haml_rails_gems unless @options[:skip_haml_and_haml_rails] + build :add_haml_gems unless @options[:skip_haml] bundle_command 'install --binstubs=bin/stubs' end @@ -156,10 +156,10 @@ def setup_simple_form build :configure_simple_form end - def setup_haml_and_haml_rails - return if @options[:skip_haml_and_haml_rails] + def setup_haml + return if @options[:skip_haml] say 'Setting up haml and generate haml-rails', :green - build :configure_haml_and_haml_rails + build :configure_haml end def add_staging_secret_key diff --git a/lib/cybele/helpers/haml_and_haml_rails.rb b/lib/cybele/helpers/haml.rb similarity index 59% rename from lib/cybele/helpers/haml_and_haml_rails.rb rename to lib/cybele/helpers/haml.rb index c258767..5b2dc52 100644 --- a/lib/cybele/helpers/haml_and_haml_rails.rb +++ b/lib/cybele/helpers/haml.rb @@ -2,16 +2,16 @@ module Cybele module Helpers - module HamlAndHamlRails - def configure_haml_and_haml_rails + module Haml + def configure_haml # Add initializers bundle_command 'exec rails generate haml:application_layout convert' remove_file 'app/views/layouts/application.html.erb' end - def add_haml_and_haml_rails_gems + def add_haml_gems # Add Gems - append_file('Gemfile', template_content('haml_and_haml_rails/haml_Gemfile.erb')) + append_file('Gemfile', template_content('haml/haml_Gemfile.erb')) end end end diff --git a/spec/features/new_default_project_spec.rb b/spec/features/new_default_project_spec.rb index 1f39623..aa63036 100644 --- a/spec/features/new_default_project_spec.rb +++ b/spec/features/new_default_project_spec.rb @@ -170,7 +170,7 @@ expect(secret_file).to match('staging') end - it 'uses haml and haml_rails' do + it 'uses haml' do gemfile_file = content('Gemfile') expect(gemfile_file).to match(/^gem 'haml'/) expect(gemfile_file).to match(/^gem 'haml-rails'/) diff --git a/spec/features/new_not_default_project_spec.rb b/spec/features/new_not_default_project_spec.rb index d272610..667c0e2 100644 --- a/spec/features/new_not_default_project_spec.rb +++ b/spec/features/new_not_default_project_spec.rb @@ -7,7 +7,7 @@ drop_dummy_database remove_project_directory run_cybele('--database=sqlite3 --skip-create-database --skip-sidekiq --skip-simple-form --skip-show-for'\ - ' --skip-haml-and-haml-rails') + ' --skip-haml') setup_app_dependencies end @@ -154,7 +154,7 @@ expect(secret_file).to match('staging') end - it 'do not use haml and haml_rails' do + it 'do not use haml' do gemfile_file = content('Gemfile') expect(gemfile_file).not_to match(/^gem 'haml'/) expect(gemfile_file).not_to match(/^gem 'haml-rails'/) diff --git a/templates/haml_and_haml_rails/haml_Gemfile.erb b/templates/haml/haml_Gemfile.erb similarity index 100% rename from templates/haml_and_haml_rails/haml_Gemfile.erb rename to templates/haml/haml_Gemfile.erb From ea61a85c070ff407d507a1e5653a805907b27a00 Mon Sep 17 00:00:00 2001 From: FatihAvsan Date: Mon, 30 Oct 2017 16:47:52 +0300 Subject: [PATCH 4/7] KBP-142 #time 4h - added VERSION.txt --- lib/cybele/app_builder.rb | 5 +++++ lib/cybele/generators/app_generator.rb | 5 +++++ spec/features/new_default_project_spec.rb | 4 ++++ spec/features/new_not_default_project_spec.rb | 5 ++++- templates/Gemfile.erb | 2 +- templates/VERSION.txt | 1 + 6 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 templates/VERSION.txt diff --git a/lib/cybele/app_builder.rb b/lib/cybele/app_builder.rb index 9f0b5e1..14315a7 100644 --- a/lib/cybele/app_builder.rb +++ b/lib/cybele/app_builder.rb @@ -35,6 +35,11 @@ def add_ruby_version copy_file 'ruby-version', '.ruby-version' end + def add_cybele_version + copy_file 'VERSION.txt', 'VERSION.txt' + run 'ln -s ../VERSION.txt public/VERSION.txt' + end + def use_postgres_config_template template 'postgresql_database.yml.erb', 'config/database.yml', diff --git a/lib/cybele/generators/app_generator.rb b/lib/cybele/generators/app_generator.rb index e19ae78..2eabc45 100644 --- a/lib/cybele/generators/app_generator.rb +++ b/lib/cybele/generators/app_generator.rb @@ -89,6 +89,11 @@ def setup_ruby_version build :add_ruby_version end + def setup_cybele_version + say 'Add .VERSION.txt file', :green + build :add_cybele_version + end + def remove_files_we_dont_need say 'Remove files we don\'t need', :green build :remove_readme_rdoc diff --git a/spec/features/new_default_project_spec.rb b/spec/features/new_default_project_spec.rb index 9ec88c3..05d9b49 100644 --- a/spec/features/new_default_project_spec.rb +++ b/spec/features/new_default_project_spec.rb @@ -69,6 +69,10 @@ expect(locale_file).to match('destroy:') end + it 'uses cybele_version' do + expect(File).to exist(file_project_path('VERSION.txt')) + end + it 'uses rollbar' do gemfile_file = content('Gemfile') expect(gemfile_file).to match(/^gem 'rollbar'/) diff --git a/spec/features/new_not_default_project_spec.rb b/spec/features/new_not_default_project_spec.rb index 5cda8ef..ca9dac8 100644 --- a/spec/features/new_not_default_project_spec.rb +++ b/spec/features/new_not_default_project_spec.rb @@ -168,7 +168,6 @@ expect(locale_file).to match('view:') end - it 'uses recipient_interceptor' do gemfile_file = content('Gemfile') expect(gemfile_file).to match(/^gem 'recipient_interceptor'/) @@ -177,6 +176,10 @@ expect(config_staging_file).to match('RecipientInterceptor.new') end + it 'uses cybele_version' do + expect(File).to exist(file_project_path('VERSION.txt')) + end + it 'do not use simple_form' do gemfile_file = content('Gemfile') expect(gemfile_file).not_to match(/^gem 'simple_form'/) diff --git a/templates/Gemfile.erb b/templates/Gemfile.erb index b733e14..100126a 100644 --- a/templates/Gemfile.erb +++ b/templates/Gemfile.erb @@ -26,4 +26,4 @@ gem 'roo', '~> 2.7', '>= 2.7.1' group :development, :test do gem 'colorize', '~> 0.8.1' gem 'better_errors', '~> 2.4' -end \ No newline at end of file +end diff --git a/templates/VERSION.txt b/templates/VERSION.txt new file mode 100644 index 0000000..9ff151c --- /dev/null +++ b/templates/VERSION.txt @@ -0,0 +1 @@ +v0.1.0 \ No newline at end of file From 600ce7b1fc91f1b90d030a954bf85f5da5c0fa1e Mon Sep 17 00:00:00 2001 From: FatihAvsan Date: Mon, 30 Oct 2017 17:31:46 +0300 Subject: [PATCH 5/7] KBP-143 #time 30m - updated CHANGELOG.md --- CHANGELOG.md | 159 ++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 157 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cfc7d01..073c24b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,166 @@ #### [Current] + * [ea61a85](../../commit/ea61a85) - __(FatihAvsan)__ KBP-142 #time 4h - added VERSION.txt + * [8434185](../../commit/8434185) - __(Fatih Avsan)__ Merged in feature/locale_format_into_language (pull request [#8](../../issues/8)) + +KBP-139 #time 2h - configure locale language + +Approved-by: Hamdi Bayhan +Approved-by: İsmail Akbudak + + * [f78931e](../../commit/f78931e) - __(FatihAvsan)__ KBP-139 #time 30m - added english language files + * [1090abc](../../commit/1090abc) - __(FatihAvsan)__ KBP-139 #time 15m - fixed code + * [cbb1c0e](../../commit/cbb1c0e) - __(FatihAvsan)__ KBP-139 #time 10m - update pull request + * [8844855](../../commit/8844855) - __(Fatih Avsan)__ Merged in feature/intagrate_important_gems (pull request [#7](../../issues/7)) + +KBP-134 #time 3h - intagrete important gems + +Approved-by: Hamdi Bayhan +Approved-by: Eşref VİDUŞLU +Approved-by: İsmail Akbudak + + * [e7f9411](../../commit/e7f9411) - __(FatihAvsan)__ KBP-139 #time 2h - configure locale language + * [48e2991](../../commit/48e2991) - __(FatihAvsan)__ KBP-134 #time 5m - fixed conflict + * [3e3da9b](../../commit/3e3da9b) - __(FatihAvsan)__ KBP-134 #time 3h - intagrete important gems + * [3072884](../../commit/3072884) - __(Fatih Avsan)__ Merged in feature/integrate_show_for_gem (pull request [#6](../../issues/6)) + +KBP-132 #time 4h - integrate show_for gem to cybele + +Approved-by: Hamdi Bayhan +Approved-by: Eşref VİDUŞLU +Approved-by: İsmail Akbudak + + * [2714d2e](../../commit/2714d2e) - __(FatihAvsan)__ KBP-132 #time 10m - fixed rubocop error + * [fe43535](../../commit/fe43535) - __(FatihAvsan)__ KBP-132 #time 6h - integrate show_for gem to cybele + * [3f132b4](../../commit/3f132b4) - __(Hamdi Bayhan)__ Merged in feature/integrate_recipient_interceptor_gem (pull request [#5](../../issues/5)) + +KBP-125 KBP-126 KBP-128 KBP-127 KBP-136Feature/integrate recipient interceptor gem + +Approved-by: İsmail Akbudak +Approved-by: Fatih Avsan + + * [e6d287c](../../commit/e6d287c) - __(hamdibayhan)__ KBP-127 #time 30m -Code was improved after rubocop + * [f207980](../../commit/f207980) - __(hamdibayhan)__ KBP-127 #time 5m -Code was improved + * [8f67ade](../../commit/8f67ade) - __(hamdibayhan)__ KBP-127 #time 5m - Files were moved to self main folders + * [6e386e5](../../commit/6e386e5) - __(hamdibayhan)__ KBP-127 #time 1m - Code was improved + * [f0ba41a](../../commit/f0ba41a) - __(hamdibayhan)__ KBP-127 #time 90m - Code was improved + * [6ae4d7b](../../commit/6ae4d7b) - __(hamdibayhan)__ KBP-127 #time 3h - Code was improved and simple_form gem was moved to optional choose + * [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 + * [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 + * [2dd6b15](../../commit/2dd6b15) - __(hamdibayhan)__ KBP-127 #time 40m - simple_form gem was integrated + * [6142c7a](../../commit/6142c7a) - __(hamdibayhan)__ KBP-128 #time 20m - Integrate rollbar GEM + * [08199a0](../../commit/08199a0) - __(hamdibayhan)__ KBP-126 #time 40m - Integrate config GEM and fill settings.yml file + * [e37e096](../../commit/e37e096) - __(hamdibayhan)__ KBP-125 #time 4h - Integrate recipient_interceptor GEM + * [5efa2dc](../../commit/5efa2dc) - __(İsmail Akbudak)__ Merged in feature/integrate_responder (pull request [#4](../../issues/4)) + +KBP-121 integrate responder + +Approved-by: Tayfun Öziş ERİKAN + + * [95f9a5c](../../commit/95f9a5c) - __(İsmail Akbudak)__ KBP-121 #time 1h implement cli helper specs + * [e87c3d5](../../commit/e87c3d5) - __(İsmail Akbudak)__ KBP-121 #time 2h implement thor ask questions for cybele options + * [74e8468](../../commit/74e8468) - __(İsmail Akbudak)__ KBP-121 #time 7h implement responders gem and code refactor for app builder + * [bd60c8e](../../commit/bd60c8e) - __(İsmail Akbudak)__ Merged in feature/integrate_sidekiq (pull request [#3](../../issues/3)) + +KBP-133 #time 4h implement sidekiq integration + + * [ad5062f](../../commit/ad5062f) - __(İsmail Akbudak)__ KBP-133 #time 4h implement sidekiq integration + * [69e5e31](../../commit/69e5e31) - __(İsmail Akbudak)__ Merged in feature/integrate_postgresql (pull request [#2](../../issues/2)) + +KBP-120 integrate postgresql as a default for cybele + + * [382cffe](../../commit/382cffe) - __(İsmail Akbudak)__ KBP-120 #time 5m update postgresql database template file pool size + * [91bbd0e](../../commit/91bbd0e) - __(İsmail Akbudak)__ KBP-120 #time 5m remove unnecessary file for robocop + * [13a508b](../../commit/13a508b) - __(İsmail Akbudak)__ KBP-120 #time 3h implement postgresql as a default for cybele + * [3dc9205](../../commit/3dc9205) - __(İsmail Akbudak)__ Merged in feature/rails_upgrade (pull request [#1](../../issues/1)) + +Remove old files and start to create Rails 5 App + + * [4e0c7fe](../../commit/4e0c7fe) - __(İsmail Akbudak)__ Add option for use heroku and update rails version + * [1d1cfc1](../../commit/1d1cfc1) - __(İsmail Akbudak)__ Remove old files and start to create Rails 5 App + * [e3f3dba](../../commit/e3f3dba) - __(İsmail Akbudak)__ Merge tag 'v1.9.2' into develop + +v1.9.2 + +#### v1.9.2 + * [214a3f5](../../commit/214a3f5) - __(İsmail Akbudak)__ update version v1.9.2 + * [b0ea802](../../commit/b0ea802) - __(İsmail Akbudak)__ fix errors + * [dcf32d1](../../commit/dcf32d1) - __(İsmail Akbudak)__ [#116](../../issues/116) add heroku procfile + * [ca9bd3f](../../commit/ca9bd3f) - __(İsmail Akbudak)__ [#117](../../issues/117) remove sinatra gem from group + * [9fe6b69](../../commit/9fe6b69) - __(İsmail Akbudak)__ [#118](../../issues/118) remove unnccessary keyword + * [ffd2569](../../commit/ffd2569) - __(İsmail Akbudak)__ [#119](../../issues/119) fix wrong keyword + * [159d406](../../commit/159d406) - __(İsmail Akbudak)__ [#120](../../issues/120) remove unused rake task + * [8e420a5](../../commit/8e420a5) - __(İsmail Akbudak)__ [#122](../../issues/122) add before filter for time zone setter method + * [7b6cb4c](../../commit/7b6cb4c) - __(İsmail Akbudak)__ [#123](../../issues/123) change application layout and add profile link to welcome page and navigation bar + * [61cf830](../../commit/61cf830) - __(İsmail Akbudak)__ [#124](../../issues/124) initialize client side validation and enable on forms + * [4632634](../../commit/4632634) - __(İsmail Akbudak)__ [#125](../../issues/125) fix element data toggle + +#### v1.9.1 + * [3cbf830](../../commit/3cbf830) - __(ismail Akbudak)__ fix indent error + * [fe34adf](../../commit/fe34adf) - __(ismail Akbudak)__ update version v1.9.1 + * [8048a27](../../commit/8048a27) - __(ismail Akbudak)__ capitalize app name on views + +#### v1.9.0 + * [d76fee1](../../commit/d76fee1) - __(ismail Akbudak)__ update readme + * [e9518da](../../commit/e9518da) - __(ismail Akbudak)__ add fontawesome for login layout + * [ba99b3d](../../commit/ba99b3d) - __(ismail Akbudak)__ improve audit list page + * [ba23509](../../commit/ba23509) - __(ismail Akbudak)__ fix error + * [123b032](../../commit/123b032) - __(ismail Akbudak)__ fix error + * [a82b49b](../../commit/a82b49b) - __(ismail Akbudak)__ add locales for audit and link on admin portal + * [1872c56](../../commit/1872c56) - __(ismail Akbudak)__ add audit controller and shows + * [4739ee0](../../commit/4739ee0) - __(ismail Akbudak)__ add portal title + * [849a4d7](../../commit/849a4d7) - __(ismail Akbudak)__ add fontawesome to frontend + * [0003d38](../../commit/0003d38) - __(ismail Akbudak)__ complete user resource maangement + * [35b851f](../../commit/35b851f) - __(ismail Akbudak)__ fix filter query + * [f8712e2](../../commit/f8712e2) - __(ismail Akbudak)__ complete admin resource management + * [16ab759](../../commit/16ab759) - __(ismail Akbudak)__ add missing locales + * [8d81a6c](../../commit/8d81a6c) - __(ismail Akbudak)__ add locations controllers and views + * [90e4810](../../commit/90e4810) - __(ismail Akbudak)__ improve readme file + * [8621d10](../../commit/8621d10) - __(ismail Akbudak)__ remove git add command + * [dae4f83](../../commit/dae4f83) - __(ismail Akbudak)__ add other partial templates and add git commands + * [4b78fb7](../../commit/4b78fb7) - __(ismail Akbudak)__ remove unused methods + * [8b68e27](../../commit/8b68e27) - __(ismail Akbudak)__ change default favicon + * [89362ac](../../commit/89362ac) - __(ismail Akbudak)__ fix errors and improve contents + * [74ece79](../../commit/74ece79) - __(ismail Akbudak)__ fix error + * [1952557](../../commit/1952557) - __(ismail Akbudak)__ add localization for buttons + * [6e6fa6d](../../commit/6e6fa6d) - __(ismail Akbudak)__ add hq layouts partials + * [0c104e3](../../commit/0c104e3) - __(ismail Akbudak)__ fix small details + * [d19a4b5](../../commit/d19a4b5) - __(ismail Akbudak)__ fix error + * [4d454ef](../../commit/4d454ef) - __(ismail Akbudak)__ add force to remvove_file methods + * [a2617cf](../../commit/a2617cf) - __(ismail Akbudak)__ fix error + * [58527af](../../commit/58527af) - __(ismail Akbudak)__ add required change info to README file + * [23810c9](../../commit/23810c9) - __(ismail Akbudak)__ code refactor + * [aaa838d](../../commit/aaa838d) - __(ismail Akbudak)__ add user and admin mailer + * [bda5265](../../commit/bda5265) - __(ismail Akbudak)__ code refactor + * [6df8ef1](../../commit/6df8ef1) - __(ismail Akbudak)__ complete requeired files copy process + * [b25e4cf](../../commit/b25e4cf) - __(ismail Akbudak)__ add trix editor and add hq assets + * [30e3498](../../commit/30e3498) - __(ismail Akbudak)__ add locale for layouts + * [b8e1f1a](../../commit/b8e1f1a) - __(ismail Akbudak)__ complete copiying of files + * [6babcef](../../commit/6babcef) - __(ismail Akbudak)__ fix layout error + * [c4536a9](../../commit/c4536a9) - __(ismail Akbudak)__ add namespaces controller + * [b1b0386](../../commit/b1b0386) - __(ismail Akbudak)__ fix route.rb copy error + * [78536e3](../../commit/78536e3) - __(ismail Akbudak)__ fix error + * [8cd3bc8](../../commit/8cd3bc8) - __(ismail Akbudak)__ complete model structure + * [e2dc390](../../commit/e2dc390) - __(ismail Akbudak)__ add new config to bullet + * [2d5b90d](../../commit/2d5b90d) - __(ismail Akbudak)__ code refactor + * [1a2b3d2](../../commit/1a2b3d2) - __(ismail Akbudak)__ code refactor and add rollbar generate command + * [00b7251](../../commit/00b7251) - __(ismail Akbudak)__ fix setting and mailer error + * [ef5bf14](../../commit/ef5bf14) - __(ismail Akbudak)__ complete mailer environement settings + * [9e27376](../../commit/9e27376) - __(ismail Akbudak)__ complete assets + * [7b9ae50](../../commit/7b9ae50) - __(ismail Akbudak)__ fix missing locale error + * [60c8598](../../commit/60c8598) - __(ismail Akbudak)__ add email locale file and improve content of locale files + * [c459f7e](../../commit/c459f7e) - __(ismail Akbudak)__ add basci authentication concern and improve application controller content + * [0da5a11](../../commit/0da5a11) - __(ismail Akbudak)__ update ruby version and fix error + * [22a971d](../../commit/22a971d) - __(ismail Akbudak)__ update version and add new gems to template gemfile + +#### v1.8.0 + * [a2c77a3](../../commit/a2c77a3) - __(Ismail Akbudak)__ update changelog * [1688060](../../commit/1688060) - __(Ismail Akbudak)__ update version v1.8.0 * [e96a7d0](../../commit/e96a7d0) - __(Ismail Akbudak)__ remove rack-timeout gem * [67e0433](../../commit/67e0433) - __(Ismail Akbudak)__ update gem versions and add new gems * [bfe1199](../../commit/bfe1199) - __(Ismail Akbudak)__ update recipes_matic gem version to v1.3.0 - * [f437335](../../commit/f437335) - __(İsmail Akbudak)__ Update simple_form_bootstrap.rb - * [f01dec8](../../commit/f01dec8) - __(ismail Akbudak)__ add chosen with boostrap template + * [f437335](../../commit/f437335) - __(İsmail)__ Update simple_form_bootstrap.rb + * [f01dec8](../../commit/f01dec8) - __(ismail akbudak)__ add chosen with boostrap template #### v1.7.2 * [607fd19](../../commit/607fd19) - __(Ismail Akbudak)__ update changelog From 2b60565c3d3cc1b0bc8e397ca070fe40eb8d0daf Mon Sep 17 00:00:00 2001 From: FatihAvsan Date: Tue, 31 Oct 2017 09:43:11 +0300 Subject: [PATCH 6/7] KBP-143 #time 30m - delete CAHNGELOG.md and added test for public/VERSION.txt --- CHANGELOG.md | 486 ------------------ spec/features/new_default_project_spec.rb | 1 + spec/features/new_not_default_project_spec.rb | 1 + 3 files changed, 2 insertions(+), 486 deletions(-) delete mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 073c24b..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,486 +0,0 @@ - -#### [Current] - * [ea61a85](../../commit/ea61a85) - __(FatihAvsan)__ KBP-142 #time 4h - added VERSION.txt - * [8434185](../../commit/8434185) - __(Fatih Avsan)__ Merged in feature/locale_format_into_language (pull request [#8](../../issues/8)) - -KBP-139 #time 2h - configure locale language - -Approved-by: Hamdi Bayhan -Approved-by: İsmail Akbudak - - * [f78931e](../../commit/f78931e) - __(FatihAvsan)__ KBP-139 #time 30m - added english language files - * [1090abc](../../commit/1090abc) - __(FatihAvsan)__ KBP-139 #time 15m - fixed code - * [cbb1c0e](../../commit/cbb1c0e) - __(FatihAvsan)__ KBP-139 #time 10m - update pull request - * [8844855](../../commit/8844855) - __(Fatih Avsan)__ Merged in feature/intagrate_important_gems (pull request [#7](../../issues/7)) - -KBP-134 #time 3h - intagrete important gems - -Approved-by: Hamdi Bayhan -Approved-by: Eşref VİDUŞLU -Approved-by: İsmail Akbudak - - * [e7f9411](../../commit/e7f9411) - __(FatihAvsan)__ KBP-139 #time 2h - configure locale language - * [48e2991](../../commit/48e2991) - __(FatihAvsan)__ KBP-134 #time 5m - fixed conflict - * [3e3da9b](../../commit/3e3da9b) - __(FatihAvsan)__ KBP-134 #time 3h - intagrete important gems - * [3072884](../../commit/3072884) - __(Fatih Avsan)__ Merged in feature/integrate_show_for_gem (pull request [#6](../../issues/6)) - -KBP-132 #time 4h - integrate show_for gem to cybele - -Approved-by: Hamdi Bayhan -Approved-by: Eşref VİDUŞLU -Approved-by: İsmail Akbudak - - * [2714d2e](../../commit/2714d2e) - __(FatihAvsan)__ KBP-132 #time 10m - fixed rubocop error - * [fe43535](../../commit/fe43535) - __(FatihAvsan)__ KBP-132 #time 6h - integrate show_for gem to cybele - * [3f132b4](../../commit/3f132b4) - __(Hamdi Bayhan)__ Merged in feature/integrate_recipient_interceptor_gem (pull request [#5](../../issues/5)) - -KBP-125 KBP-126 KBP-128 KBP-127 KBP-136Feature/integrate recipient interceptor gem - -Approved-by: İsmail Akbudak -Approved-by: Fatih Avsan - - * [e6d287c](../../commit/e6d287c) - __(hamdibayhan)__ KBP-127 #time 30m -Code was improved after rubocop - * [f207980](../../commit/f207980) - __(hamdibayhan)__ KBP-127 #time 5m -Code was improved - * [8f67ade](../../commit/8f67ade) - __(hamdibayhan)__ KBP-127 #time 5m - Files were moved to self main folders - * [6e386e5](../../commit/6e386e5) - __(hamdibayhan)__ KBP-127 #time 1m - Code was improved - * [f0ba41a](../../commit/f0ba41a) - __(hamdibayhan)__ KBP-127 #time 90m - Code was improved - * [6ae4d7b](../../commit/6ae4d7b) - __(hamdibayhan)__ KBP-127 #time 3h - Code was improved and simple_form gem was moved to optional choose - * [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 - * [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 - * [2dd6b15](../../commit/2dd6b15) - __(hamdibayhan)__ KBP-127 #time 40m - simple_form gem was integrated - * [6142c7a](../../commit/6142c7a) - __(hamdibayhan)__ KBP-128 #time 20m - Integrate rollbar GEM - * [08199a0](../../commit/08199a0) - __(hamdibayhan)__ KBP-126 #time 40m - Integrate config GEM and fill settings.yml file - * [e37e096](../../commit/e37e096) - __(hamdibayhan)__ KBP-125 #time 4h - Integrate recipient_interceptor GEM - * [5efa2dc](../../commit/5efa2dc) - __(İsmail Akbudak)__ Merged in feature/integrate_responder (pull request [#4](../../issues/4)) - -KBP-121 integrate responder - -Approved-by: Tayfun Öziş ERİKAN - - * [95f9a5c](../../commit/95f9a5c) - __(İsmail Akbudak)__ KBP-121 #time 1h implement cli helper specs - * [e87c3d5](../../commit/e87c3d5) - __(İsmail Akbudak)__ KBP-121 #time 2h implement thor ask questions for cybele options - * [74e8468](../../commit/74e8468) - __(İsmail Akbudak)__ KBP-121 #time 7h implement responders gem and code refactor for app builder - * [bd60c8e](../../commit/bd60c8e) - __(İsmail Akbudak)__ Merged in feature/integrate_sidekiq (pull request [#3](../../issues/3)) - -KBP-133 #time 4h implement sidekiq integration - - * [ad5062f](../../commit/ad5062f) - __(İsmail Akbudak)__ KBP-133 #time 4h implement sidekiq integration - * [69e5e31](../../commit/69e5e31) - __(İsmail Akbudak)__ Merged in feature/integrate_postgresql (pull request [#2](../../issues/2)) - -KBP-120 integrate postgresql as a default for cybele - - * [382cffe](../../commit/382cffe) - __(İsmail Akbudak)__ KBP-120 #time 5m update postgresql database template file pool size - * [91bbd0e](../../commit/91bbd0e) - __(İsmail Akbudak)__ KBP-120 #time 5m remove unnecessary file for robocop - * [13a508b](../../commit/13a508b) - __(İsmail Akbudak)__ KBP-120 #time 3h implement postgresql as a default for cybele - * [3dc9205](../../commit/3dc9205) - __(İsmail Akbudak)__ Merged in feature/rails_upgrade (pull request [#1](../../issues/1)) - -Remove old files and start to create Rails 5 App - - * [4e0c7fe](../../commit/4e0c7fe) - __(İsmail Akbudak)__ Add option for use heroku and update rails version - * [1d1cfc1](../../commit/1d1cfc1) - __(İsmail Akbudak)__ Remove old files and start to create Rails 5 App - * [e3f3dba](../../commit/e3f3dba) - __(İsmail Akbudak)__ Merge tag 'v1.9.2' into develop - -v1.9.2 - -#### v1.9.2 - * [214a3f5](../../commit/214a3f5) - __(İsmail Akbudak)__ update version v1.9.2 - * [b0ea802](../../commit/b0ea802) - __(İsmail Akbudak)__ fix errors - * [dcf32d1](../../commit/dcf32d1) - __(İsmail Akbudak)__ [#116](../../issues/116) add heroku procfile - * [ca9bd3f](../../commit/ca9bd3f) - __(İsmail Akbudak)__ [#117](../../issues/117) remove sinatra gem from group - * [9fe6b69](../../commit/9fe6b69) - __(İsmail Akbudak)__ [#118](../../issues/118) remove unnccessary keyword - * [ffd2569](../../commit/ffd2569) - __(İsmail Akbudak)__ [#119](../../issues/119) fix wrong keyword - * [159d406](../../commit/159d406) - __(İsmail Akbudak)__ [#120](../../issues/120) remove unused rake task - * [8e420a5](../../commit/8e420a5) - __(İsmail Akbudak)__ [#122](../../issues/122) add before filter for time zone setter method - * [7b6cb4c](../../commit/7b6cb4c) - __(İsmail Akbudak)__ [#123](../../issues/123) change application layout and add profile link to welcome page and navigation bar - * [61cf830](../../commit/61cf830) - __(İsmail Akbudak)__ [#124](../../issues/124) initialize client side validation and enable on forms - * [4632634](../../commit/4632634) - __(İsmail Akbudak)__ [#125](../../issues/125) fix element data toggle - -#### v1.9.1 - * [3cbf830](../../commit/3cbf830) - __(ismail Akbudak)__ fix indent error - * [fe34adf](../../commit/fe34adf) - __(ismail Akbudak)__ update version v1.9.1 - * [8048a27](../../commit/8048a27) - __(ismail Akbudak)__ capitalize app name on views - -#### v1.9.0 - * [d76fee1](../../commit/d76fee1) - __(ismail Akbudak)__ update readme - * [e9518da](../../commit/e9518da) - __(ismail Akbudak)__ add fontawesome for login layout - * [ba99b3d](../../commit/ba99b3d) - __(ismail Akbudak)__ improve audit list page - * [ba23509](../../commit/ba23509) - __(ismail Akbudak)__ fix error - * [123b032](../../commit/123b032) - __(ismail Akbudak)__ fix error - * [a82b49b](../../commit/a82b49b) - __(ismail Akbudak)__ add locales for audit and link on admin portal - * [1872c56](../../commit/1872c56) - __(ismail Akbudak)__ add audit controller and shows - * [4739ee0](../../commit/4739ee0) - __(ismail Akbudak)__ add portal title - * [849a4d7](../../commit/849a4d7) - __(ismail Akbudak)__ add fontawesome to frontend - * [0003d38](../../commit/0003d38) - __(ismail Akbudak)__ complete user resource maangement - * [35b851f](../../commit/35b851f) - __(ismail Akbudak)__ fix filter query - * [f8712e2](../../commit/f8712e2) - __(ismail Akbudak)__ complete admin resource management - * [16ab759](../../commit/16ab759) - __(ismail Akbudak)__ add missing locales - * [8d81a6c](../../commit/8d81a6c) - __(ismail Akbudak)__ add locations controllers and views - * [90e4810](../../commit/90e4810) - __(ismail Akbudak)__ improve readme file - * [8621d10](../../commit/8621d10) - __(ismail Akbudak)__ remove git add command - * [dae4f83](../../commit/dae4f83) - __(ismail Akbudak)__ add other partial templates and add git commands - * [4b78fb7](../../commit/4b78fb7) - __(ismail Akbudak)__ remove unused methods - * [8b68e27](../../commit/8b68e27) - __(ismail Akbudak)__ change default favicon - * [89362ac](../../commit/89362ac) - __(ismail Akbudak)__ fix errors and improve contents - * [74ece79](../../commit/74ece79) - __(ismail Akbudak)__ fix error - * [1952557](../../commit/1952557) - __(ismail Akbudak)__ add localization for buttons - * [6e6fa6d](../../commit/6e6fa6d) - __(ismail Akbudak)__ add hq layouts partials - * [0c104e3](../../commit/0c104e3) - __(ismail Akbudak)__ fix small details - * [d19a4b5](../../commit/d19a4b5) - __(ismail Akbudak)__ fix error - * [4d454ef](../../commit/4d454ef) - __(ismail Akbudak)__ add force to remvove_file methods - * [a2617cf](../../commit/a2617cf) - __(ismail Akbudak)__ fix error - * [58527af](../../commit/58527af) - __(ismail Akbudak)__ add required change info to README file - * [23810c9](../../commit/23810c9) - __(ismail Akbudak)__ code refactor - * [aaa838d](../../commit/aaa838d) - __(ismail Akbudak)__ add user and admin mailer - * [bda5265](../../commit/bda5265) - __(ismail Akbudak)__ code refactor - * [6df8ef1](../../commit/6df8ef1) - __(ismail Akbudak)__ complete requeired files copy process - * [b25e4cf](../../commit/b25e4cf) - __(ismail Akbudak)__ add trix editor and add hq assets - * [30e3498](../../commit/30e3498) - __(ismail Akbudak)__ add locale for layouts - * [b8e1f1a](../../commit/b8e1f1a) - __(ismail Akbudak)__ complete copiying of files - * [6babcef](../../commit/6babcef) - __(ismail Akbudak)__ fix layout error - * [c4536a9](../../commit/c4536a9) - __(ismail Akbudak)__ add namespaces controller - * [b1b0386](../../commit/b1b0386) - __(ismail Akbudak)__ fix route.rb copy error - * [78536e3](../../commit/78536e3) - __(ismail Akbudak)__ fix error - * [8cd3bc8](../../commit/8cd3bc8) - __(ismail Akbudak)__ complete model structure - * [e2dc390](../../commit/e2dc390) - __(ismail Akbudak)__ add new config to bullet - * [2d5b90d](../../commit/2d5b90d) - __(ismail Akbudak)__ code refactor - * [1a2b3d2](../../commit/1a2b3d2) - __(ismail Akbudak)__ code refactor and add rollbar generate command - * [00b7251](../../commit/00b7251) - __(ismail Akbudak)__ fix setting and mailer error - * [ef5bf14](../../commit/ef5bf14) - __(ismail Akbudak)__ complete mailer environement settings - * [9e27376](../../commit/9e27376) - __(ismail Akbudak)__ complete assets - * [7b9ae50](../../commit/7b9ae50) - __(ismail Akbudak)__ fix missing locale error - * [60c8598](../../commit/60c8598) - __(ismail Akbudak)__ add email locale file and improve content of locale files - * [c459f7e](../../commit/c459f7e) - __(ismail Akbudak)__ add basci authentication concern and improve application controller content - * [0da5a11](../../commit/0da5a11) - __(ismail Akbudak)__ update ruby version and fix error - * [22a971d](../../commit/22a971d) - __(ismail Akbudak)__ update version and add new gems to template gemfile - -#### v1.8.0 - * [a2c77a3](../../commit/a2c77a3) - __(Ismail Akbudak)__ update changelog - * [1688060](../../commit/1688060) - __(Ismail Akbudak)__ update version v1.8.0 - * [e96a7d0](../../commit/e96a7d0) - __(Ismail Akbudak)__ remove rack-timeout gem - * [67e0433](../../commit/67e0433) - __(Ismail Akbudak)__ update gem versions and add new gems - * [bfe1199](../../commit/bfe1199) - __(Ismail Akbudak)__ update recipes_matic gem version to v1.3.0 - * [f437335](../../commit/f437335) - __(İsmail)__ Update simple_form_bootstrap.rb - * [f01dec8](../../commit/f01dec8) - __(ismail akbudak)__ add chosen with boostrap template - -#### v1.7.2 - * [607fd19](../../commit/607fd19) - __(Ismail Akbudak)__ update changelog - * [81533c0](../../commit/81533c0) - __(Ismail Akbudak)__ Bump version v1.7.2 - * [90eef0f](../../commit/90eef0f) - __(Ismail Akbudak)__ fix warning on build gemspec - -#### v1.7.1 - * [e8ad41a](../../commit/e8ad41a) - __(Ismail Akbudak)__ update changelog - * [0921829](../../commit/0921829) - __(Ismail Akbudak)__ Bump version v1.7.1 - * [8d94293](../../commit/8d94293) - __(Ismail Akbudak)__ Update ruby and rails versions - -#### v1.7.0 - * [d31374d](../../commit/d31374d) - __(Tayfun Öziş ERİKAN)__ Bump version v1.7.0 - * [81358eb](../../commit/81358eb) - __(Tayfun Öziş ERİKAN)__ Some typos were fixed - * [0918eb6](../../commit/0918eb6) - __(Tayfun Öziş ERİKAN)__ Gemfile.lock was removed - * [648ed0a](../../commit/648ed0a) - __(Tayfun Öziş ERİKAN)__ File name was changed - * [c4cb51c](../../commit/c4cb51c) - __(Tayfun Öziş ERİKAN)__ License and version files were updated - * [f5b99e9](../../commit/f5b99e9) - __(Tayfun Öziş ERİKAN)__ Improvements were done - Ruby 2.2.3 version was added - Rails 4.2.3 version was added - Gemfile.lock was removed - Gemspec was improved - * [cf14f9e](../../commit/cf14f9e) - __(Ismail Akbudak)__ fix user - * [e0a7b20](../../commit/e0a7b20) - __(Ismail Akbudak)__ add ssh port for capistrano - * [171e45f](../../commit/171e45f) - __(Ismail Akbudak)__ add first deploy task for capistrano - * [1433ad6](../../commit/1433ad6) - __(Ismail Akbudak)__ improvement - * [a5158f0](../../commit/a5158f0) - __(Ismail Akbudak)__ fix errors - * [5ade7e4](../../commit/5ade7e4) - __(Ismail Akbudak)__ add new features - * [952a035](../../commit/952a035) - __(Ismail Akbudak)__ add devise return path - * [7c55b0e](../../commit/7c55b0e) - __(Ismail Akbudak)__ add capistrano 3.4 with settings - * [4930faa](../../commit/4930faa) - __(Ismail Akbudak)__ add notification messages view - * [16c8780](../../commit/16c8780) - __(Ismail Akbudak)__ implement localizations to view - * [0102c3b](../../commit/0102c3b) - __(Ismail Akbudak)__ add missing file - * [693c179](../../commit/693c179) - __(Ismail Akbudak)__ add localization files - * [388cee0](../../commit/388cee0) - __(Ismail Akbudak)__ add new methods and remove old methods - * [e7fd568](../../commit/e7fd568) - __(Ismail Akbudak)__ update gems version - * [44cfd06](../../commit/44cfd06) - __(Murat Kemal BAYGÜN)__ TB-65 Fix link - * [4bde163](../../commit/4bde163) - __(Murat Kemal BAYGÜN)__ TB-65 Fix contributor link - * [e0a97bd](../../commit/e0a97bd) - __(Ahmet Sezgin Duran)__ Merge tag '1.6.2' into develop - -1.6.2 1.6.2 - - * [822cbf3](../../commit/822cbf3) - __(Onur Özgür ÖZKAN)__ Update GEM version. - * [eb6a510](../../commit/eb6a510) - __(Ahmet Sezgin Duran)__ Merge tag '1.6.1' into develop - -1.6.1 1.6.1 - -#### 1.6.2 - * [584eb94](../../commit/584eb94) - __(Ahmet Sezgin Duran)__ TB-60 #time 1m Bump version 1.6.2 and dump changelog - * [653ad04](../../commit/653ad04) - __(Ahmet Sezgin Duran)__ TB-60 #time 30m Fix profile controller errors - -#### 1.6.1 - * [844f583](../../commit/844f583) - __(Ahmet Sezgin Duran)__ TB-44 #time 1m Bump version 1.6.1 - * [6ce514d](../../commit/6ce514d) - __(Ahmet Sezgin Duran)__ TB-44 #time 5m Add Cybele migration info - * [32e09e2](../../commit/32e09e2) - __(Onur Özgür ÖZKAN)__ Update ruby version 2.1.2 - -#### 1.6.0 - * [86508de](../../commit/86508de) - __(Muhammet DİLEK)__ bump version 1.6.0 - * [758c2c9](../../commit/758c2c9) - __(Muhammet DİLEK)__ TB-20 ruby migrated 2.1.1 - * [f7a65f8](../../commit/f7a65f8) - __(Muhammet DİLEK)__ TB-20 rails migrated 4.1.1 - * [406971d](../../commit/406971d) - __(Muhammet DİLEK)__ TB-34 secret_token.rb removed from gitignore - * [d95e561](../../commit/d95e561) - __(Ahmet Sezgin Duran)__ LAB-31 #time 1m Add named logo - * [d83d051](../../commit/d83d051) - __(Ahmet Sezgin Duran)__ LAB-31 #time 2m Update README.md - -#### 1.5.1 - * [43a2ee1](../../commit/43a2ee1) - __(Muhammet DİLEK)__ bump version 1.5.1 - * [c5b07c0](../../commit/c5b07c0) - __(Muhammet DİLEK)__ Gemfile.lock fixed - * [6d35777](../../commit/6d35777) - __(Onur Özgür ÖZKAN)__ Update gems version - * [e6171a2](../../commit/e6171a2) - __(Muhammet DİLEK)__ bump version 1.5.0 - * [f49b2e1](../../commit/f49b2e1) - __(Muhammet DİLEK)__ TB-2 improve profile - * [0f86715](../../commit/0f86715) - __(hamitturkukaya)__ TB-2 Admin and user profiles added - * [0c4f887](../../commit/0c4f887) - __(Muhammet DİLEK)__ TB-14 custom 404 page added - * [617a7c1](../../commit/617a7c1) - __(Muhammet DİLEK)__ TB-14 custom 500 page added - * [32593a0](../../commit/32593a0) - __(hamitturkukaya)__ TB-26 hierapolis-rails version upgraded - * [9c91097](../../commit/9c91097) - __(Muhammet DİLEK)__ TB-16 devise gem updated - * [cefb812](../../commit/cefb812) - __(Muhammet DİLEK)__ TB-23 dev.rake added - * [97fca16](../../commit/97fca16) - __(Muhammet DİLEK)__ TB-24 show initial file added - * [d9eb93a](../../commit/d9eb93a) - __(Ahmet Sezgin Duran)__ TB-2 #time 15m Add user profile editor - * [0273c31](../../commit/0273c31) - __(Ahmet Sezgin Duran)__ TB-2 #time 30m Add admin profile editor - * [10e6992](../../commit/10e6992) - __(Onur Ozgur OZKAN)__ Merge remote-tracking branch 'origin/develop' into develop - * [304a51d](../../commit/304a51d) - __(Onur Ozgur OZKAN)__ Fixed .ruby-version filename. - * [5b193d7](../../commit/5b193d7) - __(Ahmet Sezgin Duran)__ TB-3 #time 30m Add Bullet gem's configuration - -#### 1.4.0 - * [06dbf38](../../commit/06dbf38) - __(Muhammet DİLEK)__ bump version 1.4.0 - * [cf40aec](../../commit/cf40aec) - __(Muhammet DİLEK)__ rails_best_practices gem added - * [39a7cf2](../../commit/39a7cf2) - __(Onur Özgür ÖZKAN)__ Merge pull request [#114](../../issues/114) from marjinal1st/version-patch - -TB-7 #time 10m Update Rails version in cybele_Gemfile - * [9ff6283](../../commit/9ff6283) - __(Ahmet Sezgin Duran)__ TB-7 #time 10m Update Rails version in cybele_Gemfile - * [278c844](../../commit/278c844) - __(Onur Özgür ÖZKAN)__ Update gems version. - * [56f2621](../../commit/56f2621) - __(Onur Özgür ÖZKAN)__ Change ruby version 2.0.0-p353 - * [21137a8](../../commit/21137a8) - __(Onur Özgür ÖZKAN)__ Update cybele_Gemfile - * [d53dc47](../../commit/d53dc47) - __(Onur Özgür ÖZKAN)__ Update kangal version 1.2.3 - * [9c457d2](../../commit/9c457d2) - __(Onur Özgür ÖZKAN)__ Update recipes_matic gem version to 1.0.0 - * [6a1c519](../../commit/6a1c519) - __(Onur Ozgur OZKAN)__ version fixed - -#### 1.3.0 - * [870066a](../../commit/870066a) - __(Onur Ozgur OZKAN)__ hump version 1.3.0 - * [d482e6b](../../commit/d482e6b) - __(Muhammet DİLEK)__ Merge pull request [#112](../../issues/112) from sbagdat/patch-1 - -Update cybele_gitignore - * [1cc0c24](../../commit/1cc0c24) - __(Sıtkı Bağdat)__ Update cybele_gitignore - * [a3e1185](../../commit/a3e1185) - __(Onur Özgür ÖZKAN)__ [#111](../../issues/111) Configure number currency for ₺ unit - * [8b13d54](../../commit/8b13d54) - __(hamitturkukaya)__ [#110](../../issues/110) paperclip amazon s3 settings added to initializers - * [05948c9](../../commit/05948c9) - __(hamitturkukaya)__ [#110](../../issues/110) paperclip amazon s3 settings added to initializers - * [8d41713](../../commit/8d41713) - __(Muhammet DİLEK)__ # 109 bootstrap-sass and compass-rails updated - -#### 1.2.0 - * [00e244b](../../commit/00e244b) - __(Muhammet DİLEK)__ bump version 1.2.0 - * [499e2f7](../../commit/499e2f7) - __(Onur Ozgur OZKAN)__ update kangal version 1.1.0 - * [e220eb5](../../commit/e220eb5) - __(Onur Ozgur OZKAN)__ [#106](../../issues/106) Don't copy application.rb from template - * [5affe99](../../commit/5affe99) - __(Onur Ozgur OZKAN)__ Typo fixed. Add a new line. - * [563c704](../../commit/563c704) - __(Onur Ozgur OZKAN)__ [#105](../../issues/105) update rails 4.0.2 - * [b2deb95](../../commit/b2deb95) - __(hamitturkukaya)__ [#96](../../issues/96) S3 settings moved to the Aws scope - * [3a02a10](../../commit/3a02a10) - __(H. Türkü Kaya)__ [#96](../../issues/96) Http protocol fixed in cybele-gemfile - * [b7cc645](../../commit/b7cc645) - __(H. Türkü Kaya)__ [#96](../../issues/96) amazon settings added to the enviromental settings - -#### 1.1.0 - * [98f1cdb](../../commit/98f1cdb) - __(Muhammet DİLEK)__ bump version 1.1.0 - * [c00cb14](../../commit/c00cb14) - __(Muhammet DİLEK)__ [#103](../../issues/103) secret_token.rb methodology changed - * [b44ce53](../../commit/b44ce53) - __(Onur Özgür ÖZKAN)__ [#102](../../issues/102) Update rails to version 4.0.1 - * [59de9e1](../../commit/59de9e1) - __(Muhammet DİLEK)__ [#93](../../issues/93) recipes_matic latest gem version added - * [5080392](../../commit/5080392) - __(Muhammet DİLEK)__ [#93](../../issues/93) capistrano recipes added - * [443bf93](../../commit/443bf93) - __(H. Türkü Kaya)__ [#100](../../issues/100) SECURITY.md added - * [383d48f](../../commit/383d48f) - __(Muhammet DİLEK)__ Merge pull request [#99](../../issues/99) from marjinal1st/develop - -[#97](../../issues/97) Add secret_token.rb in gitignore - * [aa2e3ac](../../commit/aa2e3ac) - __(Ahmet Sezgin Duran)__ Add secret_token.rb in gitignore - * [a2caa79](../../commit/a2caa79) - __(Onur Özgür ÖZKAN)__ Update rails-i18n gem version - * [16c9331](../../commit/16c9331) - __(Muhammet DİLEK)__ update readme - -#### 1.0.0 - * [6ea6062](../../commit/6ea6062) - __(Muhammet DİLEK)__ bump version 1.0.0 - * [9d610b0](../../commit/9d610b0) - __(Muhammet DİLEK)__ [#89](../../issues/89) exception notification configuration added to environment files - * [4c00857](../../commit/4c00857) - __(Muhammet DİLEK)__ [#91](../../issues/91) staging configuration added - * [38ef9c5](../../commit/38ef9c5) - __(Muhammet DİLEK)__ [#90](../../issues/90) asset files updated - * [0710dd1](../../commit/0710dd1) - __(Tayfun Öziş ERİKAN)__ [#88](../../issues/88) RecipientInterceptor initial parameters was fixed. - * [fe6b690](../../commit/fe6b690) - __(Onur Ozgur OZKAN)__ [#87](../../issues/87) add time_zone to devise model - * [d87b845](../../commit/d87b845) - __(Onur Ozgur OZKAN)__ typo fixed. - -#### 0.10.1 - * [cb7eead](../../commit/cb7eead) - __(Muhammet DİLEK)__ bump version 0.10.1 - * [063a81e](../../commit/063a81e) - __(Muhammet DİLEK)__ dashboard base class fixed - -#### 0.10.0 - * [6e829f1](../../commit/6e829f1) - __(Muhammet DİLEK)__ bump version 0.10.0 - * [f73a240](../../commit/f73a240) - __(Muhammet DİLEK)__ [#85](../../issues/85) hierapolis-rails version fixed - * [49e4146](../../commit/49e4146) - __(Muhammet DİLEK)__ [#85](../../issues/85) hierapolis-rails added - * [0de956e](../../commit/0de956e) - __(Onur Ozgur OZKAN)__ [#78](../../issues/78) Add shoulda-context and show_for gems - * [bf4ecab](../../commit/bf4ecab) - __(Onur Ozgur OZKAN)__ [#62](../../issues/62) good bye message. - * [d40697a](../../commit/d40697a) - __(Onur Ozgur OZKAN)__ [#75](../../issues/75) Add rails-i18n gem - * [eef5314](../../commit/eef5314) - __(Onur Ozgur OZKAN)__ [#44](../../issues/44) Add staging env - * [1a6662e](../../commit/1a6662e) - __(Onur Ozgur OZKAN)__ [#83](../../issues/83) Improve Mandrill smtp settings - * [f8d303d](../../commit/f8d303d) - __(Onur Ozgur OZKAN)__ [#84](../../issues/84) Fixed http://www.kb.cert.org/vuls/id/380039 - * [be7e2aa](../../commit/be7e2aa) - __(Onur Ozgur OZKAN)__ [#82](../../issues/82) add .ruby-version file - * [c4da36f](../../commit/c4da36f) - __(Onur Ozgur OZKAN)__ [#81](../../issues/81) add .editorconfig file - * [e7ebf06](../../commit/e7ebf06) - __(Onur Ozgur OZKAN)__ [#71](../../issues/71) Typo fixed. - * [5b49ffd](../../commit/5b49ffd) - __(Onur Ozgur OZKAN)__ [#71](../../issues/71) Add annotate rake - * [13e7381](../../commit/13e7381) - __(Onur Ozgur OZKAN)__ [#71](../../issues/71) Add annotate_models gems - * [9057409](../../commit/9057409) - __(Onur Ozgur OZKAN)__ Update CHANGELOG.md - -Conflicts: - lib/cybele/app_builder.rb - lib/cybele/generators/app_generator.rb - - -Conflicts: - lib/cybele/version.rb - - * [dc93e6e](../../commit/dc93e6e) - __(Onur Ozgur OZKAN)__ [#70](../../issues/70) remove tomdocs - -#### 0.9.0 - * [0d6ef49](../../commit/0d6ef49) - __(Onur Ozgur OZKAN)__ bump version 0.9.0 - * [6a6ef73](../../commit/6a6ef73) - __(Onur Ozgur OZKAN)__ [#74](../../issues/74) remove tomdoc - * [3e37420](../../commit/3e37420) - __(Onur Ozgur OZKAN)__ [#66](../../issues/66) Add factory-girl-rails - * [ae6f239](../../commit/ae6f239) - __(Onur Ozgur OZKAN)__ [#65](../../issues/65) Add should-matchers gem - * [f0a307c](../../commit/f0a307c) - __(Onur Ozgur OZKAN)__ [#73](../../issues/73) fixed new line problem - * [a69f539](../../commit/a69f539) - __(Onur Ozgur OZKAN)__ [#73](../../issues/73) Add capybara gem - * [ee0ae05](../../commit/ee0ae05) - __(Onur Ozgur OZKAN)__ [#72](../../issues/72) && [#64](../../issues/64) **Add Kangal and Rspec Gems** - -- Add Kangal gem -- Add rspec-rails gem -- Generate rspec:install - - -#### 0.8.0 - * [d4722f5](../../commit/d4722f5) - __(Muhammet DİLEK)__ release version 0.8.0 - * [58bdb65](../../commit/58bdb65) - __(Muhammet DİLEK)__ [#69](../../issues/69) paperclip added - * [9186d02](../../commit/9186d02) - __(Muhammet DİLEK)__ [#67](../../issues/67) admins url changed - * [9ed2bc7](../../commit/9ed2bc7) - __(Muhammet DİLEK)__ [#68](../../issues/68) will_paginate added - -#### 0.7.0 - * [3c9a703](../../commit/3c9a703) - __(Onur Ozgur OZKAN)__ bump version 0.7.0 - * [e038328](../../commit/e038328) - __(Muhammet DİLEK)__ typo fix - -Conflicts: - lib/cybele/app_builder.rb - lib/cybele/generators/app_generator.rb - - * [b67bed5](../../commit/b67bed5) - __(Muhammet DİLEK)__ [#48](../../issues/48) [#49](../../issues/49) hq namespace added - * [9800524](../../commit/9800524) - __(Onur Ozgur OZKAN)__ [#63](../../issues/63) add tr.yml - * [50d52ba](../../commit/50d52ba) - __(Onur Ozgur OZKAN)__ [#63](../../issues/63) add simple_form.tr.yml - * [bea7012](../../commit/bea7012) - __(Onur Ozgur OZKAN)__ [#63](../../issues/63) remove devise.en.yml - * [3d53fb6](../../commit/3d53fb6) - __(Onur Ozgur OZKAN)__ [#39](../../issues/39) setup timezone - * [35ea960](../../commit/35ea960) - __(Onur Ozgur OZKAN)__ typo fixed - * [1db5ebd](../../commit/1db5ebd) - __(Onur Ozgur OZKAN)__ [#39](../../issues/39) set time_zone - * [b7e6c6c](../../commit/b7e6c6c) - __(Onur Ozgur OZKAN)__ typo fixed. - * [104e1aa](../../commit/104e1aa) - __(Onur Ozgur OZKAN)__ add gem version to README.md - * [92d196c](../../commit/92d196c) - __(Onur Ozgur OZKAN)__ [#60](../../issues/60) add katip gem - * [a514a58](../../commit/a514a58) - __(Onur Ozgur OZKAN)__ [#50](../../issues/50) Add devise-i18n gem - * [7773e3c](../../commit/7773e3c) - __(Onur Ozgur OZKAN)__ Merge remote-tracking branch 'origin/develop' into develop - * [9cab0cc](../../commit/9cab0cc) - __(Onur Ozgur OZKAN)__ [#58](../../issues/58) add changelog.md - * [37c8bef](../../commit/37c8bef) - __(Onur Ozgur OZKAN)__ [#58](../../issues/58) add changelog.md - * [1c9cc61](../../commit/1c9cc61) - __(Muhammet DİLEK)__ [#53](../../issues/53) welcome page added - * [e656995](../../commit/e656995) - __(Onur Özgür ÖZKAN)__ Merge pull request [#54](../../issues/54) from sbagdat/patch-1 - -Remove unnecessary lines for ignoring mac files - * [9d80dbf](../../commit/9d80dbf) - __(Sıtkı Bağdat)__ Update cybele_gitignore - * [6d6c585](../../commit/6d6c585) - __(Sıtkı Bağdat)__ Remove unnecessary lines for ignoring mac files - -```*.DS_Store``` and ```**/.DS_Store``` are not necessary to ignore mac filesystem dust. ```.DS_Store``` line is already enough to complete this task. - * [72fdaca](../../commit/72fdaca) - __(Onur Özgür ÖZKAN)__ typo fixed - * [016dd44](../../commit/016dd44) - __(Onur Ozgur OZKAN)__ typo fixed - -#### 0.6.0 - * [98b604b](../../commit/98b604b) - __(Onur Ozgur OZKAN)__ update readme.md - * [89ae9a1](../../commit/89ae9a1) - __(Onur Ozgur OZKAN)__ bump version 0.6.0 - * [24a4f23](../../commit/24a4f23) - __(Onur Ozgur OZKAN)__ [#52](../../issues/52) update gem versions - * [b49bfbe](../../commit/b49bfbe) - __(Onur Ozgur OZKAN)__ [#13](../../issues/13) remove unused method - -Conflicts: - templates/cybele_Gemfile - - * [efe0121](../../commit/efe0121) - __(Muhammet DİLEK)__ [#51](../../issues/51) compass-rails added and application.css configuration - * [0baf6fb](../../commit/0baf6fb) - __(Muhammet DİLEK)__ [#2](../../issues/2) devise views converted erb to haml - * [40fd639](../../commit/40fd639) - __(Muhammet DİLEK)__ [#2](../../issues/2) devise and user model made mandatory - * [9f8a199](../../commit/9f8a199) - __(Onur Özgür ÖZKAN)__ [#13](../../issues/13) add version number to gems - * [31b3693](../../commit/31b3693) - __(Murat Kemal BAYGÜN)__ [#13](../../issues/13) remove github repository option from exception_notification - * [8c9007d](../../commit/8c9007d) - __(Muhammet DİLEK)__ [#2](../../issues/2) devise added - * [93ccbfe](../../commit/93ccbfe) - __(Muhammet DİLEK)__ [#8](../../issues/8) add rails config - -#### 0.5.0 - * [a8048e0](../../commit/a8048e0) - __(Onur Özgür ÖZKAN)__ bump version 0.5.0 - * [699fd57](../../commit/699fd57) - __(Onur Özgür ÖZKAN)__ [#46](../../issues/46) change gem path and description - * [d03cb23](../../commit/d03cb23) - __(Onur Özgür ÖZKAN)__ [#13](../../issues/13) add exception notification - * [b7e4054](../../commit/b7e4054) - __(Onur Özgür ÖZKAN)__ [#13](../../issues/13) add exception notification - * [bfafbf1](../../commit/bfafbf1) - __(Onur Özgür ÖZKAN)__ [#46](../../issues/46) fixed repo path - * [7cf2df8](../../commit/7cf2df8) - __(Onur Özgür ÖZKAN)__ [#35](../../issues/35) close exception notification - * [20a81d4](../../commit/20a81d4) - __(Onur Özgür ÖZKAN)__ [#24](../../issues/24) setup simple form - * [a97c9ec](../../commit/a97c9ec) - __(Onur Özgür ÖZKAN)__ [#24](../../issues/24) setup simple form - * [9967bcc](../../commit/9967bcc) - __(Onur Özgür ÖZKAN)__ [#35](../../issues/35) add exception notification - * [26e1ac6](../../commit/26e1ac6) - __(Onur Özgür ÖZKAN)__ [#40](../../issues/40) Add better_errors, sextant, etc for development env - * [ac06ff6](../../commit/ac06ff6) - __(Onur Özgür ÖZKAN)__ [#35](../../issues/35) Add smtp setting - * [c8d4dc0](../../commit/c8d4dc0) - __(Onur Özgür ÖZKAN)__ [#35](../../issues/35) Add smtp setting - * [f9e05bb](../../commit/f9e05bb) - __(Onur Özgür ÖZKAN)__ [#35](../../issues/35) Add smtp setting - * [7fe8ce8](../../commit/7fe8ce8) - __(Onur Özgür ÖZKAN)__ [#41](../../issues/41) Add suspender link to README.md - -#### 0.4.1 - * [31252fa](../../commit/31252fa) - __(Onur Özgür ÖZKAN)__ bump version 0.4.1 - * [c51d836](../../commit/c51d836) - __(Onur Özgür ÖZKAN)__ Merge pull request [#43](../../issues/43) from sbagdat/patch-2 - -Update app_builder.rb thx @sbagdat - * [d2cd41c](../../commit/d2cd41c) - __(Sıtkı Bağdat)__ Remove unnecessary builds - -Removed 'remove_public_index' and 'remove_rails_logo_image' methods. - * [d01978f](../../commit/d01978f) - __(Sıtkı Bağdat)__ Update app_builder.rb - -In Rails 4, 'public/index.html' and 'rails.png' files are don't exist. A new Rails internal controller Rails::WelcomeController has been used to serve the dynamic welcome screen and rails.png image used as data-image. So I removed these lines from the file. - -#### 0.4.0 - * [a92094c](../../commit/a92094c) - __(Onur Özgür ÖZKAN)__ bump version 0.4.0 - * [f34206c](../../commit/f34206c) - __(Onur Özgür ÖZKAN)__ [#35](../../issues/35) setup smtp, setup open_letter - * [958bf5f](../../commit/958bf5f) - __(Onur Özgür ÖZKAN)__ [#34](../../issues/34) convert application.js to coffee and application.css to sass - * [0fcd684](../../commit/0fcd684) - __(Onur Özgür ÖZKAN)__ [#34](../../issues/34) generator generate sass instead of scss - * [cff434e](../../commit/cff434e) - __(Onur Özgür ÖZKAN)__ [#34](../../issues/34) add bootstrap-sass gem - * [97c83ba](../../commit/97c83ba) - __(Onur Özgür ÖZKAN)__ [#37](../../issues/37) setup gitignore files and folders - * [8f19ab2](../../commit/8f19ab2) - __(Onur Özgür ÖZKAN)__ [#38](../../issues/38) fixed strong_parameters generators - * [fe6b961](../../commit/fe6b961) - __(Onur Özgür ÖZKAN)__ typo fixed - * [2e370a3](../../commit/2e370a3) - __(Onur Özgür ÖZKAN)__ [#36](../../issues/36) setup database.yml and run rake db:create - * [14d7005](../../commit/14d7005) - __(Onur Özgür ÖZKAN)__ [#27](../../issues/27) add gemnasium service link - * [5af5c04](../../commit/5af5c04) - __(Onur Özgür ÖZKAN)__ [#25](../../issues/25) add responder gem to cybele - -#### 0.3.0 - * [7bdee87](../../commit/7bdee87) - __(Onur Özgür ÖZKAN)__ bump version - * [3a7d93f](../../commit/3a7d93f) - __(Onur Özgür ÖZKAN)__ [#33](../../issues/33) update README.md - -add semver.org -add tocdoc.org - - * [4b13eee](../../commit/4b13eee) - __(Onur Özgür ÖZKAN)__ [#27](../../issues/27) add codeclimate - * [ea548ad](../../commit/ea548ad) - __(Onur Özgür ÖZKAN)__ [#32](../../issues/32) remove rails logo - * [69dc256](../../commit/69dc256) - __(Onur Özgür ÖZKAN)__ fixed Gemfile.lock - -#### 0.2.0 - * [bb991e1](../../commit/bb991e1) - __(Onur Özgür ÖZKAN)__ Bump version. - * [ebff69d](../../commit/ebff69d) - __(Onur Özgür ÖZKAN)__ issue [#26](../../issues/26) replace files erb to haml - * [853260b](../../commit/853260b) - __(Onur Özgür ÖZKAN)__ issue [#31](../../issues/31) fixed Gemfile - * [593304f](../../commit/593304f) - __(Onur Özgür ÖZKAN)__ issue [#31](../../issues/31) replace Gemfile - * [29ddfb9](../../commit/29ddfb9) - __(Onur Özgür ÖZKAN)__ issue [#30](../../issues/30) add all rdoc - * [1af93d1](../../commit/1af93d1) - __(Onur Özgür ÖZKAN)__ issue [#29](../../issues/29) fixed Does it try to require a relative path? That's been removed in Ruby 1.9. - * [204d7df](../../commit/204d7df) - __(Onur Özgür ÖZKAN)__ support new release over rails 4.0.0.rc1 - * [311dd0a](../../commit/311dd0a) - __(Onur Özgür ÖZKAN)__ issue [#23](../../issues/23) improved readme.md - -- fix typo -- improve using section - - * [370e0be](../../commit/370e0be) - __(Onur Özgür ÖZKAN)__ issue [#22](../../issues/22) add rdoc rake task - -#### 0.1.0 - * [282b70c](../../commit/282b70c) - __(Onur Özgür ÖZKAN)__ Issues [#19](../../issues/19) [#20](../../issues/20) [#21](../../issues/21) Create a gem - -- Generate Rails 4.x -- Add README.md -- Remove public/index.html -- Remove README.rdoc - - * [eca13d5](../../commit/eca13d5) - __(Onur Özgür ÖZKAN)__ Update README.md - * [002ff21](../../commit/002ff21) - __(Onur Özgür ÖZKAN)__ Update README.md - * [be3c6a7](../../commit/be3c6a7) - __(Onur Özgür ÖZKAN)__ Update README.md - * [ae5bbe2](../../commit/ae5bbe2) - __(Onur Özgür ÖZKAN)__ add responders - * [4da6960](../../commit/4da6960) - __(Onur Özgür ÖZKAN)__ add devise and simple_form gem - * [eaaa1cd](../../commit/eaaa1cd) - __(Onur Özgür ÖZKAN)__ Remove MIT license just now. - * [9ec3295](../../commit/9ec3295) - __(Onur Özgür ÖZKAN)__ Update README.md - * [143d255](../../commit/143d255) - __(Onur Özgür ÖZKAN)__ Update README.md - * [9a14185](../../commit/9a14185) - __(Onur Özgür ÖZKAN)__ Update README.md - * [f45360e](../../commit/f45360e) - __(Onur Özgür ÖZKAN)__ Initial commit diff --git a/spec/features/new_default_project_spec.rb b/spec/features/new_default_project_spec.rb index 05d9b49..18cec96 100644 --- a/spec/features/new_default_project_spec.rb +++ b/spec/features/new_default_project_spec.rb @@ -71,6 +71,7 @@ it 'uses cybele_version' do expect(File).to exist(file_project_path('VERSION.txt')) + expect(File).to exist(file_project_path('public/VERSION.txt')) end it 'uses rollbar' do diff --git a/spec/features/new_not_default_project_spec.rb b/spec/features/new_not_default_project_spec.rb index ca9dac8..1a6b26c 100644 --- a/spec/features/new_not_default_project_spec.rb +++ b/spec/features/new_not_default_project_spec.rb @@ -178,6 +178,7 @@ it 'uses cybele_version' do expect(File).to exist(file_project_path('VERSION.txt')) + expect(File).to exist(file_project_path('public/VERSION.txt')) end it 'do not use simple_form' do From 3980e65727dd9bdb368d745d389f3f556e2ff10c Mon Sep 17 00:00:00 2001 From: FatihAvsan Date: Tue, 31 Oct 2017 10:13:14 +0300 Subject: [PATCH 7/7] KBP-143 #time 10m - code fixed --- CHANGELOG.md | 331 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 331 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..cfc7d01 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,331 @@ + +#### [Current] + * [1688060](../../commit/1688060) - __(Ismail Akbudak)__ update version v1.8.0 + * [e96a7d0](../../commit/e96a7d0) - __(Ismail Akbudak)__ remove rack-timeout gem + * [67e0433](../../commit/67e0433) - __(Ismail Akbudak)__ update gem versions and add new gems + * [bfe1199](../../commit/bfe1199) - __(Ismail Akbudak)__ update recipes_matic gem version to v1.3.0 + * [f437335](../../commit/f437335) - __(İsmail Akbudak)__ Update simple_form_bootstrap.rb + * [f01dec8](../../commit/f01dec8) - __(ismail Akbudak)__ add chosen with boostrap template + +#### v1.7.2 + * [607fd19](../../commit/607fd19) - __(Ismail Akbudak)__ update changelog + * [81533c0](../../commit/81533c0) - __(Ismail Akbudak)__ Bump version v1.7.2 + * [90eef0f](../../commit/90eef0f) - __(Ismail Akbudak)__ fix warning on build gemspec + +#### v1.7.1 + * [e8ad41a](../../commit/e8ad41a) - __(Ismail Akbudak)__ update changelog + * [0921829](../../commit/0921829) - __(Ismail Akbudak)__ Bump version v1.7.1 + * [8d94293](../../commit/8d94293) - __(Ismail Akbudak)__ Update ruby and rails versions + +#### v1.7.0 + * [d31374d](../../commit/d31374d) - __(Tayfun Öziş ERİKAN)__ Bump version v1.7.0 + * [81358eb](../../commit/81358eb) - __(Tayfun Öziş ERİKAN)__ Some typos were fixed + * [0918eb6](../../commit/0918eb6) - __(Tayfun Öziş ERİKAN)__ Gemfile.lock was removed + * [648ed0a](../../commit/648ed0a) - __(Tayfun Öziş ERİKAN)__ File name was changed + * [c4cb51c](../../commit/c4cb51c) - __(Tayfun Öziş ERİKAN)__ License and version files were updated + * [f5b99e9](../../commit/f5b99e9) - __(Tayfun Öziş ERİKAN)__ Improvements were done - Ruby 2.2.3 version was added - Rails 4.2.3 version was added - Gemfile.lock was removed - Gemspec was improved + * [cf14f9e](../../commit/cf14f9e) - __(Ismail Akbudak)__ fix user + * [e0a7b20](../../commit/e0a7b20) - __(Ismail Akbudak)__ add ssh port for capistrano + * [171e45f](../../commit/171e45f) - __(Ismail Akbudak)__ add first deploy task for capistrano + * [1433ad6](../../commit/1433ad6) - __(Ismail Akbudak)__ improvement + * [a5158f0](../../commit/a5158f0) - __(Ismail Akbudak)__ fix errors + * [5ade7e4](../../commit/5ade7e4) - __(Ismail Akbudak)__ add new features + * [952a035](../../commit/952a035) - __(Ismail Akbudak)__ add devise return path + * [7c55b0e](../../commit/7c55b0e) - __(Ismail Akbudak)__ add capistrano 3.4 with settings + * [4930faa](../../commit/4930faa) - __(Ismail Akbudak)__ add notification messages view + * [16c8780](../../commit/16c8780) - __(Ismail Akbudak)__ implement localizations to view + * [0102c3b](../../commit/0102c3b) - __(Ismail Akbudak)__ add missing file + * [693c179](../../commit/693c179) - __(Ismail Akbudak)__ add localization files + * [388cee0](../../commit/388cee0) - __(Ismail Akbudak)__ add new methods and remove old methods + * [e7fd568](../../commit/e7fd568) - __(Ismail Akbudak)__ update gems version + * [44cfd06](../../commit/44cfd06) - __(Murat Kemal BAYGÜN)__ TB-65 Fix link + * [4bde163](../../commit/4bde163) - __(Murat Kemal BAYGÜN)__ TB-65 Fix contributor link + * [e0a97bd](../../commit/e0a97bd) - __(Ahmet Sezgin Duran)__ Merge tag '1.6.2' into develop + +1.6.2 1.6.2 + + * [822cbf3](../../commit/822cbf3) - __(Onur Özgür ÖZKAN)__ Update GEM version. + * [eb6a510](../../commit/eb6a510) - __(Ahmet Sezgin Duran)__ Merge tag '1.6.1' into develop + +1.6.1 1.6.1 + +#### 1.6.2 + * [584eb94](../../commit/584eb94) - __(Ahmet Sezgin Duran)__ TB-60 #time 1m Bump version 1.6.2 and dump changelog + * [653ad04](../../commit/653ad04) - __(Ahmet Sezgin Duran)__ TB-60 #time 30m Fix profile controller errors + +#### 1.6.1 + * [844f583](../../commit/844f583) - __(Ahmet Sezgin Duran)__ TB-44 #time 1m Bump version 1.6.1 + * [6ce514d](../../commit/6ce514d) - __(Ahmet Sezgin Duran)__ TB-44 #time 5m Add Cybele migration info + * [32e09e2](../../commit/32e09e2) - __(Onur Özgür ÖZKAN)__ Update ruby version 2.1.2 + +#### 1.6.0 + * [86508de](../../commit/86508de) - __(Muhammet DİLEK)__ bump version 1.6.0 + * [758c2c9](../../commit/758c2c9) - __(Muhammet DİLEK)__ TB-20 ruby migrated 2.1.1 + * [f7a65f8](../../commit/f7a65f8) - __(Muhammet DİLEK)__ TB-20 rails migrated 4.1.1 + * [406971d](../../commit/406971d) - __(Muhammet DİLEK)__ TB-34 secret_token.rb removed from gitignore + * [d95e561](../../commit/d95e561) - __(Ahmet Sezgin Duran)__ LAB-31 #time 1m Add named logo + * [d83d051](../../commit/d83d051) - __(Ahmet Sezgin Duran)__ LAB-31 #time 2m Update README.md + +#### 1.5.1 + * [43a2ee1](../../commit/43a2ee1) - __(Muhammet DİLEK)__ bump version 1.5.1 + * [c5b07c0](../../commit/c5b07c0) - __(Muhammet DİLEK)__ Gemfile.lock fixed + * [6d35777](../../commit/6d35777) - __(Onur Özgür ÖZKAN)__ Update gems version + * [e6171a2](../../commit/e6171a2) - __(Muhammet DİLEK)__ bump version 1.5.0 + * [f49b2e1](../../commit/f49b2e1) - __(Muhammet DİLEK)__ TB-2 improve profile + * [0f86715](../../commit/0f86715) - __(hamitturkukaya)__ TB-2 Admin and user profiles added + * [0c4f887](../../commit/0c4f887) - __(Muhammet DİLEK)__ TB-14 custom 404 page added + * [617a7c1](../../commit/617a7c1) - __(Muhammet DİLEK)__ TB-14 custom 500 page added + * [32593a0](../../commit/32593a0) - __(hamitturkukaya)__ TB-26 hierapolis-rails version upgraded + * [9c91097](../../commit/9c91097) - __(Muhammet DİLEK)__ TB-16 devise gem updated + * [cefb812](../../commit/cefb812) - __(Muhammet DİLEK)__ TB-23 dev.rake added + * [97fca16](../../commit/97fca16) - __(Muhammet DİLEK)__ TB-24 show initial file added + * [d9eb93a](../../commit/d9eb93a) - __(Ahmet Sezgin Duran)__ TB-2 #time 15m Add user profile editor + * [0273c31](../../commit/0273c31) - __(Ahmet Sezgin Duran)__ TB-2 #time 30m Add admin profile editor + * [10e6992](../../commit/10e6992) - __(Onur Ozgur OZKAN)__ Merge remote-tracking branch 'origin/develop' into develop + * [304a51d](../../commit/304a51d) - __(Onur Ozgur OZKAN)__ Fixed .ruby-version filename. + * [5b193d7](../../commit/5b193d7) - __(Ahmet Sezgin Duran)__ TB-3 #time 30m Add Bullet gem's configuration + +#### 1.4.0 + * [06dbf38](../../commit/06dbf38) - __(Muhammet DİLEK)__ bump version 1.4.0 + * [cf40aec](../../commit/cf40aec) - __(Muhammet DİLEK)__ rails_best_practices gem added + * [39a7cf2](../../commit/39a7cf2) - __(Onur Özgür ÖZKAN)__ Merge pull request [#114](../../issues/114) from marjinal1st/version-patch + +TB-7 #time 10m Update Rails version in cybele_Gemfile + * [9ff6283](../../commit/9ff6283) - __(Ahmet Sezgin Duran)__ TB-7 #time 10m Update Rails version in cybele_Gemfile + * [278c844](../../commit/278c844) - __(Onur Özgür ÖZKAN)__ Update gems version. + * [56f2621](../../commit/56f2621) - __(Onur Özgür ÖZKAN)__ Change ruby version 2.0.0-p353 + * [21137a8](../../commit/21137a8) - __(Onur Özgür ÖZKAN)__ Update cybele_Gemfile + * [d53dc47](../../commit/d53dc47) - __(Onur Özgür ÖZKAN)__ Update kangal version 1.2.3 + * [9c457d2](../../commit/9c457d2) - __(Onur Özgür ÖZKAN)__ Update recipes_matic gem version to 1.0.0 + * [6a1c519](../../commit/6a1c519) - __(Onur Ozgur OZKAN)__ version fixed + +#### 1.3.0 + * [870066a](../../commit/870066a) - __(Onur Ozgur OZKAN)__ hump version 1.3.0 + * [d482e6b](../../commit/d482e6b) - __(Muhammet DİLEK)__ Merge pull request [#112](../../issues/112) from sbagdat/patch-1 + +Update cybele_gitignore + * [1cc0c24](../../commit/1cc0c24) - __(Sıtkı Bağdat)__ Update cybele_gitignore + * [a3e1185](../../commit/a3e1185) - __(Onur Özgür ÖZKAN)__ [#111](../../issues/111) Configure number currency for ₺ unit + * [8b13d54](../../commit/8b13d54) - __(hamitturkukaya)__ [#110](../../issues/110) paperclip amazon s3 settings added to initializers + * [05948c9](../../commit/05948c9) - __(hamitturkukaya)__ [#110](../../issues/110) paperclip amazon s3 settings added to initializers + * [8d41713](../../commit/8d41713) - __(Muhammet DİLEK)__ # 109 bootstrap-sass and compass-rails updated + +#### 1.2.0 + * [00e244b](../../commit/00e244b) - __(Muhammet DİLEK)__ bump version 1.2.0 + * [499e2f7](../../commit/499e2f7) - __(Onur Ozgur OZKAN)__ update kangal version 1.1.0 + * [e220eb5](../../commit/e220eb5) - __(Onur Ozgur OZKAN)__ [#106](../../issues/106) Don't copy application.rb from template + * [5affe99](../../commit/5affe99) - __(Onur Ozgur OZKAN)__ Typo fixed. Add a new line. + * [563c704](../../commit/563c704) - __(Onur Ozgur OZKAN)__ [#105](../../issues/105) update rails 4.0.2 + * [b2deb95](../../commit/b2deb95) - __(hamitturkukaya)__ [#96](../../issues/96) S3 settings moved to the Aws scope + * [3a02a10](../../commit/3a02a10) - __(H. Türkü Kaya)__ [#96](../../issues/96) Http protocol fixed in cybele-gemfile + * [b7cc645](../../commit/b7cc645) - __(H. Türkü Kaya)__ [#96](../../issues/96) amazon settings added to the enviromental settings + +#### 1.1.0 + * [98f1cdb](../../commit/98f1cdb) - __(Muhammet DİLEK)__ bump version 1.1.0 + * [c00cb14](../../commit/c00cb14) - __(Muhammet DİLEK)__ [#103](../../issues/103) secret_token.rb methodology changed + * [b44ce53](../../commit/b44ce53) - __(Onur Özgür ÖZKAN)__ [#102](../../issues/102) Update rails to version 4.0.1 + * [59de9e1](../../commit/59de9e1) - __(Muhammet DİLEK)__ [#93](../../issues/93) recipes_matic latest gem version added + * [5080392](../../commit/5080392) - __(Muhammet DİLEK)__ [#93](../../issues/93) capistrano recipes added + * [443bf93](../../commit/443bf93) - __(H. Türkü Kaya)__ [#100](../../issues/100) SECURITY.md added + * [383d48f](../../commit/383d48f) - __(Muhammet DİLEK)__ Merge pull request [#99](../../issues/99) from marjinal1st/develop + +[#97](../../issues/97) Add secret_token.rb in gitignore + * [aa2e3ac](../../commit/aa2e3ac) - __(Ahmet Sezgin Duran)__ Add secret_token.rb in gitignore + * [a2caa79](../../commit/a2caa79) - __(Onur Özgür ÖZKAN)__ Update rails-i18n gem version + * [16c9331](../../commit/16c9331) - __(Muhammet DİLEK)__ update readme + +#### 1.0.0 + * [6ea6062](../../commit/6ea6062) - __(Muhammet DİLEK)__ bump version 1.0.0 + * [9d610b0](../../commit/9d610b0) - __(Muhammet DİLEK)__ [#89](../../issues/89) exception notification configuration added to environment files + * [4c00857](../../commit/4c00857) - __(Muhammet DİLEK)__ [#91](../../issues/91) staging configuration added + * [38ef9c5](../../commit/38ef9c5) - __(Muhammet DİLEK)__ [#90](../../issues/90) asset files updated + * [0710dd1](../../commit/0710dd1) - __(Tayfun Öziş ERİKAN)__ [#88](../../issues/88) RecipientInterceptor initial parameters was fixed. + * [fe6b690](../../commit/fe6b690) - __(Onur Ozgur OZKAN)__ [#87](../../issues/87) add time_zone to devise model + * [d87b845](../../commit/d87b845) - __(Onur Ozgur OZKAN)__ typo fixed. + +#### 0.10.1 + * [cb7eead](../../commit/cb7eead) - __(Muhammet DİLEK)__ bump version 0.10.1 + * [063a81e](../../commit/063a81e) - __(Muhammet DİLEK)__ dashboard base class fixed + +#### 0.10.0 + * [6e829f1](../../commit/6e829f1) - __(Muhammet DİLEK)__ bump version 0.10.0 + * [f73a240](../../commit/f73a240) - __(Muhammet DİLEK)__ [#85](../../issues/85) hierapolis-rails version fixed + * [49e4146](../../commit/49e4146) - __(Muhammet DİLEK)__ [#85](../../issues/85) hierapolis-rails added + * [0de956e](../../commit/0de956e) - __(Onur Ozgur OZKAN)__ [#78](../../issues/78) Add shoulda-context and show_for gems + * [bf4ecab](../../commit/bf4ecab) - __(Onur Ozgur OZKAN)__ [#62](../../issues/62) good bye message. + * [d40697a](../../commit/d40697a) - __(Onur Ozgur OZKAN)__ [#75](../../issues/75) Add rails-i18n gem + * [eef5314](../../commit/eef5314) - __(Onur Ozgur OZKAN)__ [#44](../../issues/44) Add staging env + * [1a6662e](../../commit/1a6662e) - __(Onur Ozgur OZKAN)__ [#83](../../issues/83) Improve Mandrill smtp settings + * [f8d303d](../../commit/f8d303d) - __(Onur Ozgur OZKAN)__ [#84](../../issues/84) Fixed http://www.kb.cert.org/vuls/id/380039 + * [be7e2aa](../../commit/be7e2aa) - __(Onur Ozgur OZKAN)__ [#82](../../issues/82) add .ruby-version file + * [c4da36f](../../commit/c4da36f) - __(Onur Ozgur OZKAN)__ [#81](../../issues/81) add .editorconfig file + * [e7ebf06](../../commit/e7ebf06) - __(Onur Ozgur OZKAN)__ [#71](../../issues/71) Typo fixed. + * [5b49ffd](../../commit/5b49ffd) - __(Onur Ozgur OZKAN)__ [#71](../../issues/71) Add annotate rake + * [13e7381](../../commit/13e7381) - __(Onur Ozgur OZKAN)__ [#71](../../issues/71) Add annotate_models gems + * [9057409](../../commit/9057409) - __(Onur Ozgur OZKAN)__ Update CHANGELOG.md + +Conflicts: + lib/cybele/app_builder.rb + lib/cybele/generators/app_generator.rb + + +Conflicts: + lib/cybele/version.rb + + * [dc93e6e](../../commit/dc93e6e) - __(Onur Ozgur OZKAN)__ [#70](../../issues/70) remove tomdocs + +#### 0.9.0 + * [0d6ef49](../../commit/0d6ef49) - __(Onur Ozgur OZKAN)__ bump version 0.9.0 + * [6a6ef73](../../commit/6a6ef73) - __(Onur Ozgur OZKAN)__ [#74](../../issues/74) remove tomdoc + * [3e37420](../../commit/3e37420) - __(Onur Ozgur OZKAN)__ [#66](../../issues/66) Add factory-girl-rails + * [ae6f239](../../commit/ae6f239) - __(Onur Ozgur OZKAN)__ [#65](../../issues/65) Add should-matchers gem + * [f0a307c](../../commit/f0a307c) - __(Onur Ozgur OZKAN)__ [#73](../../issues/73) fixed new line problem + * [a69f539](../../commit/a69f539) - __(Onur Ozgur OZKAN)__ [#73](../../issues/73) Add capybara gem + * [ee0ae05](../../commit/ee0ae05) - __(Onur Ozgur OZKAN)__ [#72](../../issues/72) && [#64](../../issues/64) **Add Kangal and Rspec Gems** + +- Add Kangal gem +- Add rspec-rails gem +- Generate rspec:install + + +#### 0.8.0 + * [d4722f5](../../commit/d4722f5) - __(Muhammet DİLEK)__ release version 0.8.0 + * [58bdb65](../../commit/58bdb65) - __(Muhammet DİLEK)__ [#69](../../issues/69) paperclip added + * [9186d02](../../commit/9186d02) - __(Muhammet DİLEK)__ [#67](../../issues/67) admins url changed + * [9ed2bc7](../../commit/9ed2bc7) - __(Muhammet DİLEK)__ [#68](../../issues/68) will_paginate added + +#### 0.7.0 + * [3c9a703](../../commit/3c9a703) - __(Onur Ozgur OZKAN)__ bump version 0.7.0 + * [e038328](../../commit/e038328) - __(Muhammet DİLEK)__ typo fix + +Conflicts: + lib/cybele/app_builder.rb + lib/cybele/generators/app_generator.rb + + * [b67bed5](../../commit/b67bed5) - __(Muhammet DİLEK)__ [#48](../../issues/48) [#49](../../issues/49) hq namespace added + * [9800524](../../commit/9800524) - __(Onur Ozgur OZKAN)__ [#63](../../issues/63) add tr.yml + * [50d52ba](../../commit/50d52ba) - __(Onur Ozgur OZKAN)__ [#63](../../issues/63) add simple_form.tr.yml + * [bea7012](../../commit/bea7012) - __(Onur Ozgur OZKAN)__ [#63](../../issues/63) remove devise.en.yml + * [3d53fb6](../../commit/3d53fb6) - __(Onur Ozgur OZKAN)__ [#39](../../issues/39) setup timezone + * [35ea960](../../commit/35ea960) - __(Onur Ozgur OZKAN)__ typo fixed + * [1db5ebd](../../commit/1db5ebd) - __(Onur Ozgur OZKAN)__ [#39](../../issues/39) set time_zone + * [b7e6c6c](../../commit/b7e6c6c) - __(Onur Ozgur OZKAN)__ typo fixed. + * [104e1aa](../../commit/104e1aa) - __(Onur Ozgur OZKAN)__ add gem version to README.md + * [92d196c](../../commit/92d196c) - __(Onur Ozgur OZKAN)__ [#60](../../issues/60) add katip gem + * [a514a58](../../commit/a514a58) - __(Onur Ozgur OZKAN)__ [#50](../../issues/50) Add devise-i18n gem + * [7773e3c](../../commit/7773e3c) - __(Onur Ozgur OZKAN)__ Merge remote-tracking branch 'origin/develop' into develop + * [9cab0cc](../../commit/9cab0cc) - __(Onur Ozgur OZKAN)__ [#58](../../issues/58) add changelog.md + * [37c8bef](../../commit/37c8bef) - __(Onur Ozgur OZKAN)__ [#58](../../issues/58) add changelog.md + * [1c9cc61](../../commit/1c9cc61) - __(Muhammet DİLEK)__ [#53](../../issues/53) welcome page added + * [e656995](../../commit/e656995) - __(Onur Özgür ÖZKAN)__ Merge pull request [#54](../../issues/54) from sbagdat/patch-1 + +Remove unnecessary lines for ignoring mac files + * [9d80dbf](../../commit/9d80dbf) - __(Sıtkı Bağdat)__ Update cybele_gitignore + * [6d6c585](../../commit/6d6c585) - __(Sıtkı Bağdat)__ Remove unnecessary lines for ignoring mac files + +```*.DS_Store``` and ```**/.DS_Store``` are not necessary to ignore mac filesystem dust. ```.DS_Store``` line is already enough to complete this task. + * [72fdaca](../../commit/72fdaca) - __(Onur Özgür ÖZKAN)__ typo fixed + * [016dd44](../../commit/016dd44) - __(Onur Ozgur OZKAN)__ typo fixed + +#### 0.6.0 + * [98b604b](../../commit/98b604b) - __(Onur Ozgur OZKAN)__ update readme.md + * [89ae9a1](../../commit/89ae9a1) - __(Onur Ozgur OZKAN)__ bump version 0.6.0 + * [24a4f23](../../commit/24a4f23) - __(Onur Ozgur OZKAN)__ [#52](../../issues/52) update gem versions + * [b49bfbe](../../commit/b49bfbe) - __(Onur Ozgur OZKAN)__ [#13](../../issues/13) remove unused method + +Conflicts: + templates/cybele_Gemfile + + * [efe0121](../../commit/efe0121) - __(Muhammet DİLEK)__ [#51](../../issues/51) compass-rails added and application.css configuration + * [0baf6fb](../../commit/0baf6fb) - __(Muhammet DİLEK)__ [#2](../../issues/2) devise views converted erb to haml + * [40fd639](../../commit/40fd639) - __(Muhammet DİLEK)__ [#2](../../issues/2) devise and user model made mandatory + * [9f8a199](../../commit/9f8a199) - __(Onur Özgür ÖZKAN)__ [#13](../../issues/13) add version number to gems + * [31b3693](../../commit/31b3693) - __(Murat Kemal BAYGÜN)__ [#13](../../issues/13) remove github repository option from exception_notification + * [8c9007d](../../commit/8c9007d) - __(Muhammet DİLEK)__ [#2](../../issues/2) devise added + * [93ccbfe](../../commit/93ccbfe) - __(Muhammet DİLEK)__ [#8](../../issues/8) add rails config + +#### 0.5.0 + * [a8048e0](../../commit/a8048e0) - __(Onur Özgür ÖZKAN)__ bump version 0.5.0 + * [699fd57](../../commit/699fd57) - __(Onur Özgür ÖZKAN)__ [#46](../../issues/46) change gem path and description + * [d03cb23](../../commit/d03cb23) - __(Onur Özgür ÖZKAN)__ [#13](../../issues/13) add exception notification + * [b7e4054](../../commit/b7e4054) - __(Onur Özgür ÖZKAN)__ [#13](../../issues/13) add exception notification + * [bfafbf1](../../commit/bfafbf1) - __(Onur Özgür ÖZKAN)__ [#46](../../issues/46) fixed repo path + * [7cf2df8](../../commit/7cf2df8) - __(Onur Özgür ÖZKAN)__ [#35](../../issues/35) close exception notification + * [20a81d4](../../commit/20a81d4) - __(Onur Özgür ÖZKAN)__ [#24](../../issues/24) setup simple form + * [a97c9ec](../../commit/a97c9ec) - __(Onur Özgür ÖZKAN)__ [#24](../../issues/24) setup simple form + * [9967bcc](../../commit/9967bcc) - __(Onur Özgür ÖZKAN)__ [#35](../../issues/35) add exception notification + * [26e1ac6](../../commit/26e1ac6) - __(Onur Özgür ÖZKAN)__ [#40](../../issues/40) Add better_errors, sextant, etc for development env + * [ac06ff6](../../commit/ac06ff6) - __(Onur Özgür ÖZKAN)__ [#35](../../issues/35) Add smtp setting + * [c8d4dc0](../../commit/c8d4dc0) - __(Onur Özgür ÖZKAN)__ [#35](../../issues/35) Add smtp setting + * [f9e05bb](../../commit/f9e05bb) - __(Onur Özgür ÖZKAN)__ [#35](../../issues/35) Add smtp setting + * [7fe8ce8](../../commit/7fe8ce8) - __(Onur Özgür ÖZKAN)__ [#41](../../issues/41) Add suspender link to README.md + +#### 0.4.1 + * [31252fa](../../commit/31252fa) - __(Onur Özgür ÖZKAN)__ bump version 0.4.1 + * [c51d836](../../commit/c51d836) - __(Onur Özgür ÖZKAN)__ Merge pull request [#43](../../issues/43) from sbagdat/patch-2 + +Update app_builder.rb thx @sbagdat + * [d2cd41c](../../commit/d2cd41c) - __(Sıtkı Bağdat)__ Remove unnecessary builds + +Removed 'remove_public_index' and 'remove_rails_logo_image' methods. + * [d01978f](../../commit/d01978f) - __(Sıtkı Bağdat)__ Update app_builder.rb + +In Rails 4, 'public/index.html' and 'rails.png' files are don't exist. A new Rails internal controller Rails::WelcomeController has been used to serve the dynamic welcome screen and rails.png image used as data-image. So I removed these lines from the file. + +#### 0.4.0 + * [a92094c](../../commit/a92094c) - __(Onur Özgür ÖZKAN)__ bump version 0.4.0 + * [f34206c](../../commit/f34206c) - __(Onur Özgür ÖZKAN)__ [#35](../../issues/35) setup smtp, setup open_letter + * [958bf5f](../../commit/958bf5f) - __(Onur Özgür ÖZKAN)__ [#34](../../issues/34) convert application.js to coffee and application.css to sass + * [0fcd684](../../commit/0fcd684) - __(Onur Özgür ÖZKAN)__ [#34](../../issues/34) generator generate sass instead of scss + * [cff434e](../../commit/cff434e) - __(Onur Özgür ÖZKAN)__ [#34](../../issues/34) add bootstrap-sass gem + * [97c83ba](../../commit/97c83ba) - __(Onur Özgür ÖZKAN)__ [#37](../../issues/37) setup gitignore files and folders + * [8f19ab2](../../commit/8f19ab2) - __(Onur Özgür ÖZKAN)__ [#38](../../issues/38) fixed strong_parameters generators + * [fe6b961](../../commit/fe6b961) - __(Onur Özgür ÖZKAN)__ typo fixed + * [2e370a3](../../commit/2e370a3) - __(Onur Özgür ÖZKAN)__ [#36](../../issues/36) setup database.yml and run rake db:create + * [14d7005](../../commit/14d7005) - __(Onur Özgür ÖZKAN)__ [#27](../../issues/27) add gemnasium service link + * [5af5c04](../../commit/5af5c04) - __(Onur Özgür ÖZKAN)__ [#25](../../issues/25) add responder gem to cybele + +#### 0.3.0 + * [7bdee87](../../commit/7bdee87) - __(Onur Özgür ÖZKAN)__ bump version + * [3a7d93f](../../commit/3a7d93f) - __(Onur Özgür ÖZKAN)__ [#33](../../issues/33) update README.md + +add semver.org +add tocdoc.org + + * [4b13eee](../../commit/4b13eee) - __(Onur Özgür ÖZKAN)__ [#27](../../issues/27) add codeclimate + * [ea548ad](../../commit/ea548ad) - __(Onur Özgür ÖZKAN)__ [#32](../../issues/32) remove rails logo + * [69dc256](../../commit/69dc256) - __(Onur Özgür ÖZKAN)__ fixed Gemfile.lock + +#### 0.2.0 + * [bb991e1](../../commit/bb991e1) - __(Onur Özgür ÖZKAN)__ Bump version. + * [ebff69d](../../commit/ebff69d) - __(Onur Özgür ÖZKAN)__ issue [#26](../../issues/26) replace files erb to haml + * [853260b](../../commit/853260b) - __(Onur Özgür ÖZKAN)__ issue [#31](../../issues/31) fixed Gemfile + * [593304f](../../commit/593304f) - __(Onur Özgür ÖZKAN)__ issue [#31](../../issues/31) replace Gemfile + * [29ddfb9](../../commit/29ddfb9) - __(Onur Özgür ÖZKAN)__ issue [#30](../../issues/30) add all rdoc + * [1af93d1](../../commit/1af93d1) - __(Onur Özgür ÖZKAN)__ issue [#29](../../issues/29) fixed Does it try to require a relative path? That's been removed in Ruby 1.9. + * [204d7df](../../commit/204d7df) - __(Onur Özgür ÖZKAN)__ support new release over rails 4.0.0.rc1 + * [311dd0a](../../commit/311dd0a) - __(Onur Özgür ÖZKAN)__ issue [#23](../../issues/23) improved readme.md + +- fix typo +- improve using section + + * [370e0be](../../commit/370e0be) - __(Onur Özgür ÖZKAN)__ issue [#22](../../issues/22) add rdoc rake task + +#### 0.1.0 + * [282b70c](../../commit/282b70c) - __(Onur Özgür ÖZKAN)__ Issues [#19](../../issues/19) [#20](../../issues/20) [#21](../../issues/21) Create a gem + +- Generate Rails 4.x +- Add README.md +- Remove public/index.html +- Remove README.rdoc + + * [eca13d5](../../commit/eca13d5) - __(Onur Özgür ÖZKAN)__ Update README.md + * [002ff21](../../commit/002ff21) - __(Onur Özgür ÖZKAN)__ Update README.md + * [be3c6a7](../../commit/be3c6a7) - __(Onur Özgür ÖZKAN)__ Update README.md + * [ae5bbe2](../../commit/ae5bbe2) - __(Onur Özgür ÖZKAN)__ add responders + * [4da6960](../../commit/4da6960) - __(Onur Özgür ÖZKAN)__ add devise and simple_form gem + * [eaaa1cd](../../commit/eaaa1cd) - __(Onur Özgür ÖZKAN)__ Remove MIT license just now. + * [9ec3295](../../commit/9ec3295) - __(Onur Özgür ÖZKAN)__ Update README.md + * [143d255](../../commit/143d255) - __(Onur Özgür ÖZKAN)__ Update README.md + * [9a14185](../../commit/9a14185) - __(Onur Özgür ÖZKAN)__ Update README.md + * [f45360e](../../commit/f45360e) - __(Onur Özgür ÖZKAN)__ Initial commit