instance method
app
Ruby on Rails 5.0.7.2
Since v3.1.12Signature
app()
No documentation comment.
Source
# File railties/lib/rails/generators/rails/plugin/plugin_generator.rb, line 18
def app
if mountable?
if api?
directory 'app', exclude_pattern: %r{app/(views|helpers)}
else
directory 'app'
empty_directory_with_keep_file "app/assets/images/#{namespaced_name}"
end
elsif full?
empty_directory_with_keep_file 'app/models'
empty_directory_with_keep_file 'app/controllers'
empty_directory_with_keep_file 'app/mailers'
unless api?
empty_directory_with_keep_file "app/assets/images/#{namespaced_name}"
empty_directory_with_keep_file 'app/helpers'
empty_directory_with_keep_file 'app/views'
end
end
end
Defined in railties/lib/rails/generators/rails/plugin/plugin_generator.rb line 18
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Rails::PluginBuilder