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