class Rails::PluginBuilder

def app

def app
  if mountable?
    directory 'app'
    empty_directory_with_keep_file "app/assets/images/#{name}"
  elsif full?
    empty_directory_with_keep_file 'app/models'
    empty_directory_with_keep_file 'app/controllers'
    empty_directory_with_keep_file 'app/views'
    empty_directory_with_keep_file 'app/helpers'
    empty_directory_with_keep_file 'app/mailers'
    empty_directory_with_keep_file "app/assets/images/#{name}"
  end
end