Method: AppchatGenerator#create_views

Defined in:
lib/generators/appchat/appchat_generator.rb

#create_viewsObject



50
51
52
53
54
55
56
57
58
59
# File 'lib/generators/appchat/appchat_generator.rb', line 50

def create_views
  copy_file "chats/chat.html.erb", "app/views/chats/_chat.html.erb", force: true
  copy_file "chats/index.html.erb", "app/views/chats/index.html.erb", force: true
  copy_file "chats/show.html.erb", "app/views/chats/show.html.erb", force: true
  copy_file "messages/index.html.erb", "app/views/messages/index.html.erb", force: true
  copy_file "messages/new.html.erb", "app/views/messages/new.html.erb", force: true
  copy_file "messages/message.html.erb", "app/views/messages/_message.html.erb", force: true
  copy_file "messages/_typing_bubbles.html.erb", "app/views/messages/_typing_bubbles.html.erb", force: true
  copy_file "messages/_function_logs.html.erb", "app/views/messages/_function_logs.html.erb", force: true
end