Module: Onotole::Goodbye

Included in:
AppBuilder
Defined in:
lib/onotole/add_user_gems/goodbye_message.rb

Instance Method Summary collapse

Instance Method Details

#airbrake_checkObject



27
28
29
30
# File 'lib/onotole/add_user_gems/goodbye_message.rb', line 27

def airbrake_check
  return unless user_choose? :airbrake
  say_color YELLOW, "Remember to run 'rails generate airbrake' with your API key."
end

#ckeditor_checkObject



44
45
46
47
48
# File 'lib/onotole/add_user_gems/goodbye_message.rb', line 44

def ckeditor_check
  return unless user_choose? :ckeditor
  return if user_choose?(:carrierwave) && AppBuilder.file_storage_name
  say_color YELLOW, 'Visit ckeditor homepage and install back-end for it.'
end

#devise_user_checkObject



50
51
52
53
# File 'lib/onotole/add_user_gems/goodbye_message.rb', line 50

def devise_user_check
  return unless AppBuilder.devise_model
  say_color GREEN, 'Turn on devise auth in application.rb or in your controlled. It is turned off by default'
end

#github_checkObject



15
16
17
18
19
# File 'lib/onotole/add_user_gems/goodbye_message.rb', line 15

def github_check
  return unless user_choose? :create_github_repo
  say_color BOLDGREEN, "You can 'git push -u origin master' to your new repo
   #{app_name} or check log for errors"
end

#graphviz_checkObject



21
22
23
24
25
# File 'lib/onotole/add_user_gems/goodbye_message.rb', line 21

def graphviz_check
  return unless user_choose?(:railroady)
  return if system('dot -? > /dev/null && neato -? > /dev/null')
  say_color YELLOW, 'Install graphviz for Railroady gem'
end

#image_optim_checkObject



32
33
34
35
36
37
# File 'lib/onotole/add_user_gems/goodbye_message.rb', line 32

def image_optim_check
  return unless user_choose? :image_optim
  say_color YELLOW, "You may install 'svgo' for 'image_optim' by `npm install -g svgo`"
  say_color YELLOW, "You may install 'pngout' for 'image_optim' from http://www.jonof.id.au/kenutils"
  say_color YELLOW, 'By default this tools are switch off in image_optim.rb'
end

#rack_cors_checkObject



39
40
41
42
# File 'lib/onotole/add_user_gems/goodbye_message.rb', line 39

def rack_cors_check
  return unless user_choose? :rack_cors
  say_color YELLOW, 'Check your config/application.rb file for rack-cors settings for security.'
end

#show_goodbye_messageObject



4
5
6
7
8
9
10
11
12
13
# File 'lib/onotole/add_user_gems/goodbye_message.rb', line 4

def show_goodbye_message
  github_check
  airbrake_check
  graphviz_check
  image_optim_check
  rack_cors_check
  ckeditor_check
  devise_user_check
  say_color BOLDGREEN, "Congratulations! Onotole gives you: 'Intellect+= 1'"
end