Skip to content

Commit

Permalink
Merge tag '1.6.2' into develop
Browse files Browse the repository at this point in the history
1.6.2 1.6.2
  • Loading branch information
marjinal1st committed Nov 27, 2014
2 parents 822cbf3 + c0454eb commit e0a97bd
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 10 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@

#### [Current]
* [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
Expand Down Expand Up @@ -40,8 +46,6 @@ TB-7 #time 10m Update Rails version in cybele_Gemfile
* [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

#### v1.3.0
* [6a1c519](../../commit/6a1c519) - __(Onur Ozgur OZKAN)__ version fixed

#### 1.3.0
Expand Down
10 changes: 5 additions & 5 deletions lib/cybele/app_builder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def configure_bullet
Bullet.alert = true
Bullet.bullet_logger = true
end
RUBY
RUBY

configure_environment 'development', config
end
Expand Down Expand Up @@ -264,14 +264,14 @@ def setup_profile_editors
inject_into_file 'config/routes.rb', :after => "namespace :hq do\n" do <<-RUBY
root to: 'dashboard#index'
resource :admin_profile, except: [:destroy], path: 'profile'
RUBY
RUBY
end

inject_into_file 'config/routes.rb', :after => "'welcome#index'\n" do <<-RUBY
inject_into_file 'config/routes.rb', :after => "to: 'welcome#index'\n" do <<-RUBY
resource :user_profile, except: [:destroy], path: 'profile'
resource :user_profile, except: [:destroy], path: 'profile'
RUBY
RUBY
end
end

Expand Down
2 changes: 1 addition & 1 deletion lib/cybele/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Cybele
VERSION = '1.6.1'.freeze
VERSION = '1.6.2'.freeze
end

2 changes: 1 addition & 1 deletion templates/app/controllers/hq/admin_profiles_controller.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# encoding: UTF-8
class Hq::AdminProfilesController < Hq::ApplicationController
before_action :profile_controller
before_action :profile_controller, except: [:new]
before_action :set_admin_profile, only: [:show, :edit, :update, :destroy]
add_breadcrumb I18n.t('activerecord.models.admin_profiles'), :hq_admin_profile_path

Expand Down
3 changes: 2 additions & 1 deletion templates/app/controllers/user_profiles_controller.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# encoding: UTF-8
class UserProfilesController < ApplicationController
before_action :profile_controller
before_action :authenticate_user!
before_action :profile_controller, except: [:new]
before_action :set_user_profile, only: [:show, :edit, :update, :destroy]
add_breadcrumb I18n.t('activerecord.models.user_profiles'), :user_profile_path

Expand Down

0 comments on commit e0a97bd

Please sign in to comment.