Class: HyperActiveForm::Generators::InstallGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Defined in:
lib/generators/hyper_active_form/install/install_generator.rb

Instance Method Summary collapse

Instance Method Details

#create_application_formObject



4
5
6
7
8
9
# File 'lib/generators/hyper_active_form/install/install_generator.rb', line 4

def create_application_form
  create_file "app/forms/application_form.rb", <<~RUBY
    class ApplicationForm < HyperActiveForm::Base
    end
  RUBY
end