2019-07-30 21:29:24 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-05-21 20:03:46 +00:00
|
|
|
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
2018-08-08 21:31:42 +00:00
|
|
|
require 'rails/generators'
|
2018-05-21 20:03:46 +00:00
|
|
|
class Api::EntityGenerator < Rails::Generators::NamedBase
|
2019-07-30 21:29:24 +00:00
|
|
|
source_root File.expand_path('templates', __dir__)
|
2018-05-21 20:03:46 +00:00
|
|
|
def copy_to_entity
|
2019-07-30 21:29:24 +00:00
|
|
|
template 'entity.rb.erb', File.join('app/api/houdini/v1/entities', "#{name.underscore}.rb")
|
2018-05-21 20:03:46 +00:00
|
|
|
end
|
|
|
|
end
|